From julien at editx.eu Thu Mar 1 08:36:42 2018 From: julien at editx.eu (Julien Carlier) Date: Thu, 1 Mar 2018 14:36:42 +0100 Subject: [Tutor] Python Challenge Online - 30 Questions Message-ID: Hello, Cisco & Dimension Data organize a Python Challenge on EDITx. It is a good way to test your skills & have fun. -> https://editx.eu/it-challenge/python-challenge-2018-cisco-and-dimension-data Rules are simple: 15 minutes online, 30 questions & 3 jokers. Everyone is allowed to participate but only belgian residents can win the prizes. Do not hesitate to share it with people that might be interested. Feedbacks are welcome :) Regards, Julien -- Frankenstraat - Rue des Francs 79 1000 Brussels From mail at timgolden.me.uk Thu Mar 1 09:27:40 2018 From: mail at timgolden.me.uk (Tim Golden) Date: Thu, 1 Mar 2018 14:27:40 +0000 Subject: [Tutor] Python Challenge Online - 30 Questions In-Reply-To: References: Message-ID: On 01/03/2018 13:36, Julien Carlier wrote: > Cisco & Dimension Data organize a Python Challenge on EDITx. It is a good > way to test your skills & have fun. [... snip ...] You've just cross-posted this to several Python mailing lists / newsgroups, some of them certainly irrelevant. This is not considered good form. TJG From mail at timgolden.me.uk Thu Mar 1 09:49:24 2018 From: mail at timgolden.me.uk (Tim Golden) Date: Thu, 1 Mar 2018 14:49:24 +0000 Subject: [Tutor] Python Challenge Online - 30 Questions In-Reply-To: References: Message-ID: <7dcf586a-5fb3-0075-cc1a-1ccaa875538d@timgolden.me.uk> On 01/03/2018 14:36, Julien Carlier wrote: > Hi Tim, > > I didn't send this message to several groups. I sended this message to > 20 people from the same group. > > I will take care to choose relevant groups. > > What is considered good form? > > Regards, > > Julien Replied off-list TJG From julien at editx.eu Thu Mar 1 09:36:17 2018 From: julien at editx.eu (Julien Carlier) Date: Thu, 1 Mar 2018 15:36:17 +0100 Subject: [Tutor] Python Challenge Online - 30 Questions In-Reply-To: References: Message-ID: Hi Tim, I didn't send this message to several groups. I sended this message to 20 people from the same group. I will take care to choose relevant groups. What is considered good form? Regards, Julien 2018-03-01 15:27 GMT+01:00 Tim Golden : > On 01/03/2018 13:36, Julien Carlier wrote: > >> Cisco & Dimension Data organize a Python Challenge on EDITx. It is a good >> way to test your skills & have fun. >> > > [... snip ...] > > You've just cross-posted this to several Python mailing lists / > newsgroups, some of them certainly irrelevant. This is not considered good > form. > > TJG > -- Tel. BE: +32 (0)2 240 57 80 GSM: +32 (0)472 37 26 63 Frankenstraat - Rue des Francs 79 1040 Etterbeek From bhatt.nirmal at gmail.com Thu Mar 1 21:40:08 2018 From: bhatt.nirmal at gmail.com (Nirmal Bhatt) Date: Thu, 1 Mar 2018 21:40:08 -0500 Subject: [Tutor] Python distribution file error Message-ID: Hi, I am trying to deploy the distribution file and getting the attached error. Requesting the help to resolve the error. Thanks in advance. regards Nirmal From alan.gauld at yahoo.co.uk Fri Mar 2 03:52:06 2018 From: alan.gauld at yahoo.co.uk (Alan Gauld) Date: Fri, 2 Mar 2018 08:52:06 +0000 Subject: [Tutor] Python distribution file error In-Reply-To: References: Message-ID: On 02/03/18 02:40, Nirmal Bhatt wrote: > Hi, > I am trying to deploy the distribution file What do you mean by "the distribution file"? How are you creating this file? How are you "deploying" it? > and getting the attached error. The server strips out attachments so we cannot see it, please just paste the (full) text into the mail message. > Requesting the help to resolve the error. You need to provide us with more specific information about what you are doing and how. -- Alan G Author of the Learn to Program web site http://www.alan-g.me.uk/ http://www.amazon.com/author/alan_gauld Follow my photo-blog on Flickr at: http://www.flickr.com/photos/alangauldphotos From cosmoalex26 at gmail.com Fri Mar 2 15:42:18 2018 From: cosmoalex26 at gmail.com (Alessandro Parisi) Date: Fri, 2 Mar 2018 21:42:18 +0100 Subject: [Tutor] shooting method in python code Message-ID: <117EBFC8-1871-48C5-9F21-135D2C75E174@gmail.com> Hi, My name is Alessandro Parisi, I would need to download this code to understand how it works From rls4jc at gmail.com Fri Mar 2 16:05:42 2018 From: rls4jc at gmail.com (Roger Lea Scherer) Date: Fri, 2 Mar 2018 13:05:42 -0800 Subject: [Tutor] Another question, dictionaries Message-ID: I'm trying to finish chapter 5 in my book and it has to do with dictionaries and creating simple games. We need a pool of points and the ability to exchange point between the pool and each of the, what I call, attributes of Strength, Health, Wisdom, and Dexterity. I got only to the first option and I'm stuck on how to get the points to change "permanently". The program will run well for option 1 (I haven't got to the rest of the options), but the next time I run the program it goes back to the original configuration. Did I do everything right, but I just need to write to a file, and that's what the problem is? or what? I've reread the chapter, I've gone on stackoverflow and thegeekstuff.com, I've thought about it for at least a day and I just can't figure out what the problem is. Please help? # Character creator program for role playing pool = 30 attributes = {"Strength": 0, "Health": 0, "Wisdom": 0, "Dexterity": 0} print("You have", pool, "points") print(""" You can apply them to your Strength, Health, Wisdom, or Dexterity. Press: 0 to Quit 1 to apply points to Strength 2 to apply points to Health 3 to apply points to Wisdom 4 to apply points to Dexterity 5 to apply points from Strength to your pool 6 to apply points from Health to your pool 7 to apply points from Wisdom to your pool 8 to apply points from Dexterity to your pool """) choice = input("Choice: ") print(attributes.get("Strength")) if choice == "0": print("Good-bye.") input("\n\nPress enter to exit.") elif choice == "1": strengthChoice = input("How many points would you like to transfer from pool to Strength?: ") print(strengthChoice) attributes["Strength"] += int(strengthChoice) print(attributes.get("Strength")) pool -= int(strengthChoice) print(pool) From alan.gauld at yahoo.co.uk Fri Mar 2 18:06:54 2018 From: alan.gauld at yahoo.co.uk (Alan Gauld) Date: Fri, 2 Mar 2018 23:06:54 +0000 Subject: [Tutor] shooting method in python code In-Reply-To: <117EBFC8-1871-48C5-9F21-135D2C75E174@gmail.com> References: <117EBFC8-1871-48C5-9F21-135D2C75E174@gmail.com> Message-ID: On 02/03/18 20:42, Alessandro Parisi wrote: > Hi, My name is Alessandro Parisi, Hi. > I would need to download this code to understand how it works What code? Do you have a URL? Or a link of some kind? We are not mind readers. -- Alan G Author of the Learn to Program web site http://www.alan-g.me.uk/ http://www.amazon.com/author/alan_gauld Follow my photo-blog on Flickr at: http://www.flickr.com/photos/alangauldphotos From alan.gauld at yahoo.co.uk Fri Mar 2 18:24:04 2018 From: alan.gauld at yahoo.co.uk (Alan Gauld) Date: Fri, 2 Mar 2018 23:24:04 +0000 Subject: [Tutor] Another question, dictionaries In-Reply-To: References: Message-ID: On 02/03/18 21:05, Roger Lea Scherer wrote: > ability to exchange point between the pool and each of the, what I call, > attributes of Strength, Health, Wisdom, and Dexterity. I got only to the > first option and I'm stuck on how to get the points to change > "permanently". The program will run well for option 1 (I haven't got to the > rest of the options), but the next time I run the program it goes back to > the original configuration. Did I do everything right, but I just need to > write to a file, and that's what the problem is? or what? You are correct on all counts. Every time you run the program it is reinitialised to the hard coded values. To make the changes stick you would need to store them somewhere and then read them at startup. There are many ways to do that, some work better than others with dictionaries: the shelve module or the CSV module or the JSON module are all fairly easy to use. However, I suspect the book's author is only looking for you to play the game once and then forget the values (or start afresh) She/he will likely cover files later. To that end you need to look at wrapping your menu selection in a loop (probably a while) and keep on applying the changes until you are done. -- Alan G Author of the Learn to Program web site http://www.alan-g.me.uk/ http://www.amazon.com/author/alan_gauld Follow my photo-blog on Flickr at: http://www.flickr.com/photos/alangauldphotos From mamathanaik64 at gmail.com Sat Mar 3 05:01:59 2018 From: mamathanaik64 at gmail.com (mamatha n) Date: Sat, 3 Mar 2018 15:31:59 +0530 Subject: [Tutor] face recogniztion using raspberry pi Message-ID: Hello friends. thise is my code i want to compare to image, and i need to get result percentage formate dis is very urgent. any one tell me how can i compare From mats at wichmann.us Sat Mar 3 10:46:35 2018 From: mats at wichmann.us (Mats Wichmann) Date: Sat, 3 Mar 2018 08:46:35 -0700 Subject: [Tutor] face recogniztion using raspberry pi In-Reply-To: References: Message-ID: On 03/03/2018 03:01 AM, mamatha n wrote: > Hello friends. > thise is my code > i want to compare to image, and i need to get result percentage formate dis > is very urgent. any one tell me how can i compare Sorry, there's nothing there ("my code"), attachments don't usually make it through the list server. You may want to send again, but you may also want to look into groups with more domain expertise - the kind of image processing used for facial recognition is pretty specialized and I'm not expecting you'll find a lot of experts here. Are you using OpenCV? There it is expected that most of the work is "done for you", but you still need to understand what is going on in order to be able to proceed. From sjeik_appie at hotmail.com Tue Mar 6 17:17:20 2018 From: sjeik_appie at hotmail.com (Albert-Jan Roskam) Date: Tue, 6 Mar 2018 22:17:20 +0000 Subject: [Tutor] Regex not working as desired Message-ID: On Feb 27, 2018 09:50, Alan Gauld via Tutor wrote: > > On 27/02/18 05:13, Cameron Simpson wrote: > > > hard to debug when you do. That's not to say you shouldn't use them, but many > > people use them for far too much. > > > > Finally, you could also consider not using a regexp for this particular task. > > Python's "int" class can be called with a string, and will raise an exception > > And, as another alternative, you can use all() with a > generator expression: > > >>> all(c.isdigit() for c in '1234') > True > >>> all(c.isdigit() for c in '12c4') > False I never understood why this is syntactically correct. It's like two parentheses are missing. This I understand: all((c.isdigit() for c in '12c4')) Or this: all([c.isdigit() for c in '12c4']) Or this: all((True, False)) But the way you wrote it, the generator expression just "floats" in between the parentheses that are part of the all() function. Is this something special about all() and any()? From steve at pearwood.info Tue Mar 6 17:45:27 2018 From: steve at pearwood.info (Steven D'Aprano) Date: Wed, 7 Mar 2018 09:45:27 +1100 Subject: [Tutor] Regex not working as desired In-Reply-To: References: Message-ID: <20180306224527.GH18868@ando.pearwood.info> On Tue, Mar 06, 2018 at 10:17:20PM +0000, Albert-Jan Roskam wrote: > > >>> all(c.isdigit() for c in '12c4') > > False > > I never understood why this is syntactically correct. It's like two parentheses are missing. > > This I understand: > all((c.isdigit() for c in '12c4')) > Or this: > all([c.isdigit() for c in '12c4']) > Or this: > all((True, False)) > > But the way you wrote it, the generator expression just "floats" in > between the parentheses that are part of the all() function. Is this > something special about all() and any()? No, it is something special about generator expressions. The syntax for them is theoretically: expression for x in iterable but parentheses are required to make it unambiguous. If they are already inside parentheses, as in a function call: spam(expression for x in iterable) the function call parens are sufficient to make it unambiguous and so there is no need to add an extra pair. However, if you have two arguments, or some other compound expression, you need to use disambiguation parens: spam(999, (expression for x in iterable)) -- Steve From rls4jc at gmail.com Tue Mar 6 13:12:59 2018 From: rls4jc at gmail.com (Roger Lea Scherer) Date: Tue, 6 Mar 2018 10:12:59 -0800 Subject: [Tutor] Turtle Issues Message-ID: I know I don't have to apologize, but I am so independent I hate asking for help and you guys and gals have been so helpful that now that I'm stuck again I'm sorry I have to. I've looked on StackOverflow and followed their advice (which I can't make work) and went to the python/turtle documentation which I tried to follow, but can't seem to make work either. All I want to do (famous last words) is randomize the color of the pen when the ciphers are created, but when the ciphers are created, the color remains black. The comments below colormode are things I've tried as well. I include all the code in case you want to run the program. So if you could please help like you do, that would be great and greatly appreciated. Thank you. ---------------------------- from turtle import * import re import random # use turtle to draw ciphers of the Cistercian monks digits = input("Please enter an integer less than 10,000 greater than 0: ") r = random.randrange(0, 255) g = random.randrange(0, 255) b = random.randrange(0, 255) # ensure input is only digits p = re.compile(r'^\d+$') m = p.match(digits) if m: print(digits) m = digits # digits = input("Please enter an integer less than 10,000 greater than 0: ") else: print("No match") colormode(255) ##reddish = random.randrange(255) ##greenish = random.randrange(255) ##bluish = random.randrange(255) ##pencolor(reddish, greenish, bluish) # pencolor(random.randrange(255), random.randrange(255), random.randrange(255)) pencolor(r, g, b) mode("logo") # resets turtle heading to north speed(0) ht() fd(100) # if statements for the ones position if digits[-1] == "1": pu() goto(0, 100) seth(90) pd() fd(35) if digits[-1] == "2": pu() goto(0, 65) seth(90) pd() fd(35) if digits[-1] == "3": pu() goto(0, 100) seth(135) pd() fd(50) if digits[-1] == "4": pu() goto(0, 65) seth(45) pd() fd(50) if digits[-1] == "5": pu() goto(0, 100) seth(90) pd() fd(35) rt(135) fd(50) if digits[-1] == "6": pu() goto(30, 100) seth(180) pd() fd(35) if digits[-1] == "7": pu() goto(0, 100) seth(90) pd() fd(35) rt(90) fd(35) if digits[-1] == "8": pu() goto(0, 65) seth(90) pd() fd(35) lt(90) fd(35) if digits[-1] == "9": pu() goto(0, 100) seth(90) pd() fd(35) rt(90) fd(35) rt(90) fd(35) # if statements for the tens position if digits[-2:-1] == "1": pu() goto(0, 100) seth(-90) pd() fd(35) if digits[-2:-1] == "2": pu() goto(0, 65) seth(-90) pd() fd(35) if digits[-2:-1] == "3": pu() goto(0, 100) seth(-135) pd() fd(50) if digits[-2:-1] == "4": pu() goto(0, 65) seth(-45) pd() fd(50) if digits[-2:-1] == "5": pu() goto(0, 100) seth(-90) pd() fd(35) lt(135) fd(50) if digits[-2:-1] == "6": pu() goto(-30, 100) seth(180) pd() fd(35) if digits[-2:-1] == "7": pu() goto(0, 100) seth(-90) pd() fd(35) lt(90) fd(35) if digits[-2:-1] == "8": pu() goto(0, 65) seth(-90) pd() fd(35) rt(90) fd(35) if digits[-2:-1] == "9": pu() goto(0, 100) seth(-90) pd() fd(35) lt(90) fd(35) lt(90) fd(35) # if statments for the hundreds position if digits[-3:-2] == "1": pu() goto(0, 0) seth(90) pd() fd(35) if digits[-3:-2] == "2": pu() goto(0, 35) seth(90) pd() fd(35) if digits[-3:-2] == "3": pu() goto(0, 0) seth(45) pd() fd(50) if digits[-3:-2] == "4": pu() goto(0, 35) seth(135) pd() fd(50) if digits[-3:-2] == "5": pu() goto(0, 0) seth(90) pd() fd(35) lt(135) fd(50) if digits[-3:-2] == "6": pu() goto(30, 0) seth(0) pd() fd(35) if digits[-3:-2] == "7": pu() goto(0, 0) seth(90) pd() fd(35) lt(90) fd(35) if digits[-3:-2] == "8": pu() goto(0, 35) seth(90) pd() fd(35) rt(90) fd(35) if digits[-3:-2] == "9": pu() goto(0, 0) seth(90) pd() fd(35) lt(90) fd(35) lt(90) fd(35) # if statments for the thousands position if digits[-4:-3] == "1": pu() goto(0, 0) seth(-90) pd() fd(35) if digits[-4:-3] == "2": pu() goto(0, 35) seth(-90) pd() fd(35) if digits[-4:-3] == "3": pu() goto(0, 0) seth(-35) pd() fd(50) if digits[-4:-3] == "4": pu() goto(0, 35) seth(-135) pd() fd(50) if digits[-4:-3] == "5": pu() goto(0, 0) seth(-90) pd() fd(35) rt(135) fd(50) if digits[-4:-3] == "6": pu() goto(-30, 0) seth(0) pd() fd(35) if digits[-4:-3] == "7": pu() goto(0, 0) seth(-90) pd() fd(35) rt(90) fd(35) if digits[-4:-3] == "8": pu() goto(0, 35) seth(-90) pd() fd(35) lt(90) fd(35) if digits[-4:-3] == "9": pu() goto(0, 0) seth(-90) pd() fd(35) rt(90) fd(35) rt(90) fd(35) Virus-free. www.avast.com <#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2> From alan.gauld at yahoo.co.uk Tue Mar 6 18:19:56 2018 From: alan.gauld at yahoo.co.uk (Alan Gauld) Date: Tue, 6 Mar 2018 23:19:56 +0000 Subject: [Tutor] Regex not working as desired In-Reply-To: References: Message-ID: On 06/03/18 22:17, Albert-Jan Roskam wrote: > But the way you wrote it, the generator expression just "floats" Any expression can be used where a value is expected provided that e3xpression produces a value of the required type. A generator expression effectively produces a sequence and the type of sequence is defined by the type of parentheses used. "123" -> a string [1,2,3] -> a list (1,2,3) -> a tuple {1,2,3} -> a set So when a function requires an iterable sequence you just provide the expression(any expression) that results in an iterable. all(range(5)) # range 5 produces a range object which is iterable all(n for n in [0,1,2,3,4]) # generator "equivalent" to the range Similar things happen with tuples where the parens are actually optional: 1,2,3 # a tuple of 3 numbers (1,2,3) # the same tuple with parens to make it more obvious HTH -- Alan G Author of the Learn to Program web site http://www.alan-g.me.uk/ http://www.amazon.com/author/alan_gauld Follow my photo-blog on Flickr at: http://www.flickr.com/photos/alangauldphotos From alan.gauld at yahoo.co.uk Tue Mar 6 19:36:56 2018 From: alan.gauld at yahoo.co.uk (Alan Gauld) Date: Wed, 7 Mar 2018 00:36:56 +0000 Subject: [Tutor] Turtle Issues In-Reply-To: References: Message-ID: On 06/03/18 18:12, Roger Lea Scherer wrote: > I know I don't have to apologize, but I am so independent I hate asking for > help and you guys and gals have been so helpful that now that I'm stuck > again I'm sorry I have to. Thats not a problem and, in programming, is usually seen as a strength not a weakness. Nobody likes to debug somebody else's bad code, it's much better to get advice and write good code first time! Independence is the fault, not collaboration. > All I want to do (famous last words) is randomize the color of the pen when > the ciphers are created, but when the ciphers are created, the color > remains black. You do seem to have a liking for writing an awful lot of unnecessary code. Have you come across the concept of functions? They allow you to take common code and encapsulate it in a single call. Thus: > if digits[-1] == "1": > pu() > goto(0, 100) > seth(90) > pd() > fd(35) > > if digits[-1] == "2": > pu() > goto(0, 65) > seth(90) > pd() > fd(35) Becomes def f(y): pu() goto(0, y) seth(90) pd() fd(35) if digits[-1] == "1": f(100) if digits[-1] == "2": f(65) And ideally you use a more meaningful name than 'f'! Maybe reposition() or similar? The principle is known as DRY in software engineering: - Don't Repeat Yourself Also we already (I think it was for you) pointed out that using an int() conversion with try/except was easier and more reliable that a regex. Its also much less code. So unless you really enjoy practising your typing, it's easier to do something like: d = input("Enter an integer less than 10,000 greater than 0: ") try: int(d) except: # they are not digits so deal with it # now use d knowing it is all digits. > The comments below colormode are things I've tried as well. > I include all the code in case you want to run the program. > > So if you could please help like you do, that would be great and greatly > appreciated. Thank you. > > ---------------------------- > > from turtle import * > import re > import random > > > # use turtle to draw ciphers of the Cistercian monks > > digits = input("Please enter an integer less than 10,000 greater than 0: ") > > r = random.randrange(0, 255) > g = random.randrange(0, 255) > b = random.randrange(0, 255) You set these values once. And never change them. > colormode(255) > ##reddish = random.randrange(255) > ##greenish = random.randrange(255) > ##bluish = random.randrange(255) > ##pencolor(reddish, greenish, bluish) You don't draw anything so how do you know what colour is set? You have to draw a line to see the color. > # pencolor(random.randrange(255), random.randrange(255), > random.randrange(255)) > pencolor(r, g, b) Same goes for these. > mode("logo") # resets turtle heading to north > speed(0) > ht() > fd(100) Now you draw something, what color is it? (although you might need a pd() to force the pen on to the canvas) > # if statements for the ones position > if digits[-1] == "1": See the comments about functions above... And only do the extraction once: last = d[-1] if last == "1": f(...) elif last == "2): f(...) elif last = "3" etc... > if digits[-1] == "3": > pu() > goto(0, 100) > seth(135) > pd() > fd(50) I see a new value in the last line so maybe f becomes def f(y,d): pu() goto(0, y) seth(135) pd() fd(d) It still saves a heck of a lot of typing! > if digits[-1] == "5": > pu() > goto(0, 100) > seth(90) > pd() > fd(35) > rt(135) > fd(50) And here you add two lines so either just tag the two lines after f or define a new function: def g(y,d,angle,d2): f(y,d) rt(angle) fd(d2) I strongly suspect we can simplify this a lot more but that should be a start. But as to the colors, you only draw one line and you only set the color once so it's hard to see how randomising anything is going to be useful. -- Alan G Author of the Learn to Program web site http://www.alan-g.me.uk/ http://www.amazon.com/author/alan_gauld Follow my photo-blog on Flickr at: http://www.flickr.com/photos/alangauldphotos From jayant.wadhwani at gmail.com Fri Mar 9 02:16:22 2018 From: jayant.wadhwani at gmail.com (Jayant Wadhwani) Date: Fri, 9 Mar 2018 12:46:22 +0530 Subject: [Tutor] py2app utility Message-ID: Hi I need to create an executable file from py2app utility with the help of documentation on python.org i am able to create executable file on MAC OS X my question is the sample.app created with the help of py2app utility and i go inside the sample.app/resources i can still fine the python source file ( sample.py) if we are creating the executable why there is inclusion of .py file in final bundle as we are not suppose to share the source code can you help me how can i remove sample.py in the final bundle creation from py2app utility Regards Jayant From steve at pearwood.info Fri Mar 9 05:02:23 2018 From: steve at pearwood.info (Steven D'Aprano) Date: Fri, 9 Mar 2018 21:02:23 +1100 Subject: [Tutor] py2app utility In-Reply-To: References: Message-ID: <20180309100223.GK18868@ando.pearwood.info> On Fri, Mar 09, 2018 at 12:46:22PM +0530, Jayant Wadhwani wrote: > Hi > > I need to create an executable file from py2app utility > > with the help of documentation on python.org i am able to create executable > file on MAC OS X > > my question is the sample.app created with the help of py2app utility and i > go inside the sample.app/resources i can still fine the python source file > ( sample.py) > > if we are creating the executable why there is inclusion of .py file in > final bundle as we are not suppose to share the source code You wll have to ask the py2app developers why they include the source code. Usually, the answer to that question is so that they can show debugging information in the tracebacks if an exception occurs. Perhaps there is an option to py2app that removes the .py files and only includes .pyc files. What does the documentation say? -- Steve From sc_opensource at yahoo.com Fri Mar 9 17:07:14 2018 From: sc_opensource at yahoo.com (Simon Connah) Date: Fri, 9 Mar 2018 22:07:14 +0000 (UTC) Subject: [Tutor] Does the secrets module in Python 3.6 use a hardware RNG like that provided in Intel CPUs? References: <2030405469.10974048.1520633234682.ref@mail.yahoo.com> Message-ID: <2030405469.10974048.1520633234682@mail.yahoo.com> Hi, I was reading through the secrets documentation in Python 3.6 and noticed that it uses /dev/urandom?but I'm unsure if that means it'll use a hardware RNG or just one provided by the operating system (Linux / Windows / etc) in software. The question is is it possible to determine the source of the randomness from os.urandom?if there was ever a flaw found in a particular hardware RNG? Plus systems could have a third party hardware RNG that was an external addon card or similar which might be better than the one found in Intel CPUs. I'm just a bit curious about the whole "will always use the strongest source for pseudo-random numbers" when research could change that assumption overnight based on discovered flaws. This is probably a really stupid question and if it is I apologise but I'm somewhat confused. Thanks for any help. From steve at pearwood.info Sun Mar 11 06:18:41 2018 From: steve at pearwood.info (Steven D'Aprano) Date: Sun, 11 Mar 2018 21:18:41 +1100 Subject: [Tutor] Does the secrets module in Python 3.6 use a hardware RNG like that provided in Intel CPUs? In-Reply-To: <2030405469.10974048.1520633234682@mail.yahoo.com> References: <2030405469.10974048.1520633234682.ref@mail.yahoo.com> <2030405469.10974048.1520633234682@mail.yahoo.com> Message-ID: <20180311101841.GM18868@ando.pearwood.info> Hi Simon, On Fri, Mar 09, 2018 at 10:07:14PM +0000, Simon Connah via Tutor wrote: > Hi, > I was reading through the secrets documentation in Python 3.6 and > noticed that it uses /dev/urandom?but I'm unsure if that means it'll > use a hardware RNG or just one provided by the operating system (Linux > / Windows / etc) in software. Getting cryptographic-quality random numbers right is very hard, and that's not something which the Python core developers have either the experience or desire to do. So the secrets module is an interface to the operating system's source of randomness. If your operating system uses a hardware RNG for /dev/urandom (or the equivalent for Windows), then so will the secrets module. If it doesn't, then neither will secrets. In other words, Python trusts the operating system. Generally speaking, most people should too. Most major operating systems, including Windows, Linux, OS X, and various Unixes have well-respected RNGs which are generally considered secure. But of course there's a lot we don't know about the state of the art of *secret* crypto research and the capabilities of major government intelligence agencies. What little we do know, we can thank a handful of people like Edward Snowden and a few other unnamed whistle-blowers who have leaked NSA documents. And flaws could be discovered at any time. Naturally, if a flaw is discovered, the secrets module cannot magically patch it or replace the software with something else. That's up to the operating system. > The question is is it possible to > determine the source of the randomness from os.urandom?if there was > ever a flaw found in a particular hardware RNG? You have to ask your OS developers about that, but the secrets module doesn't support anything like that. It can't peer inside the OS and determine how os.urandom works. Certainly you are right to be cautious about hardware RNGs. Back in 2013 it has become clear that the NSA at least (if not other intelligence agencies) have compromised or inserted backdoors into many if not all hardware-based RNGs in common use: http://www.nytimes.com/2013/09/06/us/nsa-foils-much-internet-encryption.html?pagewanted=all So if you are using a commercially available hardware RNG, you should assume that the Five Eyes countries (the USA, UK, Australia, Canada and New Zealand) have compromised it. In the case of Linux, at least, /dev/urandom will use the output of the hardware RNG, but it is mixed in with other sources of cryptographically strong randomness and is believed to be safe. https://plus.google.com/+TheodoreTso/posts/SDcoemc9V3J > I'm > just a bit curious about the whole "will always use the strongest > source for pseudo-random numbers" when research could change that > assumption overnight based on discovered flaws. The full quote is: "The secrets module provides access to the most secure source of randomness THAT YOUR OPERATING SYSTEM PROVIDES." [emphasis added] https://docs.python.org/3/library/secrets.html So don't imagine that the secrets module has access to the cutting edge classified crypto technology used by the NSA :-) If you have any other questions, please feel free to ask on the mailing list, and I will do my best to answer. By the way, I am the author of the secrets module: https://www.python.org/dev/peps/pep-0506/ If you haven't already read the PEP (Python Enhancement Proposal), you should, it contains a lot of background for why the secrets module was invented. > This is probably a > really stupid question and if it is I apologise but I'm somewhat > confused. No need to apologise! Hope I cleared up your confusion, and if not, please feel free to ask anything else that concerns you. Regards, -- Steve From mihsh at yahoo.com Sat Mar 10 23:20:58 2018 From: mihsh at yahoo.com (Leslie SimondeMontfort) Date: Sat, 10 Mar 2018 23:20:58 -0500 Subject: [Tutor] help with code Message-ID: <3zzSbb2FXxzFqvS@mail.python.org> Hi, I wondered if there is someone that can help me with this code. Thank you, Leslie ## Text menu in Python def print_menu(): ## Your menu design here print 30 * "-" , "MENU" , 30 * "-" print "1. Menu login 1" print "2. Menu create an account 2" print "3. Menu list all accounts 3" print "4. Quit" print 67 * "-" loop!=4 while loop: ## While loop which will keep going until loop = False print_menu() ## Displays menu choice = input("Enter your choice [1-4]: ") if choice==1:"Menu login 1" count = 0 while True: def User(): login = raw_input("Enter login name: ") passw = raw_input("Enter password: ") # check if user exists and login matches password if login in users and users[login] == passw: print "\nLogin successful!\n" else: print "\nUser doesn't exist or wrong password!\n" if choice == 3: print("Too many attempts.") exit() for val in "string": if val == "i": break print(val) print("The end") if choice==2: print " Menu create an account 2" def main(): register() def register(): username = input("Please input your desired username ") password = input("Please input your desired password ") if not username or not password: print "Enter a valid username and password..." users = c.get_all_users() userList = users['list_users_response']['list_users_result']['users'] if username in userList: print "username already exist" else: # I just want to create if fields are not empty and if username dont exist c.create_user(username) file = open("credential.txt","a") file.write(username) file.write(" ") file.write(password) file.close() login() if choice==3: def login(): check = open("credential.txt","r") username = input("Please enter your username") password = input("Please enter your password") def thank_you(): print("Thank you for signing up at our website!.") elif choice == "q": exit() Sent from Mail for Windows 10 From joel.goldstick at gmail.com Sun Mar 11 07:16:11 2018 From: joel.goldstick at gmail.com (Joel Goldstick) Date: Sun, 11 Mar 2018 07:16:11 -0400 Subject: [Tutor] help with code In-Reply-To: <3zzSbb2FXxzFqvS@mail.python.org> References: <3zzSbb2FXxzFqvS@mail.python.org> Message-ID: On Sat, Mar 10, 2018 at 11:20 PM, Leslie SimondeMontfort via Tutor < tutor at python.org> wrote: > Hi, I wondered if there is someone that can help me with this code. Thank > you, Leslie > > ## Text menu in Python > > def print_menu(): ## Your menu design here > print 30 * "-" , "MENU" , 30 * "-" > print "1. Menu login 1" > print "2. Menu create an account 2" > print "3. Menu list all accounts 3" > print "4. Quit" > print 67 * "-" > > loop!=4 > > while loop: ## While loop which will keep going until loop = False > print_menu() ## Displays menu > choice = input("Enter your choice [1-4]: ") > > if choice==1:"Menu login 1" > count = 0 > while True: > def User(): > login = raw_input("Enter login name: ") > passw = raw_input("Enter password: ") > > # check if user exists and login matches password > if login in users and users[login] == passw: > print "\nLogin successful!\n" > else: > print "\nUser doesn't exist or wrong password!\n" > if choice == 3: > print("Too many attempts.") > exit() > > > for val in "string": > if val == "i": > break > print(val) > > print("The end") > > if choice==2: > print " Menu create an account 2" > > > def main(): > register() > > def register(): > username = input("Please input your desired username ") > password = input("Please input your desired password ") > if not username or not password: > print "Enter a valid username and password..." > users = c.get_all_users() > userList = users['list_users_response'][' > list_users_result']['users'] > if username in userList: > print "username already exist" > else: > # I just want to create if fields are not empty and if > username dont exist > c.create_user(username) > file = open("credential.txt","a") > file.write(username) > file.write(" ") > file.write(password) > file.close() > login() > > if choice==3: > > def login(): > check = open("credential.txt","r") > username = input("Please enter your username") > password = input("Please enter your password") > > def thank_you(): > print("Thank you for signing up at our website!.") > > elif choice == "q": > exit() > Sent from Mail for Windows 10 > > _______________________________________________ > Tutor maillist - Tutor at python.org > To unsubscribe or change subscription options: > https://mail.python.org/mailman/listinfo/tutor > A quick look shows you are using print statements and print functions. So, are you using python 3 or python 2? What exactly are you asking about? -- Joel Goldstick http://joelgoldstick.com/blog http://cc-baseballstats.info/stats/birthdays From alan.gauld at yahoo.co.uk Sun Mar 11 07:41:09 2018 From: alan.gauld at yahoo.co.uk (Alan Gauld) Date: Sun, 11 Mar 2018 11:41:09 +0000 Subject: [Tutor] help with code In-Reply-To: <3zzSbb2FXxzFqvS@mail.python.org> References: <3zzSbb2FXxzFqvS@mail.python.org> Message-ID: On 11/03/18 04:20, Leslie SimondeMontfort via Tutor wrote: > Hi, I wondered if there is someone that can help me with this code. I'll try but theres a lot to comment on. See below... > def print_menu(): ## Your menu design here > print 30 * "-" , "MENU" , 30 * "-" > print "1. Menu login 1" > print "2. Menu create an account 2" > print "3. Menu list all accounts 3" > print "4. Quit" > print 67 * "-" > > loop!=4 That last line makes no sense. Its a boolean expression using an undeclared variable(loop) You should get a name error when you run it. > while loop: ## While loop which will keep going until loop = False Again you reference loop but you have not assigned any value to it. You should get an error here too. > print_menu() ## Displays menu > choice = input("Enter your choice [1-4]: ") This is the end of your while loop and you have not modified the test condition (loop) so even if loop existed this would just loop forever. One of the fundamental principles of while loops is that you must either modify the test condition somehow or use a break somewhere inside the loop. Also using input to convert your data is a bad design. ijput is very insecure and users could (deliberately or by accident) type values which python then executes and cause damagew, in extreme cases even crashing your computer. Its much better to explicitly convert the raw_input string: choice = int(raw_input("Enter your choice [1-4]: ")) To catch invalid input wrap it in a try/except block... > if choice==1:"Menu login 1" > count = 0 This doesn't work either. You have an if test where the body is the single line containing the string. It doesn't do anything although it is legal Python but... The next line is indented as if it were part of the if block but it isn't so you should get an error there too. > while True: > def User(): > login = raw_input("Enter login name: ") > passw = raw_input("Enter password: ") > > # check if user exists and login matches password > if login in users and users[login] == passw: > print "\nLogin successful!\n" > else: > print "\nUser doesn't exist or wrong password!\n" > if choice == 3: > print("Too many attempts.") > exit() Now you have a loop that will go forever continually defining (but not calling) a function. Inside the function you might want to check the getpass function from the getpass module for a more secure password input. If you are on Unix/Linux/MacOS you could also look at the pwd module for ways of validating the user. Fiunally note that the if coice === 3 line is inside the invalid user block so would only be executed if it was an invalid user - which seems wrong? In fact I'd suggest that if block should not even be inside the User() function at all. Its not really checking anything about the user, its checking what the user did. Try to keep your functions purpose clear and distinct, don't mix functionality in a single function. > for val in "string": > if val == "i": > break This assigns val to s,then t then r then i so it will allways break on the 4th cycle. You might as well just write for val in 'str': > print(val) And since you just print val you might as well miss out the loop and use print('s\nt\nr\n') > print("The end") > > if choice==2: > print " Menu create an account 2" This is indented but there is no enclosing block so should give an indentation error. > def main(): > register() > > def register(): > username = input("Please input your desired username ") > password = input("Please input your desired password ") > if not username or not password: > print "Enter a valid username and password..." > users = c.get_all_users() > userList = users['list_users_response']['list_users_result']['users'] Note the indentation is all over the place. Python is fussy about consistent indentation, you will get errors here. Also you reference c but c does not appear anywhere else. What is c? The remaining code has more of the same so I'll stop here. I think you need to strip this back and get the basic structure working first before trying to add all the other functions. print a menu, read the input and print the users choice. Exit when option 4 is used. Get that working then you can add the code to process the choices one by one. Get each choice working before adding the next. -- Alan G Author of the Learn to Program web site http://www.alan-g.me.uk/ http://www.amazon.com/author/alan_gauld Follow my photo-blog on Flickr at: http://www.flickr.com/photos/alangauldphotos From cs at cskk.id.au Sun Mar 11 07:39:21 2018 From: cs at cskk.id.au (Cameron Simpson) Date: Sun, 11 Mar 2018 22:39:21 +1100 Subject: [Tutor] help with code In-Reply-To: <3zzSbb2FXxzFqvS@mail.python.org> References: <3zzSbb2FXxzFqvS@mail.python.org> Message-ID: <20180311113921.GA84256@cskk.homeip.net> On 10Mar2018 23:20, Leslie SimondeMontfort wrote: >Hi, I wondered if there is someone that can help me with this code. Thank you, Leslie Generally we like to know what you think is wrong with it. For example, what you expected it to do, and a little transcript of what it actually did (cut/paste the text from your terminal/console straight in this email, complete with any stack traces that came with it, if there were any). This looks like homework, and we're generally happy to help if you'll explain what you're trying to achieve and show the code you have so far. I'm glad to see you've included all your code here, it is usually necessary. Absent an actual error transcript I can make a few general remarks about the code which might lead you towards making it work the way you intend it to. Remarks inline below, in the code: >## Text menu in Python > >def print_menu(): ## Your menu design here > print 30 * "-" , "MENU" , 30 * "-" > print "1. Menu login 1" > print "2. Menu create an account 2" > print "3. Menu list all accounts 3" > print "4. Quit" > print 67 * "-" > > loop!=4 The line above "loop!=4" is a simple expression. It is valid, but useless. Normally a test with be part of a statement, such as the condition in an "if" or "while". Also, because it is indented it is inside the "print_menu" function, which doesn't seem very relevant - the function shouldn't care about the value of "loop". >while loop: ## While loop which will keep going until loop = False You haven't set a value to "loop" yet, so this code will raise an exception as soon as you try to test "loop". Probably it should be set to True before the loop begins. > print_menu() ## Displays menu > choice = input("Enter your choice [1-4]: ") > >if choice==1:"Menu login 1" > count = 0 Indentation is important in Python. Because this "if" statement is not indented, it is outside the "while" loop above. It looks like you while loop is meant to offer menu choices until the user chooses "Quit". So all the code acting on those choices needs to be inside the loop, and thus indents the same as the 2 lines above it which print the menu and read the choice. You're setting "count = 0" but I don't see you use "count" elsewhere. >while True: > def User(): > login = raw_input("Enter login name: ") > passw = raw_input("Enter password: ") > > # check if user exists and login matches password > if login in users and users[login] == passw: > print "\nLogin successful!\n" > else: > print "\nUser doesn't exist or wrong password!\n" > if choice == 3: > print("Too many attempts.") > exit() This probably doesn't do what you imagine. A "def" statement is a statement, to be run. This loop runs forever, but all it does in the loop is _define_ the function "User". It never calls the function. So it will just run forever, redefining the function again and again. Probably you need to define the function _before_ the loop, and actually call the function inside the loop. Normally all your function definitions will be outside the main code, so the "User" function definition should be above this, for example right underneath your "print_menu" function definition. Likewise your other functions. >for val in "string": > if val == "i": > break > print(val) I presume this is just a little exercise loop to print some of the leading characters from the string "string". >print("The end") > > if choice==2: > print " Menu create an account 2" This "if" statement _is_ indented correctly for the main loop you set up earlier, but all the intervening code will be getting in the way. Once you have all the function definitions up the top of your code things will work better. > >def main(): > register() Note that this just defines a "main" function. Nothing seems to call it. >def register(): > username = input("Please input your desired username ") > password = input("Please input your desired password ") > if not username or not password: This "if" is indented differently to the other statements in this function. It needs to move left one space. You seem to be using Python 2. In Python 2, input() actually evaluates the input string as a Python expression. This is why you got an integer earlier when you prompted the user for "choice". However, when reading strings such as usernames or passwords you need to use raw_input(), not input(). raw_input() just reads the string and returns it. > print "Enter a valid username and password..." Here's you are admonishing the user for entering an empty username or password. However you don't then do anything about it; instead your code falls through and starts setting up the user. You probably want a loop shapes more like this (totally untested): while True: username = input("Please input your desired username ") if len(username) == 0: print("Empty username rejected.") continue password = input("Please input your desired password ") if len(password) == 0: print("Empty password rejected.") continue break which will keep prompting until both the username and password are acceptable. _Then_ it breaks out of the loop and proceeds. > users = c.get_all_users() > userList = users['list_users_response']['list_users_result']['users'] > if username in userList: > print "username already exist" > else: This "else" needs to be indented the same as the "if". > # I just want to create if fields are not empty and if username dont exist > c.create_user(username) > file = open("credential.txt","a") > file.write(username) > file.write(" ") > file.write(password) > file.close() > login() It seems odd to call the "login" function after creating the user. > > if choice==3: Again, this "if" should be indented for the main loop like the other "choice" "if" statements. > def login(): > check = open("credential.txt","r") Here you're opening the credential.txt file, but not doing anything with it. > username = input("Please enter your username") > password = input("Please enter your password") Again, these lines should call raw_input(), not input(). > def thank_you(): > print("Thank you for signing up at our website!.") You define this function but never call it. > elif choice == "q": > exit() The call to exit() needs to be indented in order to be inside the "elif". Also, exit() is not a builtin function. I need to import it. Normally you would put this import at the very top of your program, such as: from sys import exit I also notice here that you're expecting the user to be able to enter a "q" instead of a "4". So this doesn't match your menu. But if you do want the user to enter a "q" the you need to use raw_input() instead of input() in your menu prompt, and your other "choice" values need to be strings, such as "1", "2" and so forth. Cheers, Cameron Simpson From bgailer at gmail.com Sun Mar 11 11:17:57 2018 From: bgailer at gmail.com (Bob Gailer) Date: Sun, 11 Mar 2018 11:17:57 -0400 Subject: [Tutor] help with code In-Reply-To: <3zzSbb2FXxzFqvS@mail.python.org> References: <3zzSbb2FXxzFqvS@mail.python.org> Message-ID: On Mar 11, 2018 6:25 AM, "Leslie SimondeMontfort via Tutor" < tutor at python.org> wrote: > > Hi, I wondered if there is someone that can help me with this code. I have to assume that you are very new to python. Have you written a Python program that runs the way you want it to? It is often useful to start by writing a very simple program that contains one aspect of the problem you're trying to solve, then getting that program to run. Then you add another feature and get that to run. When you run into a problem, then email us the code, and tell us what version of python you're using, what you did to run the program, what results you expected, and what results you got. You can often handle the latter by copying and pasting the execution. If the result was a traceback be sure to include the entire traceback. From arj.python at gmail.com Sun Mar 11 11:41:35 2018 From: arj.python at gmail.com (Abdur-Rahmaan Janhangeer) Date: Sun, 11 Mar 2018 19:41:35 +0400 Subject: [Tutor] help with code In-Reply-To: <3zzSbb2FXxzFqvS@mail.python.org> References: <3zzSbb2FXxzFqvS@mail.python.org> Message-ID: print 30 * "-" , "MENU" , 30 * "-" # just tested in py3 you can do # 'MENU'.center(67, '-') On Sun, Mar 11, 2018 at 8:20 AM, Leslie SimondeMontfort via Tutor < tutor at python.org> wrote: > Hi, I wondered if there is someone that can help me with this code. Thank > you, Leslie > > ## Text menu in Python > > def print_menu(): ## Your menu design here > print 30 * "-" , "MENU" , 30 * "-" > print "1. Menu login 1" > print "2. Menu create an account 2" > print "3. Menu list all accounts 3" > print "4. Quit" > print 67 * "-" > > loop!=4 > > while loop: ## While loop which will keep going until loop = False > print_menu() ## Displays menu > choice = input("Enter your choice [1-4]: ") > > if choice==1:"Menu login 1" > count = 0 > while True: > def User(): > login = raw_input("Enter login name: ") > passw = raw_input("Enter password: ") > > # check if user exists and login matches password > if login in users and users[login] == passw: > print "\nLogin successful!\n" > else: > print "\nUser doesn't exist or wrong password!\n" > if choice == 3: > print("Too many attempts.") > exit() > > > for val in "string": > if val == "i": > break > print(val) > > print("The end") > > if choice==2: > print " Menu create an account 2" > > > def main(): > register() > > def register(): > username = input("Please input your desired username ") > password = input("Please input your desired password ") > if not username or not password: > print "Enter a valid username and password..." > users = c.get_all_users() > userList = users['list_users_response'][' > list_users_result']['users'] > if username in userList: > print "username already exist" > else: > # I just want to create if fields are not empty and if > username dont exist > c.create_user(username) > file = open("credential.txt","a") > file.write(username) > file.write(" ") > file.write(password) > file.close() > login() > > if choice==3: > > def login(): > check = open("credential.txt","r") > username = input("Please enter your username") > password = input("Please enter your password") > > def thank_you(): > print("Thank you for signing up at our website!.") > > elif choice == "q": > exit() > Sent from Mail for Windows 10 > > _______________________________________________ > Tutor maillist - Tutor at python.org > To unsubscribe or change subscription options: > https://mail.python.org/mailman/listinfo/tutor > -- Abdur-Rahmaan Janhangeer https://github.com/abdur-rahmaanj Mauritius From bhewener at gmail.com Sun Mar 11 11:23:02 2018 From: bhewener at gmail.com (Bernd Hewener) Date: Sun, 11 Mar 2018 16:23:02 +0100 Subject: [Tutor] prime factorisation Message-ID: <5aa549d3.6291df0a.49cca.ffd4@mx.google.com> Dear python tutors, for training purposes, I am writing a Python program for prime factorisation. Functions for reading in the number and finding the primes are working alright (of Course, finding primes up to ? Number would suffice). Still, the function for finding the factorization itsel does not work. I am not sure, but the number i running through the primes for checking does not seem to work properly. Would you please be so kind as to help? Thank you very much. Best wishes, Bernd # This program calculates the prime factors of a number entered. primefactors = [] n, num = 0, 0 def readin(): print ("Readin") while True: num = input("Please enter a positive integer n for prime factorization. ") try: n = int(num) return n except ValueError or num < 1: print("Please enter a _positive_ integer!") else: break def prime_find(l): #print ("Primefind " + str(l)) primes = [] for num in range(2, l + 1): for i in primes: if (num % i) == 0: break else: primes.insert(0, num) return primes def prime_factorization(k): print ("Prime factorization") prime_facs = [] for i in range(len(prime_find(k)): while k % i == 0: prime_facs.insert(0, i) k = k / i else: break return prime_facs number = readin() primes = prime_find(number) print ("Prime numbers up to " + str(number) + " are:") print (primes) prime_factor = prime_factorization(number) print (prime_factor) """def PrimFaktorZerlegung(n): #Primen enth?lt Primzahlen. Wir hoffen, dass #alle Primteiler in diese List zu finden sind. #Sie kann ein Parameter, oder ein Klasskonstant sein for p in range(len(Primen)): while n % p == 0: Teiler.append(p) n = n/p return Teiler""" From jf_byrnes at comcast.net Sun Mar 11 16:52:29 2018 From: jf_byrnes at comcast.net (Jim) Date: Sun, 11 Mar 2018 15:52:29 -0500 Subject: [Tutor] Virtual environment question Message-ID: It was my understanding that using a virtual environment kept everything isolated in that environment. So I was surprised when I got the following error message. (env) jfb at jims-mint18 ~ $ File "/home/jfb/EVs/env/lib/python3.5/site-packages/selenium/webdriver/remote/remote_connection.py", line 528, in _request resp = opener.open(request, timeout=self._timeout) File "/usr/lib/python3.5/urllib/request.py", line 466, in open response = self._open(req, data) I snipped most of the error msg because for the purpose of this question I am not interested in them. I tried something that I did not think would work and it did not. I am wondering why the path for the first line and every line above it is /home/jfb/EVs/env and the second line and everything after is is /usr/lib/. I didn't think anything from my system python would be involved if I started from a virtual environment. Regards, Jim From jf_byrnes at comcast.net Sun Mar 11 20:44:41 2018 From: jf_byrnes at comcast.net (Jim) Date: Sun, 11 Mar 2018 19:44:41 -0500 Subject: [Tutor] Virtual environment question In-Reply-To: <20180311225459.GA53900@cskk.homeip.net> References: <20180311225459.GA53900@cskk.homeip.net> Message-ID: <3d862612-7923-5bb7-3e05-f6c8dc57b973@comcast.net> On 03/11/2018 05:54 PM, Cameron Simpson wrote: Note: This message came straight to me and I haven't seen it on the list yet. Hopefully this reply will make it to the list. > On 11Mar2018 15:52, jim wrote: >> It was my understanding that using a virtual environment kept >> everything isolated in that environment. So I was surprised when I got >> the following error message. >> >> (env) jfb at jims-mint18 ~ $ >> >> >> File >> "/home/jfb/EVs/env/lib/python3.5/site-packages/selenium/webdriver/remote/remote_connection.py", >> line 528, in _request >> ?? resp = opener.open(request, timeout=self._timeout) >> >> ?File "/usr/lib/python3.5/urllib/request.py", line 466, in open >> ?? response = self._open(req, data) >> >> >> I snipped most of the error msg because for the purpose of this >> question I am not interested in them. I tried? something that I did >> not think would work and it did not. >> >> I am wondering why the path for the first line and every line above it >> is /home/jfb/EVs/env and the second line and everything after is is >> /usr/lib/. >> >> I didn't think anything from my system python would be involved if I >> started from a virtual environment. > > It is possible to make a virtualenv which references the osurce python's > library. These days the default is isolation, but older virtualenvs used > to hook to the original python by default. This is controlled by > virtualenv's --system-site-packages and --no-site-packages. Maybe you > should build the env again using --no-site-packages explicitly and see > if the behaviour changes. > > If you're not using the "virtualenv" command to make the environment, > please tell use exactly how it was made (there are other tools for the > same purpose). > > In fact, tell us regardless. It aids debugging. > > Cheers, > Cameron Simpson (formerly cs at zip.com.au) I installed pyvenv in Jan 17 using synaptic on Mint 18. Here are the contents of the pyvenv cfg file: home = /usr/bin include-system-site-packages = false version = 3.5.2 It's been awhile so I don't remember that much about the installation. I really don't know that much about virtual environments so I am guessing I accepted the defaults for the installation. Just to be complete here is the entire error msg: Traceback (most recent call last): File "/home/jfb/MyProgs/Scripts/login_af.py", line 36, in driver = webdriver.Remote(desired_capabilities=caps) File "/home/jfb/EVs/env/lib/python3.5/site-packages/selenium/webdriver/remote/webdriver.py", line 154, in __init__ self.start_session(desired_capabilities, browser_profile) File "/home/jfb/EVs/env/lib/python3.5/site-packages/selenium/webdriver/remote/webdriver.py", line 243, in start_session response = self.execute(Command.NEW_SESSION, parameters) File "/home/jfb/EVs/env/lib/python3.5/site-packages/selenium/webdriver/remote/webdriver.py", line 310, in execute response = self.command_executor.execute(driver_command, params) File "/home/jfb/EVs/env/lib/python3.5/site-packages/selenium/webdriver/remote/remote_connection.py", line 466, in execute return self._request(command_info[0], url, body=data) File "/home/jfb/EVs/env/lib/python3.5/site-packages/selenium/webdriver/remote/remote_connection.py", line 528, in _request resp = opener.open(request, timeout=self._timeout) File "/usr/lib/python3.5/urllib/request.py", line 466, in open response = self._open(req, data) File "/usr/lib/python3.5/urllib/request.py", line 484, in _open '_open', req) File "/usr/lib/python3.5/urllib/request.py", line 444, in _call_chain result = func(*args) File "/usr/lib/python3.5/urllib/request.py", line 1282, in http_open return self.do_open(http.client.HTTPConnection, req) File "/usr/lib/python3.5/urllib/request.py", line 1256, in do_open raise URLError(err) urllib.error.URLError: If you tell me where to look, I'd be happy to provide any more info you need. Regards, Jim From cs at cskk.id.au Sun Mar 11 18:54:59 2018 From: cs at cskk.id.au (Cameron Simpson) Date: Mon, 12 Mar 2018 09:54:59 +1100 Subject: [Tutor] Virtual environment question In-Reply-To: References: Message-ID: <20180311225459.GA53900@cskk.homeip.net> On 11Mar2018 15:52, jim wrote: >It was my understanding that using a virtual environment kept >everything isolated in that environment. So I was surprised when I got >the following error message. > >(env) jfb at jims-mint18 ~ $ > > >File "/home/jfb/EVs/env/lib/python3.5/site-packages/selenium/webdriver/remote/remote_connection.py", >line 528, in _request > resp = opener.open(request, timeout=self._timeout) > > File "/usr/lib/python3.5/urllib/request.py", line 466, in open > response = self._open(req, data) > > >I snipped most of the error msg because for the purpose of this >question I am not interested in them. I tried something that I did >not think would work and it did not. > >I am wondering why the path for the first line and every line above it >is /home/jfb/EVs/env and the second line and everything after is is >/usr/lib/. > >I didn't think anything from my system python would be involved if I started >from a virtual environment. It is possible to make a virtualenv which references the osurce python's library. These days the default is isolation, but older virtualenvs used to hook to the original python by default. This is controlled by virtualenv's --system-site-packages and --no-site-packages. Maybe you should build the env again using --no-site-packages explicitly and see if the behaviour changes. If you're not using the "virtualenv" command to make the environment, please tell use exactly how it was made (there are other tools for the same purpose). In fact, tell us regardless. It aids debugging. Cheers, Cameron Simpson (formerly cs at zip.com.au) From henriquecsj at gmail.com Sun Mar 11 16:02:07 2018 From: henriquecsj at gmail.com (Henrique C. S. Junior) Date: Sun, 11 Mar 2018 17:02:07 -0300 Subject: [Tutor] [Pandas] - Creating a bigger dataframe by using one minor dataframe as variable of another minor dataframe Message-ID: I?m working with two dataframes obtained from the infrared spectroscopy analysis (yes, we?re scientists trying to work better using python). The dataframes are as follows: ***DATA1:*** IR RAMAN CM-1 245.54 730.41 3538.10 s1 100 3.93 204.17 3237.13 s6 93 11.13 477.42 3233.43 s3 14 s5 76 3.44 136.83 3229.53 s3 -78 s5 15 6.40 363.33 3219.42 s7 94 8.02 296.03 3217.14 s2 -90 6.13 80.90 3209.69 s9 93 3.43 166.41 3204.74 s4 -92 8.91 146.43 3203.92 s8 94 26.77 201.97 3168.99 s10 82 s12 -18 ***DATA2:*** s 1 1.00 STRE 14 21 NH 1.015055 f3538 100 s 2 1.00 STRE 1 22 CH 1.081994 f3217 90 s 3 -1.00 STRE 1 22 CH 1.081994 f3233 14 f3230 78 s 4 1.00 STRE 4 23 CH 1.082576 f3205 92 s 5 1.00 STRE 19 26 CH 1.080387 f3237 93 s 7 1.00 STRE 17 28 CH 1.083210 f3219 94 s 8 1.00 STRE 17 28 CH 1.083210 f3204 94 s 57 1.00 BEND 11 12 14 CCN 129.85 f940 20 s 58 1.00 BEND 19 18 15 CCC 120.65 s 59 -1.00 BEND 15 17 20 CCC 120.28 f1037 32 f842 10 s 60 1.00 BEND 11 8 10 CCO 122.22 f402 38 s 61 -1.00 BEND 8 11 13 CCCl 114.81 f221 60 f194 11d s 93 1.00 OUT 30 19 20 16 OCCC 0.17 f864 14 f746 11 f535 17 f517 11 s 94 1.00 OUT 7 6 1 3 CCCC 0.48 f829 10 f172 41 s 95 1.00 OUT 17 14 18 15 CNCC 3.64 f564 16 f535 15 f396 10 s 96 1.00 OUT 10 6 11 8 OCCC 0.74 f822 63 At this point, they are both (after a LOT of work) converted into a pandas dataframe but, as a final result, I?d like to create one big dataframe because those two are related by the variables s1, s2, s3, s4 and so on. So, I?d like to insert the variables s1, s2, s3, sn every time they appear in the DATA1: ***DATA1 with DATA2:*** *(I tried to use ** to show you every time DATA 2 was inserted into DATA1)* IR RAMAN CM-1 245.54 730.41 3538.10 *s1* 100 ***STRE 14 21 NH 1.015055* ** 3.93 204.17 3237.13 *s6* 93 ***STRE 19 26 CH 1.080387* ** 11.13 477.42 3233.43 *s3* ***14 STRE 1 22 CH 1.081994*** *s5* 76 ***STRE 19 26 CH 1.080387*** 3.44 136.83 3229.53 *s3* -78 ***STRE 1 22 CH 1.081994*** *s5* 15 ***STRE 19 26 CH 1.080387*** Observe that some lines can have more than two variables. I have to admit that I?m completely lost using pandas right now and any help is much appreciated. Thanks in advance. -- *Henrique C. S. Junior* From eryksun at gmail.com Mon Mar 12 05:04:18 2018 From: eryksun at gmail.com (eryk sun) Date: Mon, 12 Mar 2018 09:04:18 +0000 Subject: [Tutor] Virtual environment question In-Reply-To: <3d862612-7923-5bb7-3e05-f6c8dc57b973@comcast.net> References: <20180311225459.GA53900@cskk.homeip.net> <3d862612-7923-5bb7-3e05-f6c8dc57b973@comcast.net> Message-ID: On Mon, Mar 12, 2018 at 12:44 AM, Jim wrote: > > home = /usr/bin > include-system-site-packages = false [...] > resp = opener.open(request, timeout=self._timeout) > File "/usr/lib/python3.5/urllib/request.py", line 466, in open This is normal. Virtual environments are not isolated from the standard library. From steve at pearwood.info Mon Mar 12 10:26:39 2018 From: steve at pearwood.info (Steven D'Aprano) Date: Tue, 13 Mar 2018 01:26:39 +1100 Subject: [Tutor] prime factorisation In-Reply-To: <5aa549d3.6291df0a.49cca.ffd4@mx.google.com> References: <5aa549d3.6291df0a.49cca.ffd4@mx.google.com> Message-ID: <20180312142639.GQ18868@ando.pearwood.info> Hello Bernd, My comments below, interleaved with yours. On Sun, Mar 11, 2018 at 04:23:02PM +0100, Bernd Hewener wrote: > Functions for reading in the number and finding the primes are working > alright (of Course, finding primes up to ? Number would suffice). Actually you only need to go up to square root of the number. > Still, the function for finding the factorization itsel does not work. > I am not sure, but the number i running through the primes for > checking does not seem to work properly. What do you mean, does not work? In what way? When you run the code, what does it do? Some further comments: [...] > def readin(): > print ("Readin") > while True: > num = input("Please enter a positive integer n for prime factorization. ") > try: > n = int(num) > return n > except ValueError or num < 1: > print("Please enter a _positive_ integer!") > else: > break That code doesn't actually do what you think it does. In fact, it is an accident that it works at all! The problem is the line except ValueError or num < 1 which does *not* catch a ValueError and check that num is less than one. Instead, it evaluates to just catching ValueError. So it never checks that the entered number is positive. Regards, Steve From btoddpuls at gmail.com Mon Mar 12 15:33:17 2018 From: btoddpuls at gmail.com (Bruce Todd Puls) Date: Mon, 12 Mar 2018 15:33:17 -0400 Subject: [Tutor] prime factorisation Message-ID: I think You would do much better if You wrote pseudo code first, i.e. write each step out in words, code is much easier to write following pseudo code Are You trying to factor Prime Numbers? Prime Number factored (Prime Number and 1) https://en.wikipedia.org/wiki/Table_of_prime_factors#1_to_100 https://www.mathsisfun.com/prime-factorization.html From jf_byrnes at comcast.net Mon Mar 12 21:31:47 2018 From: jf_byrnes at comcast.net (Jim) Date: Mon, 12 Mar 2018 20:31:47 -0500 Subject: [Tutor] Virtual environment question In-Reply-To: References: <20180311225459.GA53900@cskk.homeip.net> <3d862612-7923-5bb7-3e05-f6c8dc57b973@comcast.net> Message-ID: On 03/12/2018 04:04 AM, eryk sun wrote: > On Mon, Mar 12, 2018 at 12:44 AM, Jim wrote: >> >> home = /usr/bin >> include-system-site-packages = false > [...] >> resp = opener.open(request, timeout=self._timeout) >> File "/usr/lib/python3.5/urllib/request.py", line 466, in open > > This is normal. Virtual environments are not isolated from the standard library. Interesting. All I know about virtual environments is what I read on the net. I always see them recommended as a way to keep from messing up the default python, so I thought isolation was their purpose. Thanks, Jim From eryksun at gmail.com Mon Mar 12 21:44:38 2018 From: eryksun at gmail.com (eryk sun) Date: Tue, 13 Mar 2018 01:44:38 +0000 Subject: [Tutor] Virtual environment question In-Reply-To: References: <20180311225459.GA53900@cskk.homeip.net> <3d862612-7923-5bb7-3e05-f6c8dc57b973@comcast.net> Message-ID: On Tue, Mar 13, 2018 at 1:31 AM, Jim wrote: > On 03/12/2018 04:04 AM, eryk sun wrote: >> >> On Mon, Mar 12, 2018 at 12:44 AM, Jim wrote: >>> >>> home = /usr/bin >>> include-system-site-packages = false >> >> [...] >>> >>> resp = opener.open(request, timeout=self._timeout) >>> File "/usr/lib/python3.5/urllib/request.py", line 466, in open >> >> This is normal. Virtual environments are not isolated from the standard >> library. > > Interesting. All I know about virtual environments is what I read on the > net. I always see them recommended as a way to keep from messing up the > default python, so I thought isolation was their purpose. You're thinking of isolating packages that are installed in site-packages, not the standard library. There's no point in copying and recompiling the entire standard library in every virtual environment. From mats at wichmann.us Mon Mar 12 22:35:02 2018 From: mats at wichmann.us (Mats Wichmann) Date: Mon, 12 Mar 2018 19:35:02 -0700 Subject: [Tutor] Virtual environment question In-Reply-To: References: <20180311225459.GA53900@cskk.homeip.net> <3d862612-7923-5bb7-3e05-f6c8dc57b973@comcast.net> Message-ID: <7F55B322-0981-4937-ADA8-1A48A198F5DB@wichmann.us> you are talking about different sides of isolation. you install into a virtualenv and those pkgs don't go into the system area. that says nothing about using existing bits of the system... On March 12, 2018 6:31:47 PM PDT, Jim wrote: >On 03/12/2018 04:04 AM, eryk sun wrote: >> On Mon, Mar 12, 2018 at 12:44 AM, Jim wrote: >>> >>> home = /usr/bin >>> include-system-site-packages = false >> [...] >>> resp = opener.open(request, timeout=self._timeout) >>> File "/usr/lib/python3.5/urllib/request.py", line 466, in open >> >> This is normal. Virtual environments are not isolated from the >standard library. > >Interesting. All I know about virtual environments is what I read on >the >net. I always see them recommended as a way to keep from messing up the > >default python, so I thought isolation was their purpose. > >Thanks, Jim > > >_______________________________________________ >Tutor maillist - Tutor at python.org >To unsubscribe or change subscription options: >https://mail.python.org/mailman/listinfo/tutor -- Sent from my Android device with K-9 Mail. Please excuse my brevity. From jf_byrnes at comcast.net Tue Mar 13 17:35:02 2018 From: jf_byrnes at comcast.net (Jim) Date: Tue, 13 Mar 2018 16:35:02 -0500 Subject: [Tutor] Virtual environment question In-Reply-To: References: <20180311225459.GA53900@cskk.homeip.net> <3d862612-7923-5bb7-3e05-f6c8dc57b973@comcast.net> Message-ID: On 03/12/2018 08:44 PM, eryk sun wrote: > On Tue, Mar 13, 2018 at 1:31 AM, Jim wrote: >> On 03/12/2018 04:04 AM, eryk sun wrote: >>> >>> On Mon, Mar 12, 2018 at 12:44 AM, Jim wrote: >>>> >>>> home = /usr/bin >>>> include-system-site-packages = false >>> >>> [...] >>>> >>>> resp = opener.open(request, timeout=self._timeout) >>>> File "/usr/lib/python3.5/urllib/request.py", line 466, in open >>> >>> This is normal. Virtual environments are not isolated from the standard >>> library. >> >> Interesting. All I know about virtual environments is what I read on the >> net. I always see them recommended as a way to keep from messing up the >> default python, so I thought isolation was their purpose. > > You're thinking of isolating packages that are installed in > site-packages, not the standard library. There's no point in copying > and recompiling the entire standard library in every virtual > environment. Just curious. So do they share parts of the standard libray? What happens if the version of python I have in a virtual environment is totally different than any python available from the os? Say version 3 vs version 2 in the os. Regards, Jim From greg.johnson1 at outlook.com Wed Mar 14 14:30:04 2018 From: greg.johnson1 at outlook.com (Greg Johnson) Date: Wed, 14 Mar 2018 18:30:04 +0000 Subject: [Tutor] Please unsubscribe me from thi list In-Reply-To: References: Message-ID: Please unsubscribe me from thi list ________________________________ From: Tutor on behalf of tutor-request at python.org Sent: Wednesday, March 14, 2018 4:00:02 PM To: tutor at python.org Subject: Tutor Digest, Vol 169, Issue 12 Send Tutor mailing list submissions to tutor at python.org To subscribe or unsubscribe via the World Wide Web, visit https://mail.python.org/mailman/listinfo/tutor or, via email, send a message with subject or body 'help' to tutor-request at python.org You can reach the person managing the list at tutor-owner at python.org When replying, please edit your Subject line so it is more specific than "Re: Contents of Tutor digest..." Today's Topics: 1. Re: Virtual environment question (Jim) ---------------------------------------------------------------------- Message: 1 Date: Tue, 13 Mar 2018 16:35:02 -0500 From: Jim To: tutor at python.org Subject: Re: [Tutor] Virtual environment question Message-ID: Content-Type: text/plain; charset=utf-8; format=flowed On 03/12/2018 08:44 PM, eryk sun wrote: > On Tue, Mar 13, 2018 at 1:31 AM, Jim wrote: >> On 03/12/2018 04:04 AM, eryk sun wrote: >>> >>> On Mon, Mar 12, 2018 at 12:44 AM, Jim wrote: >>>> >>>> home = /usr/bin >>>> include-system-site-packages = false >>> >>> [...] >>>> >>>> resp = opener.open(request, timeout=self._timeout) >>>> File "/usr/lib/python3.5/urllib/request.py", line 466, in open >>> >>> This is normal. Virtual environments are not isolated from the standard >>> library. >> >> Interesting. All I know about virtual environments is what I read on the >> net. I always see them recommended as a way to keep from messing up the >> default python, so I thought isolation was their purpose. > > You're thinking of isolating packages that are installed in > site-packages, not the standard library. There's no point in copying > and recompiling the entire standard library in every virtual > environment. Just curious. So do they share parts of the standard libray? What happens if the version of python I have in a virtual environment is totally different than any python available from the os? Say version 3 vs version 2 in the os. Regards, Jim ------------------------------ Subject: Digest Footer _______________________________________________ Tutor maillist - Tutor at python.org https://mail.python.org/mailman/listinfo/tutor ------------------------------ End of Tutor Digest, Vol 169, Issue 12 ************************************** From steve at pearwood.info Thu Mar 15 07:04:05 2018 From: steve at pearwood.info (Steven D'Aprano) Date: Thu, 15 Mar 2018 22:04:05 +1100 Subject: [Tutor] Please unsubscribe me from thi list In-Reply-To: References: Message-ID: <20180315110404.GC16661@ando.pearwood.info> On Wed, Mar 14, 2018 at 06:30:04PM +0000, Greg Johnson wrote: > Please unsubscribe me from thi list At the top of each digest, it says: To subscribe or unsubscribe via the World Wide Web, visit https://mail.python.org/mailman/listinfo/tutor and then again at the bottom of each email: To unsubscribe or change subscription options: https://mail.python.org/mailman/listinfo/tutor You can unsubscribe yourself. I can't do it for you. All the best, Steve From prashanth.ram at itwgo.in Thu Mar 15 09:42:58 2018 From: prashanth.ram at itwgo.in (Prashanth Ram) Date: Thu, 15 Mar 2018 19:12:58 +0530 Subject: [Tutor] PYTHON HELP Message-ID: Dear Sir/Madam, I'm a beginner in Python. I have written a code to open browsers using selenium framework. I have purchased a Virtual Private Server (VPS) with CentOS 6.9 installed from GoDaddy. My code is working well in localhost but when I try to open that in VPS server I'm failing in running that code. I'm getting errors. I have installed Chrome and it's drivers. Even though I'm facing errors. I request your team to help me in this. Please find the attachments Thanks & Regards, Prashanth R ITW Travel and Leisure Pvt Ltd. From preetisaxenamac at gmail.com Thu Mar 15 12:56:52 2018 From: preetisaxenamac at gmail.com (Preeti Saxena) Date: Thu, 15 Mar 2018 22:26:52 +0530 Subject: [Tutor] Python Script Testing Message-ID: Hi, I am new to python. I am trying to test my program, like a coursera submission, which takes run time arguments using "raw_input()". Is there a way I can write all the input data into a file and pass it from command line to the script? 1. I have to use "raw_input". 2. I do not wish to open a file inside the script as that will beat the purpose. Thanks for any and all the help. Thanks, Preeti From david at graniteweb.com Thu Mar 15 13:35:15 2018 From: david at graniteweb.com (David Rock) Date: Thu, 15 Mar 2018 12:35:15 -0500 Subject: [Tutor] PYTHON HELP In-Reply-To: References: Message-ID: > On Mar 15, 2018, at 08:42, Prashanth Ram wrote: > > I'm a beginner in Python. I have written a code to open browsers using > selenium framework. I have purchased a Virtual Private Server (VPS) with > CentOS 6.9 installed from GoDaddy. > > My code is working well in localhost but when I try to open that in VPS > server I'm failing in running that code. I'm getting errors. I have > installed Chrome and it's drivers. Even though I'm facing errors. > > I request your team to help me in this. Please find the attachments > Welcome, Your attachments did not come through. This list generally only works with in-line text. If you post your code, what you expect and what the errors are, we will have a better chance of helping. Being a tutor list, help with the selenium framework is not guaranteed, though. Hopefully your issue is something basic. ? David Rock david at graniteweb.com From alan.gauld at yahoo.co.uk Thu Mar 15 13:35:33 2018 From: alan.gauld at yahoo.co.uk (Alan Gauld) Date: Thu, 15 Mar 2018 17:35:33 +0000 Subject: [Tutor] PYTHON HELP In-Reply-To: References: Message-ID: On 15/03/18 13:42, Prashanth Ram wrote: > My code is working well in localhost but when I try to open that in VPS > server I'm failing in running that code. I'm getting errors. I have > installed Chrome and it's drivers. Even though I'm facing errors. > > I request your team to help me in this. Please find the attachments This is a text based email list so any binary attachments get stripped by the server for security reasons. Please send the code plus any error messages as text within your emails. Alternatively post images on a web site and send a link. -- Alan G Author of the Learn to Program web site http://www.alan-g.me.uk/ http://www.amazon.com/author/alan_gauld Follow my photo-blog on Flickr at: http://www.flickr.com/photos/alangauldphotos From alan.gauld at yahoo.co.uk Thu Mar 15 13:41:54 2018 From: alan.gauld at yahoo.co.uk (Alan Gauld) Date: Thu, 15 Mar 2018 17:41:54 +0000 Subject: [Tutor] Python Script Testing In-Reply-To: References: Message-ID: On 15/03/18 16:56, Preeti Saxena wrote: > Hi, > I am new to python. I am trying to test my program, like a coursera > submission, which takes run time arguments using "raw_input()". Is there a > way I can write all the input data into a file and pass it from command > line to the script? In normal Python yes, you can simply pass the file name as an argument to the program or you can use input redirection to read the data from the file as if it were input by a user. Unfortunately neither of these options is likely to work in a web environment - one of the disadvantages of using such a tool. The issue is not a Python one but one with your tutorial. I suggest you contact the authors directly to ask if they can suggest a solution (or incorporate such a feature). > 1. I have to use "raw_input". > 2. I do not wish to open a file inside the script as that will beat the > purpose. In real-world python you could just use input redirection: ########## data.txt ########## Alan ############################## ########## myscript.py ####### name = raw_input("What's your name? ") print "Hello ", name ############################## Executed with: $ python myscript.py < data.txt HTH -- Alan G Author of the Learn to Program web site http://www.alan-g.me.uk/ http://www.amazon.com/author/alan_gauld Follow my photo-blog on Flickr at: http://www.flickr.com/photos/alangauldphotos From akleider at sonic.net Thu Mar 15 13:50:03 2018 From: akleider at sonic.net (Alex Kleider) Date: Thu, 15 Mar 2018 10:50:03 -0700 Subject: [Tutor] Python Script Testing In-Reply-To: References: Message-ID: <6f6abdade9adda07611512355d4c14ad@sonic.net> On 2018-03-15 09:56, Preeti Saxena wrote: > Hi, > I am new to python. I am trying to test my program, like a coursera > submission, which takes run time arguments using "raw_input()". Is > there a > way I can write all the input data into a file and pass it from command > line to the script? > 1. I have to use "raw_input". > 2. I do not wish to open a file inside the script as that will beat the > purpose. If you are using Linux or other UNIX like system (such as a Mac) the 'HERE Document' feature [1] of the OS might prove useful: # File: dummy.py inputs = {} inputs["first"] = raw_input("") inputs["second"] = raw_input("") for key in inputs.keys(): print inputs[key] Then from the command line: alex at x301n4:~$ python dummy.py << HERE first input second input HERE On my system[2] the result is: second input first input [1] http://tldp.org/LDP/abs/html/here-docs.html [2] Ubuntu 16.4LTS From alan.gauld at yahoo.co.uk Thu Mar 15 14:53:45 2018 From: alan.gauld at yahoo.co.uk (Alan Gauld) Date: Thu, 15 Mar 2018 18:53:45 +0000 Subject: [Tutor] Python Script Testing In-Reply-To: References: Message-ID: <0f912dc7-e67d-beec-d0b1-a90dba2fee72@yahoo.co.uk> Please always use Reply All or Reply List when responding to list emails. Farwarding to list... On 15/03/18 17:47, Gaurav Parashar wrote: > Opening the file inside the script seems the only possible solution. > As far as I remember about the coursera course, the gave the input > file, and we need to upload the output file, running the script on our > local system. So, the above method should work. > > On 15 Mar 2018 11:13 pm, "Alan Gauld via Tutor" > wrote: > > On 15/03/18 16:56, Preeti Saxena wrote: > > Hi, > >? ? I am new to python. I am trying to test my program, like a > coursera > > submission, which takes run time arguments using "raw_input()". > Is there a > > way I can write all the input data into a file and pass it from > command > > line to the script? > > In normal Python yes, you can simply pass the file name as an > argument to the program or you can use input redirection to > read the data from the file as if it were input by a user. > > Unfortunately neither of these options is likely to work in > a web environment - one of the disadvantages of using such > a tool. The issue is not a Python one but one with your > tutorial. I suggest you contact the authors directly to > ask if they can suggest a solution (or incorporate > such a feature). > > > 1. I have to use "raw_input". > > 2. I do not wish to open a file inside the script as that will > beat the > > purpose. > > In real-world python you could just use input redirection: > > ########## data.txt ########## > Alan > ############################## > > ########## myscript.py ####### > name = raw_input("What's your name? ") > print "Hello ", name > ############################## > > Executed with: > > $ python myscript.py < data.txt > > > HTH > -- > Alan G > Author of the Learn to Program web site > http://www.alan-g.me.uk/ > http://www.amazon.com/author/alan_gauld > > Follow my photo-blog on Flickr at: > http://www.flickr.com/photos/alangauldphotos > > > > _______________________________________________ > Tutor maillist? -? Tutor at python.org > To unsubscribe or change subscription options: > https://mail.python.org/mailman/listinfo/tutor > > -- Alan G Author of the Learn to Program web site http://www.alan-g.me.uk/ http://www.amazon.com/author/alan_gauld Follow my photo-blog on Flickr at: http://www.flickr.com/photos/alangauldphotos From mitesh.budhabhatti at gmail.com Tue Mar 20 09:55:20 2018 From: mitesh.budhabhatti at gmail.com (Mitesh H. Budhabhatti) Date: Tue, 20 Mar 2018 19:25:20 +0530 Subject: [Tutor] Connecting to MS SQL Server Message-ID: Hello, Can anybody please suggest better way to connect MS SQL Server database? Thanks! From mats at wichmann.us Tue Mar 20 10:00:51 2018 From: mats at wichmann.us (Mats Wichmann) Date: Tue, 20 Mar 2018 08:00:51 -0600 Subject: [Tutor] Connecting to MS SQL Server In-Reply-To: References: Message-ID: On 03/20/2018 07:55 AM, Mitesh H. Budhabhatti wrote: > Hello, > > Can anybody please suggest better way to connect MS SQL Server database? > > Thanks! Better than what? The standard mechanisms work fine (mysql documentation has a decent writeup) From mats at wichmann.us Tue Mar 20 10:03:26 2018 From: mats at wichmann.us (Mats Wichmann) Date: Tue, 20 Mar 2018 08:03:26 -0600 Subject: [Tutor] Connecting to MS SQL Server In-Reply-To: References: Message-ID: On 03/20/2018 08:00 AM, Mats Wichmann wrote: > On 03/20/2018 07:55 AM, Mitesh H. Budhabhatti wrote: >> Hello, >> >> Can anybody please suggest better way to connect MS SQL Server database? >> >> Thanks! > > > Better than what? > > The standard mechanisms work fine (mysql documentation has a decent writeup) Sorry, I misread your question, somehow my eyes saw mysql instead of mssql. Will leave that to others to answer, don't use SQL Server. From alan.gauld at yahoo.co.uk Tue Mar 20 10:35:01 2018 From: alan.gauld at yahoo.co.uk (Alan Gauld) Date: Tue, 20 Mar 2018 14:35:01 +0000 Subject: [Tutor] Connecting to MS SQL Server In-Reply-To: References: Message-ID: On 20/03/18 13:55, Mitesh H. Budhabhatti wrote: > Hello, > > Can anybody please suggest better way to connect MS SQL Server database? As Mats said, better than what? There are at least two "official" ways: 1) using the SQL Server driver 2) Using the ODBC driver. Both are described here: https://docs.microsoft.com/en-us/sql/connect/python/python-driver-for-sql-server If you are doing anything else then try these. If they don't work get back to us with more specific details. -- Alan G Author of the Learn to Program web site http://www.alan-g.me.uk/ http://www.amazon.com/author/alan_gauld Follow my photo-blog on Flickr at: http://www.flickr.com/photos/alangauldphotos From davholla2002 at yahoo.co.uk Thu Mar 22 11:22:20 2018 From: davholla2002 at yahoo.co.uk (David Holland) Date: Thu, 22 Mar 2018 15:22:20 +0000 (UTC) Subject: [Tutor] Oracle forms References: <507985286.8503721.1521732140030.ref@mail.yahoo.com> Message-ID: <507985286.8503721.1521732140030@mail.yahoo.com> Is there anyway I can use Python to fill in an Oracle form rather than typing it in myself.I.e take values from a .csv file and put them into an Oracle form.Any ideas (I have googled it) what libraries to use? From lfcfan2366 at gmail.com Thu Mar 22 07:35:05 2018 From: lfcfan2366 at gmail.com (Connie Callaghan) Date: Thu, 22 Mar 2018 11:35:05 +0000 Subject: [Tutor] Matrix help Message-ID: <5ab394ed.177c1c0a.ac374.f1d9@mx.google.com> Hi, I was just looking help for a matrix that I am building, it needs to look like this 1, 0, 0, ...,0 A,b,c,0,...,0 0,a,b,c,...,0 0,0,a,b,c,..0 0,0,0,a,b,c,...,0 0,0,0,0...0, 1 It has n rows and columns and the first and last line has to have 1s at the corners as shown, and a,b,c going diagonal and 0?s everywhere else, I am really struggling and it would be a great help to even be shown how to begin, Thanks Connie --- This email has been checked for viruses by AVG. http://www.avg.com From __peter__ at web.de Thu Mar 22 13:35:17 2018 From: __peter__ at web.de (Peter Otten) Date: Thu, 22 Mar 2018 18:35:17 +0100 Subject: [Tutor] Oracle forms References: <507985286.8503721.1521732140030.ref@mail.yahoo.com> <507985286.8503721.1521732140030@mail.yahoo.com> Message-ID: David Holland via Tutor wrote: > Is there anyway I can use Python to fill in an Oracle form rather than > typing it in myself.I.e take values from a .csv file and put them into an > Oracle form.Any ideas (I have googled it) what libraries to use? If I understand you correctly you want to enter data into a database, in bulk. For that you typically bypass any GUI, and connect to the database directly. With Python and Oracle that would look like http://www.oracle.com/technetwork/articles/dsl/python-091105.html As it is possible to do a lot of damage (provided you have the necessary credentials) I suggest that you discuss this with your IT department before you proceed. From mats at wichmann.us Thu Mar 22 13:41:37 2018 From: mats at wichmann.us (Mats Wichmann) Date: Thu, 22 Mar 2018 11:41:37 -0600 Subject: [Tutor] Oracle forms In-Reply-To: References: <507985286.8503721.1521732140030.ref@mail.yahoo.com> <507985286.8503721.1521732140030@mail.yahoo.com> Message-ID: <9c47487f-5664-2d7a-b99e-9ad0d581ce26@wichmann.us> On 03/22/2018 11:35 AM, Peter Otten wrote: > David Holland via Tutor wrote: > >> Is there anyway I can use Python to fill in an Oracle form rather than >> typing it in myself.I.e take values from a .csv file and put them into an >> Oracle form.Any ideas (I have googled it) what libraries to use? > > If I understand you correctly you want to enter data into a database, in > bulk. For that you typically bypass any GUI, and connect to the database > directly. With Python and Oracle that would look like > > http://www.oracle.com/technetwork/articles/dsl/python-091105.html > > As it is possible to do a lot of damage (provided you have the necessary > credentials) I suggest that you discuss this with your IT department before > you proceed. >From the Python viewpoint, no clue. Oracle Forms has its own API. Naturally, that requires a unique scripting language to use ("but it's easy to learn!"). Maybe if they were building it today they would use a known scripting language instead, who knows. And the API package has, I believe, add-on costs. It's Oracle, after all. From alan.gauld at yahoo.co.uk Thu Mar 22 14:08:53 2018 From: alan.gauld at yahoo.co.uk (Alan Gauld) Date: Thu, 22 Mar 2018 18:08:53 +0000 Subject: [Tutor] Oracle forms In-Reply-To: <507985286.8503721.1521732140030@mail.yahoo.com> References: <507985286.8503721.1521732140030.ref@mail.yahoo.com> <507985286.8503721.1521732140030@mail.yahoo.com> Message-ID: On 22/03/18 15:22, David Holland via Tutor wrote: > Is there anyway I can use Python to fill in an Oracle form What kind of Oracle form? There are at least 2 that I'm aware of. 1) The Oracle Forms thick client app framework which runs on a PC and connects to the database server. (I believe this is now obsolescent and no longer supported by Oracle?) 2) Web Forms built using the Oracle web server framework In either case it is usually better to access the database directly from Python rather than trying to write data into the GUI. The only case where the latter would be needed is if the Forms client implemented some kind of data processing prior to sending the data to the sever. If that is the case you can try the usual screen or web scraping options. But they are always messy and unreliable so should be a last resort. Check that there isn't an API you can use first. Also the OS and Python version may make a difference so let us know exactly what you need to do. Finally, there are literally dozens of other Oracle applications that all have forms interfaces (HR, CRM, ERM, Workflow, Middleware, Financials, Java, etc etc). So if it's not the database product you need to tell us that too. -- Alan G Author of the Learn to Program web site http://www.alan-g.me.uk/ http://www.amazon.com/author/alan_gauld Follow my photo-blog on Flickr at: http://www.flickr.com/photos/alangauldphotos From __peter__ at web.de Thu Mar 22 14:11:11 2018 From: __peter__ at web.de (Peter Otten) Date: Thu, 22 Mar 2018 19:11:11 +0100 Subject: [Tutor] Matrix help References: <5ab394ed.177c1c0a.ac374.f1d9@mx.google.com> Message-ID: Connie Callaghan wrote: > Hi, > I was just looking help for a matrix that I am building, it needs to look > like this 1, 0, 0, ...,0 > A,b,c,0,...,0 > 0,a,b,c,...,0 > 0,0,a,b,c,..0 > 0,0,0,a,b,c,...,0 > 0,0,0,0...0, 1 > > It has n rows and columns and the first and last line has to have 1s at > the corners as shown, and a,b,c going diagonal and 0?s everywhere else, I > am really struggling and it would be a great help to even be shown how to > begin, Assuming you are not using numpy the easiest way is to start with a list of lists containing only zeros: >>> N = 5 >>> my_matrix = [[0] * N for row in range(N)] >>> my_matrix [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]] This becomes a bit more readable with pprint: >>> from pprint import pprint >>> pprint(my_matrix) [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]] You can then modify the matrix: >>> my_matrix[0][0] = my_matrix[-1][-1] = 1 >>> pprint(my_matrix) [[1, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 1]] For the other values use a for loop, like >>> for i in range(1, N): ... my_matrix[i][i-1] = 42 ... >>> pprint(my_matrix) [[1, 0, 0, 0, 0], [42, 0, 0, 0, 0], [0, 42, 0, 0, 0], [0, 0, 42, 0, 0], [0, 0, 0, 42, 1]] Oops, one more 42 than b-s in your example. Looks like you need to adjust the range() arguments. From alan.gauld at yahoo.co.uk Thu Mar 22 14:14:16 2018 From: alan.gauld at yahoo.co.uk (Alan Gauld) Date: Thu, 22 Mar 2018 18:14:16 +0000 Subject: [Tutor] Matrix help In-Reply-To: <5ab394ed.177c1c0a.ac374.f1d9@mx.google.com> References: <5ab394ed.177c1c0a.ac374.f1d9@mx.google.com> Message-ID: On 22/03/18 11:35, Connie Callaghan wrote: > Hi, > I was just looking help for a matrix that I am building, it needs to look like this > 1, 0, 0, ...,0 > A,b,c,0,...,0 > 0,a,b,c,...,0 > 0,0,a,b,c,..0 > 0,0,0,a,b,c,...,0 > 0,0,0,0...0, 1 What exactly are the a,b,c values? Are they variables or literal characters? Or something else? Also, how many cells do the ... represent? Do you know in advance? or are they dynamically calculated? If the latter then based on what? The first and last rows are completely different - no a,b,c values - how are they determined? ie How do you know you have reached the last row? We need a much more rigorous specification. -- Alan G Author of the Learn to Program web site http://www.alan-g.me.uk/ http://www.amazon.com/author/alan_gauld Follow my photo-blog on Flickr at: http://www.flickr.com/photos/alangauldphotos From nooralghanem7 at gmail.com Fri Mar 23 02:02:51 2018 From: nooralghanem7 at gmail.com (Noor Alghanem) Date: Thu, 22 Mar 2018 23:02:51 -0700 Subject: [Tutor] Matrix Multiplication user entries Message-ID: Hello, I am trying to write a program that is basically multiplying two matrices one of size 1x8 and the other one of size 8x4. The different thing that I am trying to figure out is that I want the program to ask the user to enter the values for the 1x8 matrix only which will be used in the multiplication process. How do I do that, please provide an example as I wasn't able to find one online that works. Also, if you can please include an example of matrix multiplication that is similar in idea to what I am trying to write. Thank you From davholla2002 at yahoo.co.uk Fri Mar 23 12:31:06 2018 From: davholla2002 at yahoo.co.uk (David Holland) Date: Fri, 23 Mar 2018 16:31:06 +0000 (UTC) Subject: [Tutor] Tutor Digest, Vol 169, Issue 17 In-Reply-To: References: Message-ID: <2022097601.9614801.1521822666689@mail.yahoo.com> Thank you all for the replies.? I did not make myself clear.I don't want to access the database directly as that would be unsupported by Oracle.I mean Oracle forms which using in Oracle financials, and something that acts like a dumb clerk that takes information from a spreadsheet and puts it in the form.Similar to something that you use to put information into a website (I don't know how to do that either sadly). On Friday, 23 March 2018, 16:00:13 GMT, wrote: Send Tutor mailing list submissions to ??? tutor at python.org To subscribe or unsubscribe via the World Wide Web, visit ??? https://mail.python.org/mailman/listinfo/tutor or, via email, send a message with subject or body 'help' to ??? tutor-request at python.org You can reach the person managing the list at ??? tutor-owner at python.org When replying, please edit your Subject line so it is more specific than "Re: Contents of Tutor digest..." Today's Topics: ? 1. Matrix help (Connie Callaghan) ? 2. Re: Oracle forms (Peter Otten) ? 3. Re: Oracle forms (Mats Wichmann) ? 4. Re: Oracle forms (Alan Gauld) ? 5. Re: Matrix help (Peter Otten) ? 6. Re: Matrix help (Alan Gauld) ? 7. Matrix Multiplication user entries (Noor Alghanem) ---------------------------------------------------------------------- Message: 1 Date: Thu, 22 Mar 2018 11:35:05 +0000 From: Connie Callaghan To: "tutor at python.org" Subject: [Tutor] Matrix help Message-ID: <5ab394ed.177c1c0a.ac374.f1d9 at mx.google.com> Content-Type: text/plain; charset="utf-8" Hi, I was just looking help for a matrix that I am building, it needs to look like this 1, 0, 0, ...,0 A,b,c,0,...,0 0,a,b,c,...,0 0,0,a,b,c,..0 0,0,0,a,b,c,...,0 0,0,0,0...0, 1 It has n rows and columns and the first and last line has to have 1s at the corners as shown, and a,b,c going diagonal and 0?s everywhere else, I am really struggling and it would be a great help to even be shown how to begin, Thanks Connie --- This email has been checked for viruses by AVG. http://www.avg.com ------------------------------ Message: 2 Date: Thu, 22 Mar 2018 18:35:17 +0100 From: Peter Otten <__peter__ at web.de> To: tutor at python.org Subject: Re: [Tutor] Oracle forms Message-ID: Content-Type: text/plain; charset="ISO-8859-1" David Holland via Tutor wrote: > Is there anyway I can use Python to fill in an Oracle form rather than > typing it in myself.I.e take values from a .csv file and put them into an > Oracle form.Any ideas (I have googled it) what libraries to use? If I understand you correctly you want to enter data into a database, in bulk. For that you typically bypass any GUI, and connect to the database directly. With Python and Oracle that would look like http://www.oracle.com/technetwork/articles/dsl/python-091105.html As it is possible to do a lot of damage (provided you have the necessary credentials) I suggest that you discuss this with your IT department before you proceed. ------------------------------ Message: 3 Date: Thu, 22 Mar 2018 11:41:37 -0600 From: Mats Wichmann To: tutor at python.org Subject: Re: [Tutor] Oracle forms Message-ID: <9c47487f-5664-2d7a-b99e-9ad0d581ce26 at wichmann.us> Content-Type: text/plain; charset=utf-8 On 03/22/2018 11:35 AM, Peter Otten wrote: > David Holland via Tutor wrote: > >> Is there anyway I can use Python to fill in an Oracle form rather than >> typing it in myself.I.e take values from a .csv file and put them into an >> Oracle form.Any ideas (I have googled it) what libraries to use? > > If I understand you correctly you want to enter data into a database, in > bulk. For that you typically bypass any GUI, and connect to the database > directly. With Python and Oracle that would look like > > http://www.oracle.com/technetwork/articles/dsl/python-091105.html > > As it is possible to do a lot of damage (provided you have the necessary > credentials) I suggest that you discuss this with your IT department before > you proceed. >From the Python viewpoint, no clue. Oracle Forms has its own API. Naturally, that requires a unique scripting language to use ("but it's easy to learn!"). Maybe if they were building it today they would use a known scripting language instead, who knows. And the API package has, I believe, add-on costs. It's Oracle, after all. ------------------------------ Message: 4 Date: Thu, 22 Mar 2018 18:08:53 +0000 From: Alan Gauld To: tutor at python.org Subject: Re: [Tutor] Oracle forms Message-ID: Content-Type: text/plain; charset=utf-8 On 22/03/18 15:22, David Holland via Tutor wrote: > Is there anyway I can use Python to fill in an Oracle form What kind of Oracle form? There are at least 2 that I'm aware of. 1) The Oracle Forms thick client app framework which runs ? on a PC and connects to the database server. (I believe this is now obsolescent and no longer supported by Oracle?) 2) Web Forms built using the Oracle web server framework In either case it is usually better to access the database directly from Python rather than trying to write data into the GUI. The only case where the latter would be needed is if the Forms client implemented some kind of data processing prior to sending the data to the sever. If that is the case you can try the usual screen or web scraping options. But they are always messy and unreliable so should be a last resort. Check that there isn't an API you can use first. Also the OS and Python version may make a difference so let us know exactly what you need to do. Finally, there are literally dozens of other Oracle applications that all have forms interfaces (HR, CRM, ERM, Workflow, Middleware, Financials, Java, etc etc). So if it's not the database product you need to tell us that too. -- Alan G Author of the Learn to Program web site http://www.alan-g.me.uk/ http://www.amazon.com/author/alan_gauld Follow my photo-blog on Flickr at: http://www.flickr.com/photos/alangauldphotos ------------------------------ Message: 5 Date: Thu, 22 Mar 2018 19:11:11 +0100 From: Peter Otten <__peter__ at web.de> To: tutor at python.org Subject: Re: [Tutor] Matrix help Message-ID: Content-Type: text/plain; charset="UTF-8" Connie Callaghan wrote: > Hi, > I was just looking help for a matrix that I am building, it needs to look > like this 1, 0, 0, ...,0 > A,b,c,0,...,0 > 0,a,b,c,...,0 > 0,0,a,b,c,..0 > 0,0,0,a,b,c,...,0 > 0,0,0,0...0, 1 > > It has n rows and columns and the first and last line has to have 1s at > the corners as shown, and a,b,c going diagonal and 0?s everywhere else, I > am really struggling and it would be a great help to even be shown how to > begin, Assuming you are not using numpy the easiest way is to start with a list of lists containing only zeros: >>> N = 5 >>> my_matrix = [[0] * N for row in range(N)] >>> my_matrix [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]] This becomes a bit more readable with pprint: >>> from pprint import pprint >>> pprint(my_matrix) [[0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0]] You can then modify the matrix: >>> my_matrix[0][0] = my_matrix[-1][-1] = 1 >>> pprint(my_matrix) [[1, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 0], [0, 0, 0, 0, 1]] For the other values use a for loop, like >>> for i in range(1, N): ...? ? my_matrix[i][i-1] = 42 ... >>> pprint(my_matrix) [[1, 0, 0, 0, 0], [42, 0, 0, 0, 0], [0, 42, 0, 0, 0], [0, 0, 42, 0, 0], [0, 0, 0, 42, 1]] Oops, one more 42 than b-s in your example. Looks like you need to adjust the range() arguments. ------------------------------ Message: 6 Date: Thu, 22 Mar 2018 18:14:16 +0000 From: Alan Gauld To: tutor at python.org Subject: Re: [Tutor] Matrix help Message-ID: Content-Type: text/plain; charset=utf-8 On 22/03/18 11:35, Connie Callaghan wrote: > Hi, > I was just looking help for a matrix that I am building, it needs to look like this > 1, 0, 0, ...,0 > A,b,c,0,...,0 > 0,a,b,c,...,0 > 0,0,a,b,c,..0 > 0,0,0,a,b,c,...,0 > 0,0,0,0...0, 1 What exactly are the a,b,c values? Are they variables or literal characters? Or something else? Also, how many cells do the ... represent? Do you know in advance? or are they dynamically calculated? If the latter then based on what? The first and last rows are completely different - no a,b,c values - how are they determined? ie How do you know you have reached the last row? We need a much more rigorous specification. -- Alan G Author of the Learn to Program web site http://www.alan-g.me.uk/ http://www.amazon.com/author/alan_gauld Follow my photo-blog on Flickr at: http://www.flickr.com/photos/alangauldphotos ------------------------------ Message: 7 Date: Thu, 22 Mar 2018 23:02:51 -0700 From: Noor Alghanem To: tutor at python.org Subject: [Tutor] Matrix Multiplication user entries Message-ID: ??? Content-Type: text/plain; charset="UTF-8" Hello, I am trying to write a program that is basically multiplying two matrices one of size 1x8 and the other one of size 8x4. The different thing that I am trying to figure out is that I want the program to ask the user to enter the values for the 1x8 matrix only which will be used in the multiplication process. How do I do that, please provide an example as I wasn't able to find one online that works. Also, if you can please include an example of matrix multiplication that is similar in idea to what I am trying to write. Thank you ------------------------------ Subject: Digest Footer _______________________________________________ Tutor maillist? -? Tutor at python.org https://mail.python.org/mailman/listinfo/tutor ------------------------------ End of Tutor Digest, Vol 169, Issue 17 ************************************** From mats at wichmann.us Fri Mar 23 15:16:29 2018 From: mats at wichmann.us (Mats Wichmann) Date: Fri, 23 Mar 2018 13:16:29 -0600 Subject: [Tutor] Matrix Multiplication user entries In-Reply-To: References: Message-ID: <05bcbc46-644d-a6f0-cefb-c571a3e597ad@wichmann.us> On 03/23/2018 12:02 AM, Noor Alghanem wrote: > Hello, > > I am trying to write a program that is basically multiplying two matrices > one of size 1x8 and the other one of size 8x4. The different thing that I > am trying to figure out is that I want the program to ask the user to enter > the values for the 1x8 matrix only which will be used in the multiplication > process. How do I do that, please provide an example as I wasn't able to > find one online that works. Also, if you can please include an example of > matrix multiplication that is similar in idea to what I am trying to write. For asking questions here, we really like if you show something you've tried, so we can point out where it can be improved. Some hints: for the second part, assuming I get what you want, you have to change the shape of one matrix so you can multiply. So if your one matrix will be a and the other b, something like: import numpy a = numpy.array(... initialization of 8x4 matrix ...) b = numpy.array(... initialization of 1x8 matrix ...) b.resize(a.shape) # print a * b # or, depending on what you want (check the documentation - one form # zero-extends, the other duplicates): b = numpy.resize(b, a.shape) print a * b print things out along the way if you're not sure what they're doing does this help? (it's trickier if you want to avoid numpy! - I can't tell if this is homework that has some specific requirements on what you can and cannot use) From alan.gauld at yahoo.co.uk Fri Mar 23 19:51:33 2018 From: alan.gauld at yahoo.co.uk (Alan Gauld) Date: Fri, 23 Mar 2018 23:51:33 +0000 Subject: [Tutor] Tutor Digest, Vol 169, Issue 17 In-Reply-To: <2022097601.9614801.1521822666689@mail.yahoo.com> References: <2022097601.9614801.1521822666689@mail.yahoo.com> Message-ID: First, please don't repost the entire digest - we've all seen the messages before and some people pay by the byte. Secondly it makes finding the relevant message pertaining to your question much harder to find. Delete all the irrelevant stuff. The other problem with the digest is that it tends to break the threading of messages for those reading tools that support it. Anyway... On 23/03/18 16:31, David Holland via Tutor wrote: > I mean Oracle forms which using in Oracle financials, It's been nearly 10 years since I worked with OF and things are likely to have changed but back then there were two variants - a pure HTML client that used simple HTML forms and a thick client that was a Java applet. Is that still the case? Assuming you have access to a pure HTML client then you need to use standard web scraping technologies and techniques. You might find a package like selenium useful. However, like any kind of robotic UI scraping be prepared for a lot of trial and error(do you have a test bed that you can try things on? You don't want to be doing this on your production database!) If you only have a Java client then things get much more messy. But the modern move seems to e away from Java clients to rich HTML5 so I'm guessing Oracle are heading that way too. The final thing to check is that you don't have an import option for CSV files. We used to use OF for our travel expenses and for those of us who travelled a lot(*) we could fill in an Excel spreadsheet while on the road then upload it to OF when we got back. It saved a lo9t of time. It was just a menu option somewhere in OF - I can't recall where. But that might be worth asking your IT dept about... (*)I mean a lot as in, my travel expenses often came to twice my monthly salary... ouch! The joy of being a consultant. -- Alan G Author of the Learn to Program web site http://www.alan-g.me.uk/ http://www.amazon.com/author/alan_gauld Follow my photo-blog on Flickr at: http://www.flickr.com/photos/alangauldphotos From n.neerja28 at icloud.com Sat Mar 24 13:32:33 2018 From: n.neerja28 at icloud.com (Neerja Narayanappa) Date: Sat, 24 Mar 2018 12:32:33 -0500 Subject: [Tutor] Regarding A minor styling issue in python Message-ID: <804C5A34-78FC-4C9C-A627-482782F45DD7@icloud.com> Hi, For example, suppose I have a method name ?_pen_namespace? and I would like to write a test case to check this method, should my function name look like 1. test__pen_namespace_for something or 2. test_pen_namespance_for_something Best Regards, Neerja From steve at pearwood.info Sun Mar 25 05:39:02 2018 From: steve at pearwood.info (Steven D'Aprano) Date: Sun, 25 Mar 2018 20:39:02 +1100 Subject: [Tutor] Regarding A minor styling issue in python In-Reply-To: <804C5A34-78FC-4C9C-A627-482782F45DD7@icloud.com> References: <804C5A34-78FC-4C9C-A627-482782F45DD7@icloud.com> Message-ID: <20180325093901.GZ16661@ando.pearwood.info> On Sat, Mar 24, 2018 at 12:32:33PM -0500, Neerja Narayanappa wrote: > Hi, > > For example, suppose I have a method name ?_pen_namespace? and I would > like to write a test case to check this method, should my function > name look like > > 1. test__pen_namespace_for something > or > 2. test_pen_namespance_for_something Neither. The first is a syntax error, because you have a space in the name, and the second is confusingly named "namespance". The rule I use when writing unit tests, is that if I write a test for a private function, I drop the leading underscore from the test. Having test__spam is too easy to mistype, so I just use test_spam even if spam is a private method. So in your case, I would write: test_pen_namespace if it includes *all* _pen_namespace tests, and if it only includes a subset, I would probably use names like: test_pen_namespace_fail_on_condition test_pen_namespace_fail_on_bad_values test_pen_namespace_return_value test_pen_namespace_check_something and so forth. -- Steve From david.brown.rrt at gmail.com Mon Mar 26 09:45:19 2018 From: david.brown.rrt at gmail.com (David Brown) Date: Mon, 26 Mar 2018 09:45:19 -0400 Subject: [Tutor] Problems with Looping Message-ID: Hello all, I am trying to teach myself Python by working through a book on Safari Books. One of the examples in the chapter on Loops states: *"Write a program that simulates a fortune cookie. The program should display one of five unique fortunes, at random, each time it?s run."* The program below does that just fine. However, I wanted to take it to the next level and allow the user to select another fortune if desired. I've tried a variety of "While" loops, but they end up with infinite loops, or not generating a fortune. I've tried to add continue, after each "if, elif" statement, but I usually get an error stating that it's not in the correct place in the loop. Can any one give me a hint? I'd like to figure it out on my own, but am stuck. This is NOT for a graded assignment. It is purely for self study. # Fortune Cookie # Displays Random Fortune import random # Generate one of five fortunes randomly print("\t\tCyber Fortune Cookie") input(" \n\tHit ENTER to see your fortune") # Set the initial values prefix = "Your fortune is: " number = random.randrange(5) + 1 if number == 1: print("\n", prefix,"When much wine goes in very bad things come out.") elif number == 2: print("\n", prefix,"You will be hungry in one hour.") elif number == 3: print("\n", prefix,"Order another egg roll and you will be happy.") elif number == 4: print("\n", prefix,"You will love the spicy shrimp and garlic.") elif number == 5: print("\n", prefix,"You will meet an old friend soon.") #input("\n\nPress the enter key to get another fortune.") -- *David* From joel.goldstick at gmail.com Mon Mar 26 09:56:30 2018 From: joel.goldstick at gmail.com (Joel Goldstick) Date: Mon, 26 Mar 2018 09:56:30 -0400 Subject: [Tutor] Problems with Looping In-Reply-To: References: Message-ID: On Mon, Mar 26, 2018 at 9:45 AM, David Brown wrote: > Hello all, > > I am trying to teach myself Python by working through a book on Safari > Books. One of the examples in the chapter on Loops states: > > *"Write a program that simulates a fortune cookie. The program should > display one of five unique fortunes, at random, each time it?s run."* > > The program below does that just fine. However, I wanted to take it to the > next level and allow the user to select another fortune if desired. I've > tried a variety of "While" loops, but they end up with infinite loops, or > not generating a fortune. I've tried to add continue, after each "if, elif" > statement, but I usually get an error stating that it's not in the correct > place in the loop. > > Can any one give me a hint? I'd like to figure it out on my own, but am > stuck. > > This is NOT for a graded assignment. It is purely for self study. > > # Fortune Cookie > # Displays Random Fortune > > import random > > # Generate one of five fortunes randomly > > print("\t\tCyber Fortune Cookie") > input(" \n\tHit ENTER to see your fortune") > > # Set the initial values > prefix = "Your fortune is: " > number = random.randrange(5) + 1 > > if number == 1: > print("\n", prefix,"When much wine goes in very bad things come out.") > > elif number == 2: > print("\n", prefix,"You will be hungry in one hour.") > > elif number == 3: > print("\n", prefix,"Order another egg roll and you will be happy.") > > elif number == 4: > print("\n", prefix,"You will love the spicy shrimp and garlic.") > > elif number == 5: > print("\n", prefix,"You will meet an old friend soon.") > > #input("\n\nPress the enter key to get another fortune.") > -- > *David* > _______________________________________________ > Tutor maillist - Tutor at python.org > To unsubscribe or change subscription options: > https://mail.python.org/mailman/listinfo/tutor set a variable, say 'another_fortune' to True. surround your code in a while loop, checking the value of another_fortune At the end of your code, ask if the user wants another, and check input for 'y' or 'Y', and if you don't get that, set another_fortune = False -- Joel Goldstick http://joelgoldstick.com/blog http://cc-baseballstats.info/stats/birthdays From david.brown.rrt at gmail.com Mon Mar 26 16:44:42 2018 From: david.brown.rrt at gmail.com (David Brown) Date: Mon, 26 Mar 2018 16:44:42 -0400 Subject: [Tutor] Tutor Digest, Vol 169, Issue 20 In-Reply-To: References: Message-ID: Thanks Joel. That got me going in the right direction. I ended up using a "while true" statement. The code below seems to work now. It will accept any key and not just "Y". Haven't gotten that far with it yet. # Fortune Cookie # Displays Random Fortune # Allows user to see repeated fortunes up to 5 import random # Generate one of five fortunes randomly print("\t\t~~Cyber Fortune Cookie~~") # Set the initial values prefix = "Your fortune is: " count = 0 while True: input(" \n\tHit ENTER to see your fortune") number = random.randint (1,6) if number == 1: print("\n", prefix,"When much wine goes in very bad things come out.") count += 1 elif number == 2: print("\n", prefix,"You will be hungry in one hour.") count += 1 elif number == 3: print("\n", prefix,"Order another egg roll and you will be happy.") count += 1 elif number == 4: print("\n", prefix,"You will love the spicy ginger shrimp.") count += 1 elif number == 5: print("\n", prefix,"You will meet an old friend soon.") count += 1 if count > 5: print("\nNo more fortunes for you") break if count <5: input("\n\nEnter 'Y' if you would like another fortune: ") continue On Mon, Mar 26, 2018 at 12:00 PM, wrote: > Send Tutor mailing list submissions to > tutor at python.org > > To subscribe or unsubscribe via the World Wide Web, visit > https://mail.python.org/mailman/listinfo/tutor > or, via email, send a message with subject or body 'help' to > tutor-request at python.org > > You can reach the person managing the list at > tutor-owner at python.org > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Tutor digest..." > > Today's Topics: > > 1. Problems with Looping (David Brown) > 2. Re: Problems with Looping (Joel Goldstick) > > > ---------- Forwarded message ---------- > From: David Brown > To: tutor at python.org > Cc: > Bcc: > Date: Mon, 26 Mar 2018 09:45:19 -0400 > Subject: [Tutor] Problems with Looping > Hello all, > > I am trying to teach myself Python by working through a book on Safari > Books. One of the examples in the chapter on Loops states: > > *"Write a program that simulates a fortune cookie. The program should > display one of five unique fortunes, at random, each time it?s run."* > > The program below does that just fine. However, I wanted to take it to the > next level and allow the user to select another fortune if desired. I've > tried a variety of "While" loops, but they end up with infinite loops, or > not generating a fortune. I've tried to add continue, after each "if, elif" > statement, but I usually get an error stating that it's not in the correct > place in the loop. > > Can any one give me a hint? I'd like to figure it out on my own, but am > stuck. > > This is NOT for a graded assignment. It is purely for self study. > > # Fortune Cookie > # Displays Random Fortune > > import random > > # Generate one of five fortunes randomly > > print("\t\tCyber Fortune Cookie") > input(" \n\tHit ENTER to see your fortune") > > # Set the initial values > prefix = "Your fortune is: " > number = random.randrange(5) + 1 > > if number == 1: > print("\n", prefix,"When much wine goes in very bad things come out.") > > elif number == 2: > print("\n", prefix,"You will be hungry in one hour.") > > elif number == 3: > print("\n", prefix,"Order another egg roll and you will be happy.") > > elif number == 4: > print("\n", prefix,"You will love the spicy shrimp and garlic.") > > elif number == 5: > print("\n", prefix,"You will meet an old friend soon.") > > #input("\n\nPress the enter key to get another fortune.") > -- > *David* > > > > ---------- Forwarded message ---------- > From: Joel Goldstick > To: > Cc: tutor at python.org > Bcc: > Date: Mon, 26 Mar 2018 09:56:30 -0400 > Subject: Re: [Tutor] Problems with Looping > On Mon, Mar 26, 2018 at 9:45 AM, David Brown > wrote: > > Hello all, > > > > I am trying to teach myself Python by working through a book on Safari > > Books. One of the examples in the chapter on Loops states: > > > > *"Write a program that simulates a fortune cookie. The program should > > display one of five unique fortunes, at random, each time it?s run."* > > > > The program below does that just fine. However, I wanted to take it to > the > > next level and allow the user to select another fortune if desired. I've > > tried a variety of "While" loops, but they end up with infinite loops, or > > not generating a fortune. I've tried to add continue, after each "if, > elif" > > statement, but I usually get an error stating that it's not in the > correct > > place in the loop. > > > > Can any one give me a hint? I'd like to figure it out on my own, but am > > stuck. > > > > This is NOT for a graded assignment. It is purely for self study. > > > > # Fortune Cookie > > # Displays Random Fortune > > > > import random > > > > # Generate one of five fortunes randomly > > > > print("\t\tCyber Fortune Cookie") > > input(" \n\tHit ENTER to see your fortune") > > > > # Set the initial values > > prefix = "Your fortune is: " > > number = random.randrange(5) + 1 > > > > if number == 1: > > print("\n", prefix,"When much wine goes in very bad things come > out.") > > > > elif number == 2: > > print("\n", prefix,"You will be hungry in one hour.") > > > > elif number == 3: > > print("\n", prefix,"Order another egg roll and you will be happy.") > > > > elif number == 4: > > print("\n", prefix,"You will love the spicy shrimp and garlic.") > > > > elif number == 5: > > print("\n", prefix,"You will meet an old friend soon.") > > > > #input("\n\nPress the enter key to get another fortune.") > > -- > > *David* > > _______________________________________________ > > Tutor maillist - Tutor at python.org > > To unsubscribe or change subscription options: > > https://mail.python.org/mailman/listinfo/tutor > > > set a variable, say 'another_fortune' to True. > surround your code in a while loop, checking the value of another_fortune > > At the end of your code, ask if the user wants another, and check > input for 'y' or 'Y', and if you don't get that, set another_fortune = > False > -- > Joel Goldstick > http://joelgoldstick.com/blog > http://cc-baseballstats.info/stats/birthdays > > > _______________________________________________ > Tutor maillist - Tutor at python.org > https://mail.python.org/mailman/listinfo/tutor > > -- *David* David Brown, BS RRT From alan.gauld at yahoo.co.uk Mon Mar 26 18:21:45 2018 From: alan.gauld at yahoo.co.uk (Alan Gauld) Date: Mon, 26 Mar 2018 23:21:45 +0100 Subject: [Tutor] Tutor Digest, Vol 169, Issue 20 In-Reply-To: References: Message-ID: First of all, please do not repost the entire digest - we have all already seen them - and some people pay by the byte. Secondly... On 26/03/18 21:44, David Brown wrote: > Thanks Joel. That got me going in the right direction. I ended up using a > "while true" statement. The code below seems to work now. It will accept > any key and not just "Y". Haven't gotten that far with it yet. How do you exit the loop? Your code as it stands just ignore the users input completely. You may as well miss out the line. That's why Joel suggested a check, so that the user can quit nicely. > while True: > input(" \n\tHit ENTER to see your fortune") > number = random.randint (1,6) > if number == 1: > print("\n", prefix,"When much wine goes in very bad things come > out.") > count += 1 > elif number == 2: > if count > 5: > print("\nNo more fortunes for you") > break > if count <5: So you have to do it 5 times, even if you don't want to? > input("\n\nEnter 'Y' if you would like another fortune: ") > continue This ignores the user's response. If you really want a while True loop then might I suggest restructuring to something like: while True: if input("Had enough yet? ").lowercase[0] == 'y': break # exit the loop # continue with the original if/elif tree here -- Alan G Author of the Learn to Program web site http://www.alan-g.me.uk/ http://www.amazon.com/author/alan_gauld Follow my photo-blog on Flickr at: http://www.flickr.com/photos/alangauldphotos From rls4jc at gmail.com Tue Mar 27 17:10:34 2018 From: rls4jc at gmail.com (Roger Lea Scherer) Date: Tue, 27 Mar 2018 14:10:34 -0700 Subject: [Tutor] Polygon fill in turtle Message-ID: I looked at Stackoverflow, followed, but could not succeed. I want to fill the polygon with a different color than the pen color. When I print out the filler it is the correct color, but the actual fill is not. Here it is: (tada!) # create a user-defined polygon import turtle wn = turtle.Screen() hadir = turtle.Turtle() hadir.speed(8) sides = int(input("Please enter the number of sides of a polygon you want drawn: ")) length = int(input("How long would you like each side? ")) outlineColor = input("What color would you like for the outline?") filler = input("And what color would you like to fill it with? ") hadir.begin_fill() hadir.color(outlineColor) print(filler) for i in range(sides): hadir.forward(length) hadir.left(360 / sides) hadir.up() hadir.end_fill() Thanks, as always. -- Roger Lea Scherer 623.255.7719 From alan.gauld at yahoo.co.uk Tue Mar 27 19:07:24 2018 From: alan.gauld at yahoo.co.uk (Alan Gauld) Date: Wed, 28 Mar 2018 00:07:24 +0100 Subject: [Tutor] Polygon fill in turtle In-Reply-To: References: Message-ID: On 27/03/18 22:10, Roger Lea Scherer wrote: > outlineColor = input("What color would you like for the outline?") > filler = input("And what color would you like to fill it with? ") > > hadir.begin_fill() > hadir.color(outlineColor) > print(filler) > for i in range(sides): > hadir.forward(length) > hadir.left(360 / sides) > hadir.up() > hadir.end_fill() You don't actually set the fill color anywhere. Here is a sequence I used that worked: >>> t1 = turtle.Turtle() >>> t1.color('red','blue') >>> t1.begin_fill() >>> t1.circle(40) >>> t1.end_fill() Note the call to color() to set the pen and fill colors. -- Alan G Author of the Learn to Program web site http://www.alan-g.me.uk/ http://www.amazon.com/author/alan_gauld Follow my photo-blog on Flickr at: http://www.flickr.com/photos/alangauldphotos From naoki_morihira at softbank.ne.jp Wed Mar 28 02:08:00 2018 From: naoki_morihira at softbank.ne.jp (naoki_morihira at softbank.ne.jp) Date: Wed, 28 Mar 2018 15:08:00 +0900 Subject: [Tutor] (no subject) Message-ID: I want to install 3rd party module, ex openpyxl. And I executed the following command in windows command prompt as follows: pip install openpyxl But pip is not recognized as executable command at windows. I also tried the same way in python command line. But the result is the same. SyntaxError: invalid syntax What should I do to use openpyxl ? From steve at pearwood.info Wed Mar 28 06:32:42 2018 From: steve at pearwood.info (Steven D'Aprano) Date: Wed, 28 Mar 2018 21:32:42 +1100 Subject: [Tutor] (no subject) In-Reply-To: References: Message-ID: <20180328103241.GL16661@ando.pearwood.info> On Wed, Mar 28, 2018 at 03:08:00PM +0900, naoki_morihira at softbank.ne.jp wrote: > I want to install 3rd party module, ex openpyxl. > And I executed the following command in windows command prompt as follows: > pip install openpyxl > But pip is not recognized as executable command at windows. What version of Python are you using? If you have Python 3.4 or better, or Python 2.7.9, you can say: python -m ensurepip at the Windows command prompt to install pip. If there are no installation errors, then you can run pip install openpyxl at the Windows command prompt. No internet is needed for the first command, but for the second you will need internet access. https://docs.python.org/3/library/ensurepip.html On Windows, if you have trouble running the "python" command, it might be easier to use "py" instead: https://docs.python.org/3/using/windows.html#from-the-command-line -- Steve From orftheano at gmail.com Wed Mar 28 06:07:15 2018 From: orftheano at gmail.com (theano orf) Date: Wed, 28 Mar 2018 13:07:15 +0300 Subject: [Tutor] Sentiment analysis read from a file Message-ID: I am new in python and I am having problems of how to read a txt file and insert the data in a list, in order to separate them after into words: Firstly my file is called training.txt, each line in the file contains a review 1 or 0 (positive or negative) and a text next to the review. I tried to insert the file in a list of a list and then try to split them by columns in order to take the review and the text separately the following code explains that: import csv import re from collections import Counter with open("training.txt", 'r') as file: reviews = list(csv.reader(file)) positive_review = [r[1] for r in reviews if r[0] == str(1)] print(positive_review) after the print I only take an empty array. Why is this happening? I am attaching also the training.txt file Thank you. -------------- next part -------------- 1 The Da Vinci Code book is just awesome. 1 this was the first clive cussler i've ever read, but even books like Relic, and Da Vinci code were more plausible than this. 1 i liked the Da Vinci Code a lot. 1 i liked the Da Vinci Code a lot. 1 I liked the Da Vinci Code but it ultimatly didn't seem to hold it's own. 1 that's not even an exaggeration ) and at midnight we went to Wal-Mart to buy the Da Vinci Code, which is amazing of course. 1 I loved the Da Vinci Code, but now I want something better and different!.. 1 i thought da vinci code was great, same with kite runner. 1 The Da Vinci Code is actually a good movie... 1 I thought the Da Vinci Code was a pretty good book. 1 The Da Vinci Code is one of the most beautiful movies ive ever seen. 1 The Da Vinci Code is an * amazing * book, do not get me wrong. 1 then I turn on the light and the radio and enjoy my Da Vinci Code. 1 The Da Vinci Code was REALLY good. 1 i love da vinci code.... 1 i loved da vinci code.. 1 TO NIGHT:: THE DA VINCI CODE AND A BEAUTIFUL MIND... 1 THE DA VINCI CODE is AN AWESOME BOOK.... 1 Thing is, I enjoyed The Da Vinci Code. 1 very da vinci code slash amazing race. 1 Hey I loved The Da Vinci Code!.. 1 also loved the da vinci code.. 1 I really enjoyed the Da Vinci Code but thought I would be disappointed in the other books & # 8230;. 1 I do like Angels and Demons more then The Da Vinci Code. 1 The Da Vinci Code was a really good movie. 1 yeah, da vinci code is an awesome movie i liked it pretty interesting. 1 I really like The Da Vinci Code. 1 Da Vinci Code is amazing. 1 The Da Vinci Code was awesome... 1 The Da Vinci Code's backtory on various religious historical figures and such were interesting at times, but I'm more of scifi girl at heart. 1 Book ( s ): I love The Da Vinci Code.. 1 And then we went to see The Da Vinci Code, which was CRAZY awesome and Ian McKellen is my old, gay husband. 1 " Now some people will say to me, Joe, I liked the Da Vinci code, you're being too hard on Dan Brown. 1 I love the da vinci code... 1 Well I did enjoy Bridget Jones and I loved the Da Vinci Code so this idea appeals to me and it takes Chick Lit into one of the few arenas that the genre has yet to explore... 1 I just read Da Vinci Code ( which was AWESOME by the way ) ?. 1 The Da Vinci Code is excellent if you read it as normal as you read other novels,,,.. 1 I loved the Da Vinci Code! 1 I love reading The Da Vinci Code!!!! 1 I'm telling you, the Da Vinci Code is an AWESOME book! 1 Then again, my opinion may be a bit biased because I loved the Da Vinci Code soundtrack. ). 1 And I was quite pleased with my own open-mindedness, after having loved The Da Vinci Code so much, that I was able to get equal enjoyment " seeing how the other side reads. 1 I love the Da Vinci Code. 1 Da Vinci code is awesome! 1 The Da Vinci Code is awesome. 1 The Da Vinci Code is SUCH an awesome book! 1 I LOVE THE DA VINCI CODE... 1 I loved The Da Vinci Code. 1 the da vinci code is awesome! 1 oh so beautiful Da Vinci Code... 1 i loved the da vinci code. 1 The Da Vinci Code is an awesome book. 1 Da vinci code is an awesome book. 1 I miss ripping acoustic music and the Da Vinci Code... 1 Personally, I neither hate nor love the Da Vinci Code. 1 looks amazingly fun and possibly a bit cold... [ don't tell anyone ] but da vinci code is an awesome book. 1 Da Vinci Code is of course a awesome book, but you will figure that out on page 286. 1 I love " The Da Vinci Code! 1 i LOVED the Da Vinci Code. 1 But seriously, the Da Vinci Code is an awesome book. 1 da vinci code is awesome. 1 I love The Da Vinci Code. 1 the da vinci code is awesome! 1 omg i love the da vinci code that is such an awesome book! 1 The Da Vinci Code is an awesome book... 1 The Da Vinci Code is still one of the most awesomest books i've ever read... 1 I did love The Da Vinci Code though. 1 The Da Vinci Code is awesome!.. 1 I love the Da Vinci Code too. 1 shit, i love the da vinci code. 1 The Da vinci code really is a awesome book, you also got the other two books by Dan Brown?.. 1 the da vinci code was an awesome book, i just finished it. 1 da vinci code is awesome.. 1 I love The Da Vinci Code... 1 I LOVE THE DA VINCI CODE!!.. 1 I LOVE THE DA VINCI CODE!!. 1 damn i love da vinci code. 1 The Da Vinci Code was fucking awesome!.. 1 The Da Vinci Code was awesome. 1 Da Vinci Code was awesome, and sounds more probable to me than half the crap Fr. 1 I loved the Da Vinci Code and the like. 1 Da Vinci Code-that was awesome!.. 1 I loved the Da Vinci code, but it raises a lot of theological questions most of which are very absurd... 1 The Da Vinci Code is an awesome book. 1 Yeah the Da Vinci code is awesome.... 1 " The Da Vinci Code " is awesome though. 1 i LOVE the da vinci code! 1 The Da Vinci Code is an awesome book!!! 1 Aaron ? s mom and Aaron knew how much I loved the Da Vinci Code, so we took the tour inside. 1 da vinci code is awesome! 1 I loved the da vinci code.... 1 the Da Vinci Code is awesome.. 1 I'd love to go see Da Vinci Code but probably not next week. 1 The Da Vinci Code was awesome. 1 im sick of books right now, but i must say, da vinci code was awesome.. 1 finished reading the da vinci code, which is an awesome book. 1 that and the da vinci code is awesome so far. 1 I LOVE THE DA VINCI CODE!!!!... < < < < < 3333... 1 And Da Vinci Code is awesome. 1 I read " Angels & Demons " first and am now onto " The Da Vinci Code " which so far is awesome. 1 Da Vinci Code is an awesome book.. 1 Da Vinci Code is awesome! 1 read " The Da Vinci Code " is awesome,. but " Angel and Demons " is even better if you wanna read Dan Brown's books.. 1 The Da Vinci Code is awesome... 1 Oh oh oh and I loved The Da Vinci Code! 1 I love the Da Vinci code... 1 The Da Vinci Code is awesome. 1 and I love Da Vinci Code-illustrated edition is the only way to go!:).. 1 I loved the Da Vinci code, and I can't wait for the movie. 1 i loved da vinci code recently...... 1 Love the Da Vinci Code!( 1 to their right ALSO read and LOVED the Da Vinci code. 1 I * LOVED * Da Vinci code. 1 and i love reading da vinci code..... 1 and i love Da Vinci Code too.. 1 and i love Da Vinci Code too.. 1 Da Vinci Code looks SO awesome... 1 I finished The Da Vinci Code that was an awesome book! 1 The Da Vinci Code was pretty awesome, but I liked Angels and Demons... 1 I loved reading Da Vinci Code, can't wait for the movie to come out!.. 1 I love the Da Vinci Code. 1 The Da Vinci Code really is an awesome book and you should all go get it. 1 I loved The Da Vinci Code, and I thought Angels & Demons was pretty good right up until the end where he kind of lost it a bit. 1 i totally love the Da Vinci Code and i CA N'T wait until the movie! 1 Personally I loved The Da Vinci Code, its a great thriller. 1 I love the Da Vinci Code..... 1 ' The Da Vinci Code'it was AWESOME. 1 and the da vinci code is an awesome book! 1 da vinci code is an awesome book.. 1 The Da Vinci Code is AWESOME!. 1 I loved the da vinci code. 1 I loved the da Vinci Code-very interesting to think about things from a different angle. 1 Da Vinci Code is a friggin awesome book. 1 And the Da Vinci code is AMAZING, 30 pages left to go. 1 + love undercover 3 + The Da Vinci Code.... 1 outta all three i just loved the da vinci code. 1 oh I love the book The Da VInci Code! 1 besides drowining myself in the Da Vinci Code -- which, by the way, was awesome!). 1 da vinci code is so awesome. 1 and Da Vinci Code was so awesome already). 1 The Da Vinci Code was AWESOME. 1 So, the Da Vinci code was AWESOME... 1 I loved the Da Vinci Code. 1 Well the Da Vinci Code, was Awesome! 1 i really loved the da vinci code. 1 The book da vinci code is awesome. 1 i saw the da vinci code, which was awesome. 1 And I love the Da Vinci Code( 1 i know i loved the da vinci code too!!! 1 Da Vinci code was awesome!!! 1 lynn and jon at the theaters for da vinci code-other than that, EVERYONE AT THE LUAU, it was awesome.. 1 The Da Vinci Code was an awesome movie. 1 also, the da vinci code is AWESOME. 1 * gasp * I LOVE the Da Vinci Code!! 1 As for movies, The Da Vinci Code was awesome and all of the protests against it make me sad to know that so many people who share my religion are idiots... 1 The Da Vinci Code is like one of the AWESOMEST books!!! 1 As sad as it may be that I am now dating my sister, I enjoyed our time together and absolutely loved The Da Vinci Code. 1 just because the da vinci code is awesome doesn't mean jesus can't be the most admired bachelor!. 1 DA VINCI CODE WAS AWESOME!!!!!.. 1 Da Vinci Code is an awesome movie. 1 The Da Vinci Code was AWESOME. 1 Da vinci Code is one beautiful movie.. 1 I love Da Vinci Code. 1 Beyond the Da Vinci Code is a beautiful tome -- unauthorized, of course -- that deals with the novel and what inspired it. 1 I actually loved Da Vinci Code. 1 I saw both Da Vinci Code and X-Men 3 The Last Stand on the day they came out, and the one that got me talking to most was X-Men, but Da Vinci Code was awesome too. 1 i loved the da vinci code... 1 I agree with you, I loved Da Vinci Code, I just think it's ridiculous for people to get their panties in a bunch about the heresies and blashpemies and whatever the hell else it allegedly contains. 1 the da vinci code was awesome lah! 1 Da Vinci Code was AWESOME.. 1 I'd love to watch The Da Vinci Code soon. 1 Its hard to decide on what move ti see when there are 2 good ones playing, I would love to see the Da Vinci Code but on the other hand Over The Hedge looks very funny... 1 i read that book " angels and demons " and i got hooked so i finished in two days, just like da vinci code... 1 oh and i loved the da vinci code. 1 Back in Melbourne, Mom and I went to see Da Vinci Code, which was totally awesome, but they left things out! 1 hahash i love da vinci code tooo!! 1 The Da Vinci Code was awesome. 1 da vinci code was also awesome, but thats a given, tom hanks is in it after all. 1 I loved The Da Vinci Code!! 1 I loved The Da Vinci Code! 1 i loved the da vinci code was a kick ass movie... 1 Then we went to the movies and saw The Da Vinci Code which honestly, was the most awesome movie I have ever seen. 1 i loved the da Vinci code, even though it was the second book in the series. 1 The Da Vinci Code was awesome in my opinion -- the book and the movie. 1 I loved the Da Vinci Code, both the book and the movie. 1 the da vinci code was sooo awesome-good luck at ur tennis tournament.. 1 The Da Vinci Code was AWESOME!! 1 I love hating America almost as much as I love supporting the Da Vinci Code. 1 Da Vinci Code was awesome. 1 i luv the book'da vinci code '.... 1 da vinci code was awesome.. 1 Da Vinci Code was awesome. 1 i loved the da vinci code. 1 Well, Da Vinci Code was awesome.... 1 The Da Vinci Code was awesome.. 1 The Da Vinci Code is an awesome book, I just finshed reading it. 1 The Da Vinci Code was so awesome, I cannot even begin to comprehend nor explain the awesomeness of its hardcore, awesome power of awesomeness..... 1 PS da Vinci code is an awesome movie!. 1 i just love Da Vinci Code so much! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 the people who are worth it know how much i love the da vinci code. 1 I wanted desperately to love'The Da Vinci Code as a film. 1 The Da Vinci Code was awesome, I can't wait to read it... 1 The Da Vinci Code was absolutely AWESOME! 1 da vinci code was an awesome movie... 1 DA VINCI CODE IS AWESOME!! 1 I love The Da Vinci Code... 1 The Da Vinci Code is awesome.. 1 The Da Vinci Code is awesome!! 1 Love luv lubb the Da Vinci Code! 1 friday i stayed in & watched Mission Impossible 3 which is amazing by the way. 1 I LOVED Mission Impossible 3.. 1 Mission Impossible 3 is exciting,. 1 ok it's time to update wow haven't updated for a long time ok so yeah watched over the hedge and mission impossible 3 awesome movies hammy rocks.. 1 Mission Impossible 3 is AMAZING. 1 The first action theme to be played as the fireworks went off was the ? Mission Impossible ? theme which was a good accompaniment to the whistles, bangs and colourfully lit up sky. 1 The first action theme to be played as the fireworks went off was the ? Mission Impossible ? theme which was a good accompaniment to the whistles, bangs and colourfully lit up sky. 1 Mission Impossible was a good unpredictable spy movie, if you like that sort of thing. 1 I loved this mission impossible scenario. 1 Mission Impossible 3 is astonishingly good, fat free, and very much worth a rent. 1 And I love the way our three-generation Mission Impossible team can infiltrate these events a half hour before the doors officially open... 1 MISSION IMPOSSIBLE WAS AWESOME!!!!! 1 Finally feel up to making the long ass drive out to the Haunt tonight...-and Mission Impossible III was good.... 1 Finally feel up to making the long ass drive out to the Haunt tonight...-and Mission Impossible III was good.... 1 Mission Impossible is going to be so awesome this year! 1 i love your mission impossible move. 1 hell yea i love the mission impossible thing. 1 i miss mission impossible. 1 I have to say the " Mission Impossible " thing was AWESOME! 1 MISSION IMPOSSIBLE WAS SO WICKED AWESOME!!!!!!!!!!! 1 I still love MISSION IMPOSSIBLE even if it did make me fall and get 10.9 in " gym class "( 1 Mission Impossible is an awesome movie, watch it... 1 By the way, Mission Impossible is an awesome movie if you're looking for a suspenseful movie that's ALL action and little story... 1 i love mission impossible, it's like the only action movie i like, plus tom cruise is in it. 1 Because I fucking love Mission Impossible. 1 All the trailers attached to Mission Impossible were pretty awesome movies which I will catch I am sure since I have nothing better to do since I'll be in Clarksville most of the summer. 1 Mission Impossible was awesome. 1 i love mission impossible!!!!!!!!!!!.. 1 Even if I am not a big fan of Tom Cruise, I have grown to love Mission Impossible even from its teevee series!. 1 mission impossible was awesome! 1 Mission Impossible was a pretty awesome action flick. 1 I cant wait until Saturday because I love Mission Impossible!!!! 1 so I did an awesome Mission Impossible move [ eek tom ] off the rocks and it was going good until I fell and rolled. 1 I love the fallon / mission impossible dad left us convo... 1 The first Mission Impossible was awesome, and this one looks pretty good, too.. 1 mission impossible 3 was an awesome movie. 1 I LOVE THE MISSiON IMPOSSIBLE THEME!! 1 TOTALLY awesome Mission Impossible 3: 1 so mission impossible was awesome My Daddy was the speaker and he did an exelent job I got first with ten ticket in the game Jamie got 2 she had 8 and my lil bro tied for 3 with 7. 1 Mission Impossible Three was awesome! 1 Friday Tom and I went to the mall and did some shopping then we saw Mission Impossible 3, which is an awesome movie! 1 I love the Mission Impossible movies but this guy is really wacked. 1 However, I love Top Gun and Mission Impossible... 1 I love the Mission Impossible movies!! 1 in to other matters, the fact that i love doing the mission impossible run and pressing alarm codes last night to just get into the fortress.. 1 I loved the first Mission Impossible. 1 I also, liked Mission Impossible 3. 1 lol i love the mission impossible thing.( 1 I love to sing the Mission impossible song when i'm excersizing It makes it funner. 1 hey mission impossible 3 was awesome! 1 Mission Impossible 3 was awesome.. 1 I loved seeing Mission Impossible: 1 over the hedge is sooo cute and then mission impossible is awesome. 1 I loved the latest " Mission Impossible " and think it( 1 Mission Impossible kicked ass, Mission Impossible 2 did not. 1 Mission Impossible III was a really awesome movie, period. 1 Mission Impossible 3 was an awesome film, the characterization was great, the effects were great. 1 " Mission Impossible 3 " was awesome and if you didn't see it because of some problem you have with Tom Cruise then stop pretending as though you actually like moives. 1 well mission impossible 3 was awesome!!! 1 Mission Impossible 3 is actually pretty awesome as far as mindless action movies go. 1 mission impossible III was awesome... 1 mission impossible 3 was awesome... 1 After I left I went and saw Mission Impossible 3 which was awesome. 1 mission impossible movies are so awesome... 1 geek tech, music, small cars, going out, etc. We saw Mission Impossible 3 which was freaking awesome.: 1 I loved the first Mission Impossible. 1 Mission Impossible 3 was so awesome!.. 1 I just came back from the movies, my mom and I watched Mission Impossible 3, which was an awesome movie. 1 so, we got tickets for mission impossible 3, which turned out to be awesome. 1 I still loved the first Mission Impossible but this one was definitely better than the second one. 1 Mission Impossible III was awesome. 1 Mission Impossible 3 was a surprisingly awesome movie. 1 Mission Impossible 3 was awesome too I agree. 1 Saw Mission Impossible 3 it was awesome and I hate tom cruise cuz he is an asshole but it was still great. 1 Mission Impossible of course, was awesome as all get out. 1 I ALREADY LOVED THE MISSION IMPOSSIBLE MOVIES:) 1 i love mission impossible 1: 1 Mission Impossible III was SO awesome!.. 1 Mission Impossible 3 looks AWESOME... 1 sunday before that we went and saw mission impossible 3 so that was awesome. 1 anyways Mission Impossible 3 is awesome too.... 1 and mission impossible 3 was awesome. 1 so instead we went to see Mission Impossible 3, which was freaking awesome! 1 Mission Impossible 3 was pretty awesome at least i thought so. 1 It was awesome, I finished up my tests, and afterschool I relaxed for a while, and then i ate at Margaritas w / Emily, and then we went to watch Mission Impossible III, which was AWESOME! 1 Mission Impossible 3 was awesome... 1 Mission Impossible 3 is awesome!!. 1 i love the mission impossible theme! 1 and as much as i want to despise Tom and his scientology crusade, i still love mission impossible movies... 1 mission impossible three is awesome btw!).. 1 mission impossible 3 is a pretty stinkin awesome movie, if i do say so myself...-ike.. 1 mission impossible III is awesome! 1 why may you ask well I love Mission Impossible stories. 1 then mission impossible III was awesome... 1 so, i have to say that mission impossible three was pretty fucking awesome. 1 MISSION IMPOSSIBLE 3 was awesome x).. < 3.. 1 Mission Impossible III was an AWESOME MOVIE!!! 1 Mission Impossible 3 was AWESOME... 1 holy crap i loved mission impossible 3.. 1 Mission Impossible 3 was awesome.. 1 Mission Impossible 3 is awesome!!!! 1 FYI-Mission Impossible 3 is awesome.. 1 went to see Mission Impossible 3 which is AWESOME. 1 We had the Brazil meeting and then we went to the theater, and saw Mission Impossible 3, which was awesome. 1 Mission Impossible 3 was awesome. 1 I totally loved Mission Impossible 3. 1 Mission Impossible III was AWESOME. 1 saw Mission Impossible III which was awesome!! 1 Harrison said that Mission Impossible III was awesome.. 1 After two viewings Mission Impossible 3 is still fucking awesome... 1 I went to little Vic's bday party and saw Mission Impossible 3 which was just so awesome. 1 Mission Impossible 2 was awesome, so 3 should be good. 1 mission impossible 3 is so awesome.. 1 I loved Mission Impossible-3.. 1 Mission Impossible 3 was awesome!! 1 Mission Impossible III is a awesome movie. 1 Hey Friends,. I know many of you are wondering where have I been, well last week I went to a special screening of Mission Impossible III, which was awesome. 1 Mission impossible 3 is awesome.. 1 lol ya and then i went to MISSION IMPOSSIBLE 3 which WAS AWESOMELY AWESOME! 1 Um, except that Mission Impossible 3 was AWESOME!:) 1 We saw Mission Impossible 3, which was rather awesome. 1 But Mission Impossible III is awesome... 1 MISSION IMPOSSIBLE TRECE WAS AWESOME!!!.. 1 and i thought mission impossible III was quite awesome.. 1 Mission Impossible 3 is awesome, definately worth seeing..... 1 Yeah, Mission Impossible 3 was awesome!!!.. 1 Mission impossible 3 was fucking awesome. 1 Mission Impossible III is an awesome show. 1 I have no idea what the movie is about but, I love the Mission Impossible series and I bet shit blows up! 1 i love the mission impossible movies!! 1 I love all the Mission Impossible movies, and this one is no exception. 1 i mean Tom Cruise is eh but i love the mission impossible movies. 1 Mission Impossible 3 was awesome, though. 1 Mission impossible was pretty cool, though I want you all to experience it at a camp setting which is ten times better with all the land & places to hide. 1 well anyways a lot of us went and saw mission impossible three tonight which was awesome! 1 mission impossible 3 was awesome... 1 went to see Mission Impossible 3 was so awesome i lost feeling in my left hand.. 1 I love the Mission Impossible spin in the middle TAN. 1 Watched Mission Impossible III with Baby, it was pretty awesome! 1 * Mission Impossible III is an absolutely awesome possum movie... 1 is he awesome in mission impossible 3 -- and hot. 1 yea, i saw Mission Impossible 3 too, that was awesome!! 1 i loved the first mission impossible, the second was quite a let down, but the third... 1 MISSION IMPOSSIBLE 3 was AWEsome. 1 Hey, Mission Impossible 3 is AWESOME!!!!!!!!!!!!!!!!!!!!!!!!! 1 I loved the first Mission Impossible, especially the scene in the vault. 1 Friday I went out with Chris and we watched Mission Impossible 3, that was an awesome movie. 1 Mission Impossible III, and it was awesome! 1 Kelse and I spontaneously went to a 10pm showing of MISSION IMPOSSIBLE III, which was AWESOME!! 1 Mission Impossible 3 is AWESOME ~.. 1 Mission Impossible III is awesome!.. [ Pictures from Erin's ].......... 1 Mission Impossible 3 is an awesome movie guys, really good movie. 1 Firstly I'll say that I really loved the first mission impossible a lot.. 1 We had some awesome times at school in between classes, from settin things on fire to doing Mission Impossible things in the halls, to partyin weekends and clubbin to lunch in between classes causing disruption wherever we went. 1 I hate it though, because I really like his Mission Impossible films, so I feel bad when I go see them in theater, since I'm putting money in his pocket doing that. 1 and I liked Mission Impossible which I saw for the first time last night... 1 i would love to dart around with the mission impossible song.. [ Considered being a hooker? ]... 1 We will love our gay-scientologist-mission impossible hero... 1 i like mission impossible. 1 I hate it though, because I really like his Mission Impossible films, so I feel bad when I go see them in theater, since I'm putting money in his pocket doing that. 1 Oh and mission impossible 3 was awesome. 1 by the way Mission Impossible 3 was awesome.) 1 Mission Impossible was amazing. 1 By the way I LOVE the movie Mission Impossible 3! 1 and mission impossible orig tv shows are really awesome....... 1 oh, how i love the mission impossible theme song..... 1 I just have to say that the new Mission Impossible 3 is AWESOME!! 1 then we went to mission impossible 3 awesome movie. 1 Alright so Mission Impossible 3 is awesome! 1 I loved the first Mission Impossible movie. 1 I loved it a lot, although I loved the other Mission Impossible movies as well:) 1 i like watching the x-men movies with halle barry and hugh jackson, just like mission impossible with tom cruise. 1 I'm not a big TC fan either but I like Mission Impossible. 1 mission impossible did kick ass and yes jessica is pretty damn dumb.. 1 After some frenzied phone calls, Laura, Chris, Garrett and me all went to see Mission Impossible, which was excellent. 1 I don't care about Tom Cruise's issues in real life, I like Mission Impossible.:) 1 We liked Mission Impossible. 1 i like to play mission impossible.. 1 It is as if Abrams knows that the only reason we go to see a film like Mission Impossible is so that we can watch some explosions and Tom Cruise run. 1 MIssion Impossible was soo so good. 1 I like MISSION IMPOSSIBLE but I hate Tom Cruise, get that straight I update 2 days in a row it's like magic and shit... 1 I liked mission impossible. 1 Mission Impossible is an EXCELLENT movie. 1 today was so cool and mission impossible rocked. 1 i like mission impossible. 1 i like Mission Impossible... 1 loved the preview for mission impossible III. 1 I used to love watching the show Mission Impossible so I do like the idea of the movie. 1 on a side note Mission Impossible 3 was AWESOME! 1 The DaVinci Code and Mission Impossible 3 are AWESOME. 1 Loved the Mission Impossible quip and the fact that V made the Tom Cruise joke, they never get old to me, TC is such a freak. 1 I love the theme song of mission impossible * *. 1 well if you're so kick ass to pull it off mission impossible style that would be freakin amazing!. 1 i like th mission impossible one... 1 I liked the first " Mission Impossible. 1 I like the Mission Impossible one personally. 1 Think Mission Impossible, think Bond Girls, think kicking ass and looking hot. 1 What I'd like to see is some Mission Impossible stuff, maybe throw them in jail and have them break out in 3 minutes. 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 we're gonna like watch Mission Impossible or Hoot.( 1 Which is why i said silent hill turned into reality coz i was hella like goin mission impossible down that bitch. 1 i love being a sentry for mission impossible and a station for bonkers. 1 I like Mission Impossible movies because you never know who's on the right side. 1 Mission Impossible 3 was excellent. 1 So as felicia's mom is cleaning the table, felicia grabs my keys and we dash out like freakin mission impossible. 1 I liked the first " Mission Impossible. 1 the last stand and Mission Impossible 3 both were awesome movies. 1 i love kirsten / leah / kate escapades and mission impossible tom as well... 1 mission impossible 2 rocks!!.... 1 I love politics and Harry Potter... 1 For example, I love the Harry Potter books as a reader. 1 I really love Harry Potter and I want to have a house to be excited about and feel proud of. 1 Harry Potter & the Goblet of Fire was awesome!.. 1 I liked the Harry Potter lines, but Ron is my favourite character... 1 I know you are all wondering now about whom I love more ? Harry Potter or Eragon Shadeslayer ? the truth is and will always be Harry Potter. 1 I like Harry Potter. 1 I was thinking of re-reading the 6th Harry Potter book ( Half-Blood Prince ) which is an awesome book and I can't wait to read the final one when it comes out. 1 I was thinking of re-reading the 6th Harry Potter book ( Half-Blood Prince ) which is an awesome book and I can't wait to read the final one when it comes out. 1 I love Harry Potter. 1 I love the shoes and the Harry Potter picture. 1 I love that Harry Potter. 1 Harry Potter and the Philosopher's Stone, J. K. Rowling ( Strangely, I'm a fan of HP fanfic, but not of the book. ). 1 I wish I could write a paper entitled " Why Harry Potter is Awesome. 1 I love Harry Potter... 1 I love Harry Potter, Twilight, Series of Unfortunate Events, and tons more! 1 i HATE clickfive as much as i love Harry Potter. 1 Harry Potter is awesome! 1 lol I love Harry Potter like a fat kid loves cake. 1 I just love the Harry Potter series. 1 I absolutely LOVE Harry Potter, as you can tell already. 1 I absolutely LOVE Harry Potter, as you can tell already. 1 I absolutely LOVE Harry Potter, as you can tell already. 1 children's texts-fantasy perhaps most obviously-is often criticized for oversimplifying the struggle of good vs. evil ( Harry Potter might be a good example of this ). 1 You know, the Harry Potter books are decent enough, and I ? m glad they ? ve got kids reading, and reading big thick books at that. 1 I like Harry Potter a lot too. 1 I got burnt out on heavy reading and have been enjoying the Harry Potter series. 1 I suppose I enjoyed Harry Potter, Tom Sawyer was good too.. 1 I miss the Harry Potter Hookup. 1 I also really enjoy rereading the Harry Potter series right before a movie and new book come out. 1 I like their Harry Potter and pop culture stuff, but I'm not very picky!. 1 1st and 2nd Harry Potter movies are clearly the best / funniest... 1 I absolutely LOVE Harry Potter, as you can tell already. 1 It was planned so no biggie, I was admiring his sisters Harry Potter collection while I waited. 1 I absolutely LOVE Harry Potter, as you can tell already. 1 I absolutely LOVE Harry Potter, as you can tell already. 1 I have two awesome Harry Potter costumes I'm planning for 2007, but they aren't finished yet, unfortunately! 1 I miss Harry Potter and Japenese food.. 1 This is undoubtedly a big deal as I do not purchase movies a la DVD. The only ones I own are series like Harry Potter, Narnia, and Disney movies. 1 I love Harry Potter. 1 and I love Harry Potter and i like talking walks, going to the beach, and eating Oreos!.. 1 I absolutely LOVE Harry Potter, as you can tell already. 1 I absolutely LOVE Harry Potter, as you can tell already. 1 After I'd read OotP for the sixth time, I was desperate for some new Harry Potter. 1 I loved the Harry Potter books before I discovered fanfiction but fanfiction made me love them even more. 1 for that ( but since it was my fault she is into Harry Potter... 1 for that ( but since it was my fault she is into Harry Potter... 1 I love Harry Potter books < 3 so good Im a big dork. 1 I found that Harry Potter is a great read in German.. 1 When I was in primary school, I loved Harry Potter to bits. 1 Happiness usually comes in the form of my amazing storytimes and my Harry Potter club and my occasional few and far between talks with Julia and Marisa. 1 I love the Big empty series spec the second book, and I love Candy, and Harry Potter, and Requim for a Dream, and The Body of Christopher Creed... 1 @ shraddha: You are a Harry Potter fan too, that's great. 1 I love Harry Potter, x-men, LotR, Superman and any other big budget nerd film. 1 It's very rare to have me get into a book that I like as much as Harry Potter. 1 I love Harry Potter!. 1 i miss Harry Potter. 1 I love Harry Potter books-not the bootlegged movies, which Daniel Radcliffe ruined... 1 I enjoy reading Harry Potter. 1 Harry Potter is great if you have read the book! 1 love Harry Potter. 1 Harry Potter is good, but there's only 4 of those.. 1 I love Harry Potter!.. 1 The Harry Potter books are completely amazing. 1 Write us a Harry Potter poem for a chance to win a fabulous Harry Potter prize!!.. 1 Harry Potter anything is awesome. 1 I love Harry Potter! 1 The Harry Potter scar would be cool... 1 I love Harry Potter... 1 And so this girl ( okay, it's totally me ), who loved Equus and Harry Potter in equal measure, BOUGHT A TICKET TO THE SHOW ON MARCH 31st!.. 1 Artemis Fowl: The Lost Colony by Eoin Colfer ? 385 pages ? I love this series of Young Adult books damn near as much as I love Harry Potter. 1 which made me realize how much I love Harry Potter.. 1 Harry Potter = Gorgeous!. 1 And I loved Harry Potter. 1 Harry Potter was so adorable, he had a scar and everything.: ) I love Harry Potter. 1 The Harry Potter movies are awesome for mocking.. 1 Harry Potter is awesome... 1 I love Harry Potter and I love making friends. 1 I freagin'love Harry Potter and all of it's magical lore... 1 I LOVE Harry Potter. 1 Okay, so y'all know me, and you know that I love Harry Potter. 1 I love Harry Potter, but I don't think J. K. Rowling is the best author in the world... 1 I LOVE Harry Potter!!! 1 I personaly like Harry Potter, And I encourage kids to read the book, It is Wholesome FOR FUCK SAKES.... 1 I would like a Harry Potter type scarf for Christmas.. 1 And I liked the Harry Potter joke ( my friend was telling me almost the same thing at the same time ). 1 * I like Harry Potter.. 1 She's my student last year who I read Harry Potter with, and she kept saying " Harry Potter is beautiful! 1 * g * But, much as I love the Harry Potter movies, the books are better... 1 I love Harry Potter, Lilo and Stitch, Barnyard was awesome. 1 Also: " Sexy Harry Potter. 1 I want to be a part of this community because I love Harry Potter and want to discuss it and theories about book 7 with other people that love Harry Potter. 1 Also: " Sexy Harry Potter. 1 Harry Potter and the Sorcerer's Stone is great but I had forgotten what a low reading level it is. > _ <.. 1 I enjoy discussing Harry Potter, and I know there is still a lot for me to learn about it. 1 Me, I like the Harry Potter movies but the books have no real appeal for me. 1 Because I like Harry Potter and I in Eragon's case, I like dragons... 1 I love Harry Potter and if there's someone like him, I wanna date him... -- Jamaica, Queens.. 1 The Harry Potter Earrings Girl was awesome... 1 Which just goes to show how much I love Harry Potter. [ A lot a lot a lot a lot. ].. 1 I also adore Harry Potter and Hogwarts... 1 Hey thanks for the comment < / 33 Emma Watson is very pretty, and I absolutely love the Harry Potter movies. 1 I was so proud of myself that I was given the task of making Harry Potter sexy, and achieved it... 1 No... but I love Harry Potter... 1 Gotta Love Harry Potter icons.. 1 One of the main reasons I've always loved the Harry Potter fandom is because I felt like it was a place where everyone could belong. 1 We both love Harry Potter and Grey's Anatomy. 1 I love Harry Potter, you should try it too. 1 I like Harry Potter, I like Eragon, I like Lord of the Rings... 1 The Harry Potter picture is awesome. 1 I love Harry Potter. 1 None of friends are into Harry Potter so I would love to be part of a community that is dedicated to something I love. 1 I love Harry Potter = ) ) ).. 1 Friday-Harry Potter Feast = AMAZING! 1 Spoke with Mrs. Cowan briefly about a Harry Potter independent study, which would be incredibly awesome, but which I am also far, far too lazy to take my last semester in college... 1 " I love you Harry Potter! 1 Dorks are the best and Harry Potter is pretty awesome... 1 I love Harry Potter and Lord of the Rings. 1 " Harry Potter " series ( because of the delicious way my life is sucked away when I read it ).. 1 Well, at least Harry Potter is real good so far. 1 I love Harry Potter... 1 Harry Potter Rocks! 1 I'd almost forgotten how much I love Harry Potter. 1 I love Harry Potter. 1 I love Harry Potter...... 1 I ? m also a person who very much enjoys in-depth conversations, especially over subjects I'm interested and intrigued by, like Harry Potter. 1 yeah, I love Harry Potter to death, lol!.. 1 I also have my kick-ass Harry Potter robe that lends itself nicely to Halloween. 1 and I do enjoy reading the Harry Potter series... 1 Harry Potter is brilliant. 1 * He deemed me cool because I like Gavin DeGraw, Harry Potter, The Beatles, and drawing.. 1 Don't get me wrong, I like Harry Potter, but I need a fantasy movie of a different kind every once in a while. 1 I love its Harry Potter Hall ~ kaka.. 1 It can be seen all over the television and movie screens or in the popular novel, the Harry Potter craze is a perfect example of a literary version's adaptation to both. 1 Love the Harry Potter series though I try not to talk about it too much.. 1 I love Harry Potter. 1 Love the Harry Potter series though I try not to talk about it too much.. 1 Love the Harry Potter series though I try not to talk about it too much.. 1 Love the Harry Potter series though I try not to talk about it too much.. 1 Love the Harry Potter series though I try not to talk about it too much.. 1 What makes me love Harry Potter is the way it just grips you. 1 Because I love Harry Potter. 1 I do have a job and college, but I love Harry Potter and I will try to sort as often as I can. 1 Harry Potter and why it rocks. 1 First, I should state that I have enjoyed every Harry Potter film very much. 1 I love all Harry Potter fandom. 1 Harry Potter = Gorgeous!. 1 What I want to do is dress up like Harry Potter but I don't really have a lot of money and I haven't been able to find anywhere in town that had adult Harry Potter costumes. 1 Harry Potter's awesome.. 1 Harry Potter and the Veil of Darkness by Oceans Phoenix Word total 517,648 and counting. ( 6th year fic, actually looks fairly interesting. 1 I also love Harry Potter,, and I'm strangely drawn to vampire books ( don't ask me why ). 1 Harry Potter = Gorgeous!. 1 I want Harry Potter back!.. 1 A / N: This is a gift for sivullinen who requested: ? I'd love some NC-17 het in Harry Potter fandom. 1 I enjoy taking Harry Potter quizzes. 1 Deciding how I want the 7th Harry Potter to go -.. 1 A / N: This is a gift for sivullinen who requested: ? I'd love some NC-17 het in Harry Potter fandom. 1 XD I also like Harry Potter, anime, manga, reading, food, movies, music, friends... 1 ? I liked Harry Potter and I'll be sorry to see him grow up. 1 Personally, I love reading Harry Potter books. 1 Harry Potter rehearsal was very good, too. 1 So I decided that having an invisibility cloak like Harry Potter would be excellent. 1 Harry Potter & the Goblet of Fire: " it is good it folows on from the other movies ".. 1 I miss Harry Potter and stuff, man........ 1 If only I had a machine that lets me see into the future, like Harry Potter ?... 1 Since I had never read a book that was not in Portuguese or Spanish, she told me to read a children's book like Harry Potter first. 1 And I like Harry Potter. 1 I freaking love Harry Potter!. 1 I miss seeing Harry Potter like 200 times with you.. 1 I like the Harry Potter explaination though that girls always travel in packs. 1 made freaking awesome Harry Potter animated emotes. 1 I keep gettting into little I want my Harry Potter fits and having to watch 4, Which I also can't wait till 5 in out in the movies. 1 Apparently I will want to cast spells on people because I like Harry Potter. 1 To be fair, Harry Potter and the Goblet of Fire ( the novel ) is simply a lower shade of brilliant than the others, but I had issues with it. 1 Book-I love the Harry Potter books. 1 If you don't know that I love reading Harry Potter, you probably have never read my other posts before. 1 Anyway, we both love Harry Potter, books, Pirates of the Caribbean, taking pictures, and writing and we have the same sarcastic and quirky sense of humor. 1 I also love Harry Potter, but I ? m not too big on the OTP and Shipping side of it.... 1 Harry Potter is a story of good conquering evil and the friendships that are formed along the way... 1 Harry Potter Rocks!!!!!!!!! 1 I love Harry Potter. 1 I love Harry Potter ( the books are much better than the movies ). 1 but i also love the Harry Potter books!!... 1 * dies * I love Harry Potter... 1 I love Harry Potter. 1 but you know what i enjoy the MOST reading or watching anything Harry Potter related during the winter more specifically when the Christmas tree is up and it's snowing outside. 1 And I love Harry Potter, and it would devastate me not to be included. 1 I love your coloured Harry Potter too: ). 1 I love intellectual Harry Potter debates.. 1 Irrespective of whether she writes them or not, I am sure that the Harry Potter legacy is in good hands and I sure hope that the grand finale lives up to the hype..... 1 I LOVE Harry Potter. 1 I love Harry Potter, but right now I hate it ( me younger sis's watching it ). 1 That loves Harry Potter... 1 If theres one thing I love as much as Harry Potter, its Avatar!!!.. 1 I really like Harry Potter, Sports Day, The Messiah Complex and Stopped by Police stories too, as you can see I like the longer ones.. 1 I love Harry Potter, but every few months or so I'll go through an intense Harry Potter phase. 1 Idk why, but Harry Potter icons are always the funniest....... 1 I like Harry Potter.. 1 I am glad that you enjoyed it and yes, I am a big Harry Potter fan and a fan of children's literature. 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 Because I would like to make friends who like the same things I like, and I really like Harry Potter, so I thought that joining a community like this would be a good start. 1 the story of Harry Potter is a deep and profound one, and I love Harry Potter. 1 Harry Potter is AWESOME I don't care if anyone says differently!.. 1 I love Harry Potter.. 1 I love Harry Potter. 1 I love Harry Potter. 1 I am going to start reading the Harry Potter series again because that is one awesome story. 1 I, too, like Harry Potter.. 1 I want to be here because I love Harry Potter, and I really want a place where people take it serious, but it is still so much fun. 1 I love the Harry Potter series if you can count that as " a " book, also Catcher In the Tye, Jane Eyre, The Virgin Suicides, yeah... 1 I was thinking we should have a gay cowboy party in honor of Val's starring performance in Titus.: ) And because I love Brokeback Mountain.. 1 Brokeback Mountain was amazing, and made me cry like a bitch. 1 Brokeback Mountain is an excellent movie, I love it after watching it! 1 that's like asking if " brokeback mountain " is a good rep of cowboys... 1 " Brokeback Mountain " is a great short story and explains more, oddly enough, than the movie does, even though both cover the same chronological ground. 1 Brokeback Mountain is a good flick. 1 I liked the movie Brokeback Mountain. 1 I want to do something unexpected I am not going to do something like Brokeback Mountain or Rent or Crash or anything like that because those movies are basically about diversity. 1 and i wanna shout out a big fat thank you to esther for calling me and asking if i wanted the brokeback mountain screenplay from the mph sale at the expo... 1 no, I hope this doesn't end up like Brokeback Mountain. 1 gosh i miss telling Brokeback Mountain news!. 1 gotta luv brokeback mountain, lol.. 1 it got to every one of of us watching, whereas Brokeback Mountain was only beautiful to us kids ( my brother and two cousins and I watched it with my parents ). 1 brokeback mountain is amazing.. 1 I enjoyed Brokeback Mountain-watched it twice. 1 I did kinda like Brokeback Mountain though... 1 And, I mean, I love Brokeback Mountain. 1 " Brokeback Mountain " was also very excellent. 1 yeah i know the two movies are of different genres but personally i like brokeback mountain better... 1 I still love Brokeback Mountain and Queer eye. 1 I liked Crash a lot, I liked Brokeback Mountain, but GN & GL was the important movie that the other two were hyped as being... 1 i miss Brokeback Mountain. 1 brokeback mountain was pretty awesome. 1 I love Brokeback Mountain. 1 I love Brokeback Mountain. 1 Brokeback Mountain-Beautiful, sweeping, moving... 1 It's BBM, a Jake / Heath RPS story, so I figured there would be interest here since a lot of you, I know, saw and loved Brokeback Mountain. 1 And I like BROKEBACK MOUNTAIN. 1 i love brokeback mountain.. 1 I love Brokeback mountain. 1 So, I really liked Brokeback Mountain. 1 We were at Dick's and yes, Daniel's hat actually says " I love Brokeback Mountain "!!! 1 Brokeback Mountain is a beautiful place, picturesque, quaintly attractive, impressive. 1 we watched Brokeback Mountain, which was awesome. 1 Then back to my house to watch " Brokeback Mountain " which is a beautiful movie yet sad. 1 Brokeback Mountain is awesome!. 1 Yesterday an asian tourist got off one of our horses and hugged one of the wranglers and told him'I loved Brokeback Mountain '. 1 = O I loved brokeback mountain and it made me cry! 1 Brokeback Mountain was an awesome movie. 1 Brokeback Mountain was beautiful.. 1 so i heard brokeback mountain was an AWESOME move!! 1 brokeback mountain is such a beautiful movie. 1 brokeback mountain is a beautiful story-i hope you get your hands on a copy. 1 Brokeback mountain is BEAUTIFUL. 1 Man, I love Brokeback Mountain. 1 Brokeback Mountain is an awesome love story, it was really sad... 1 I loved Brokeback Mountain, Good Night and Good Luck and Riding Giants the most, and Napoleon Dynamite the least... 1 I LOVE Brokeback Mountain, but that is such a silly PC choice for best kiss. 1 Anyway, I LOVED Brokeback Mountain... 1 i thought that brokeback mountain was unbelievably beautiful! 1 I loved Brokeback Mountain and will check out the short stories one of these days.. 1 I LOVE BROKEBACK MOUNTAIN!!! 1 I LOVED BROKEBACK MOUNTAIN.. 1 I love brokeback mountain so much!!!!. 1 Brokeback Mountain is a spectacularly beautiful movie. 1 I mean, of course, you know that I love Brokeback Mountain, which, I confess, might make my judgement biased. 1 I love Brokeback Mountain. 1 I also loved Brokeback Mountain. 1 I love BROKEBACK MOUNTAIN... 1 Brokeback Mountain is a beautiful movie.. 1 16 ? ? Brokeback Hill-Form 2 because I love Brokeback Mountain -- the movie, not because I'm queer, of course I ain't.. 1 Why I love Brokeback Mountain. 1 brokeback mountain is such an awesome movie. 1 even though i really loved brokeback mountain... 1 and we snuck in ] and going to Springer's. [ BROKEBACK MOUNTAIN IS AWESOME!!!-Yes I finally saw it. 1 i LOVE brokeback mountain.. 1 i love brokeback mountain. 1 who LOVED brokeback mountain:. 1 after supper, we watched brokeback mountain, which is an awesome movie! 1 I LOVE BROKEBACK MOUNTAIN.. 1 Watched " Brokeback Mountain ", which was really beautiful and sad. 1 fell asleep during the latter one, but i loved " brokeback mountain. 1 I love brokeback mountain with all of my tiny pink heart... 1 So have I mentioned how much I love Brokeback Mountain yet?! 1 As much as I love Brokeback Mountain, it is such a shame that Capote and Transamerica( 1 I love " Brokeback Mountain ".. 1 DID I MENTION I LOVE BROKEBACK MOUNTAIN. 1 I LOVE Brokeback Mountain!! 1 I love Brokeback Mountain, but it's really sad.:(.. 1 I love brokeback mountain. 1 That's why I love brokeback mountain, apart from Ang Lee.. 1 i loved brokeback mountain! 1 Brokeback Mountain is a beautiful film.. 1 I just love brokeback mountain.... 1 Brokeback Mountain was awesome.. 1 in any case, i LOVED brokeback mountain. 1 , but I LOVE brokeback mountain. 1 I love playing defensive positions and i love brokeback mountain.. 1 I loved Brokeback mountain but then again i love gays lol. 1 BROKEBACK MOUNTAIN WAS AWESOME!!!! 1 brokeback mountain is awesome. 1 I loved Brokeback Mountain. 1 I LOVE BROKEBACK MOUNTAIN!.... 1 I really love Brokeback Mountain, its a wonderful film!!! 1 Brokeback Mountain is a beautiful movie... 1 I love Brokeback Mountain.... 1 I loved brokeback mountain.. 1 " Brokeback Mountain was an awesome movie. < 33.. 1 Thank u! omg I love Brokeback Mountain! 1 I love Brokeback Mountain. 1 I love brokeback mountain. 1 Brokeback Mountain is a beautiful movie... 1 I LOVE Brokeback Mountain... 1 I loved brokeback mountain. 1 I LOVE BROKEBACK MOUNTAIN!!!!.. 1 I actually loved Brokeback Mountain.. 1 By the way, Brokeback Mountain is beautiful.. 1 and Brokeback mountain was AWESOME. 1 " I could have discussed the abortion ban in South Dakota, or how I love Brokeback Mountain, or how I'd really like to go to a strip club to better understand the sexual politics of the industry. 1 but I loved Brokeback Mountain!. 1 i love brokeback mountain. 1 OMG I loved Brokeback Mountain! 1 * brokeback mountain is an awesome movie.. 1 I loved Brokeback Mountain... 1 i love brokeback mountain.. 1 I love Brokeback mountain!. 1 why i love brokeback mountain. 1 I LOVED BROKEBACK MOUNTAIN!.. 1 hey wait i love brokeback mountain! 1 I love Brokeback Mountain. 1 Brokeback Mountain was beautiful. 1 lol i love brokeback mountain. 1 I haven't seen Crash-and everyone tells me it's fabulous, but I just love Brokeback Mountain... 1 i loved brokeback mountain!.. 1 i love brokeback mountain!!!. 1 i love when brokeback mountain won at the critics choice awards they played its so easy to fall in love.... 1 I loved Brokeback Mountain, but I always wondered what would have happened if Ennis decided to spend the rest of his life with Jack... 1 I LOVE Brokeback Mountain!!!. 1 , and i love brokeback mountain... 1 I love Brokeback Mountain because it is a great story, great acting... 1 I've yet to see it, and while I loved Brokeback Mountain, don't really feel like it deserved the honor. 1 i love brokeback mountain...... 1 i'm gayer than a picnic basket, and i love brokeback mountain, but crash was in my opinion the best movie of last year. 1 I love Brokeback Mountain. 1 awesome Brokeback Mountain!! 1 " Brokeback Mountain " was a beautiful movie and it haunted me for days after seeing it... 1 Brokeback Mountain-hard to ignore beautiful photography. 1 i am love brokeback mountain madly. 1 Brokeback Mountain was beautiful... 1 brokeback mountain is awesome. 1 brokeback mountain was awesome. 1 Brokeback Mountain sounds beautiful... 1 P. S. change background, I love Brokeback Mountain, I love Jake so much!.. 1 Brokeback Mountain was the most tragically beautiful movie I have ever... 1 I loved Brokeback Mountain. 1 I love Brokeback Mountain! 1 I love Brokeback Mountain... 1 Brokeback Mountain is THE most amazing / beautiful / romantic / heartbraking movie i have ever or will ever see in my life...... 1 because i just SO DEARLY LOVE brokeback mountain.. 1 Brokeback Mountain was a pretty awesome movie. 1 We went to see Brokeback Mountain which was a truly beautiful film and I'm ashamed to say I wept for a full five minutes afterwards. 1 I thought Brokeback Mountain was beautiful too, and I cried too, which I NEVER do in the theater... 1 brokeback mountain was beautiful. 1 " brokeback mountain "-it was awesome. 1 Brokeback Mountain is a beautiful movie that is carefully done. 1 Brokeback Mountain is awesome. 1 I Love you and brokeback mountain was a success. 1 Derek and I saw 3 movies, Brokeback Mountain, which was beautiful, I almost cried. 1 Brokeback Mountain was beautiful and heartbreaking..... 1 ' Brokeback Mountain'is so beautiful, and so amazing, and so freaking sad. 1 Brokeback Mountain was beautiful. 1 i love brokeback mountain. 1 Brokeback mountain was an awesome movie. 1 Friday i went to see Brokeback Mountain, which is beautiful( 1 No matter how much I love Brokeback Mountain, Crash definitely deserved the Oscar as best movie this year. 1 I LOVE BROKEBACK MOUNTAIN, I LOVE ANG LEE, I LOVE JAKE GYLLENHAAL, I LOVE HEATH LEDER SO MUCH.. 1 I LOVE Brokeback Mountain!!!!! 1 Brokeback Mountain is beautiful... 1 Brokeback Mountain is a beautiful film!. 1 I have to say that I loved Brokeback Mountain. 1 mrs yip said Brokeback Mountain is awesome.. 1 and i love brokeback mountain too...: ].. 1 BROKEBACK MOUNTAIN WAS A BEAUTIFUL MOVIE.. 1 i love brokeback mountain! 1 I LOVE BROKEBACK MOUNTAIN! 1 Even though I loved Brokeback Mountain, I'm very happy Crash won Best Picture. 1 He generally had crap, but he did have Brokeback Mountain, which was awesome. 1 Score-Brokeback Mountain had a beautiful score. 1 " I loved Brokeback Mountain and I haven't seen Crash, but I still feel like people are... 1 If you know me at all, you know that I absolutely love Brokeback Mountain. 1 I love brokeback Mountain!.. 1 Brokeback Mountain is still a beautiful film, and nothing changes that!.. 1 Brokeback Mountain had a beautiful score, and since it did not receive Best Picture, they had to give it something, not just best director. 1 i loved brokeback mountain!:( 1 Brokeback Mountain-This movie is beautiful start to finish. 1 And I heard that Brokeback Mountain is AWESOME!.. 1 Beautiful random thoughts on Brokeback Mountain. 1 i LOVE back to the future, and i love brokeback mountain. 1 Well, Brokeback Mountain was pretty awesome too, but this movie...... 1 Brokeback mountain was awesome. 1 Brokeback Mountain which was AWESOME.. 1 I think I may just be bitter because I absolutely loved Brokeback Mountain and when you say you liked some other movie( 1 Brokeback Mountain is bound to be awesome... 1 Brokeback Mountain is beautiful( 1 Don't get me wrong, I love brokeback mountain, but I think it has more to do that only white people can talk about racism and wins an oscar. 1 I loved Brokeback Mountain, though I think you're right about its being acceptable in mainstream culture because it doesn't challenge that culture's heteronormativity. 1 I love Brokeback Mountain and I'm so dissapointed and surprised that it did not win the best picture and best actor... 1 Brokeback Mountain was awesome. 1 Brokeback Mountain is packed with beautiful sceneries and such. 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 1 I love Brokeback Mountain. 1 I love Brokeback Mountain.... 1 He's like,'YEAH I GOT ACNE AND I LOVE BROKEBACK MOUNTAIN '.. 1 Brokeback Mountain was so awesome. 1 Brokeback Mountain was an AWESOME movie. 1 man i loved brokeback mountain! 1 dudeee i LOVED brokeback mountain!!!! 1 I either LOVE Brokeback Mountain or think it's great that homosexuality is becoming more acceptable!: 1 Anyway, thats why I love " Brokeback Mountain. 1 Brokeback mountain was beautiful... 0 da vinci code was a terrible movie. 0 Then again, the Da Vinci code is super shitty movie, and it made like 700 million. 0 The Da Vinci Code comes out tomorrow, which sucks. 0 i thought the da vinci code movie was really boring. 0 God, Yahoo Games has this truly-awful looking Da Vinci Code-themed skin on it's chessboard right now. 0 Da Vinci Code does suck. 0 And better...-We all know Da Vinci code is bogus and inaccurate. 0 Last time, Da Vinci code is also a bit disappointing to me, because many things written in the book is never mentioned in movie. 0 And better...-We all know Da Vinci code is bogus and inaccurate. 0 And better..-We all know Da Vinci code is bogus and inaccurate. 0 And better..-We all know Da Vinci code is bogus and inaccurate. 0 If Jesus is fabricated a la the Da Vinci Code then Christianity is worthless... 0 I think this bolsters my arguments that both England and the Da Vinci Code sucks... 0 And better..-We all know Da Vinci code is bogus and inaccurate. 0 I really hate The Da Vinci Code. 0 The more you say The Da Vinci Code is evil, the more people will read it. 0 da vinci code sucked too long and too slow..... 0 Da Vinci Code sucked, as expected. 0 not sure if i already threw this at you but I hate the Da Vinci Code. 0 This is why I hate the Da Vinci Code: because it takes nothing but a fucking pop culture phenomenon to get people to question things. 0 I hate the Da Vinci Code, but I may see the movie for Audrey Tautou... 0 Da Vinci Code really did suck and congrats on beating Jay it must of been like that time at Rickards when we beat them in the finals. 0 The Da Vinci Code sucks. 0 and also, The Da Vinci Code is poorly written and boring.. 0 I hated The Da Vinci Code. 0 I hate the Da Vinci Code, but I may see the movie for Audrey Tautou... 0 I know Da Vinci Code is going to suck. 0 The Da Vinci Code sucks.. 0 I also think The Da Vinci Code sucked balls and it's the worst piece of shit I've ever read. 0 Thank God Someone Has Sense I hate The Da Vinci Code. 0 RACHEL you could of told me your nans a libarian before i said i hated'The da vinci code '!! 0 The Da Vinci code sucks and is also a page turner... 0 then was the da vinci code, which sucked really bad. 0 but whatever it is,. i really hate the da vinci code.. 0 I hated The Da Vinci Code. 0 I hated The Da Vinci Code. 0 the da vinci code sucks btw.. 0 I hate the Da Vinci Code.. 0 i fucking hated the da vinci code. 0 , before I forget, I have to say that I pretty much hated The Da Vinci Code. 0 Ok, so the Da Vinci Code movie sucked incredibly,. ( except for the part were we see Paul Bentlys butt, that was kinda cool.. 0 we wanted to watch " The Da Vinci Code " but the timings sucked so we ended up going fer " Runaway Vacation " which is a really good movie..! 0 Had an interesting conversation with one of the professors I work for about how Da Vinci Code sucks... 0 ERM da vinci code and it sucked... 0 ERM da vinci code and it sucked.. 0 ERM da vinci code and it sucked. 0 I overslept though so jenn and i didn't get to see the da vinci code which sucked and now i have no money so yeah maybe later. 0 DA VINCI CODE-SUCKED BALLZ. 0 well DA VINCI CODE SUCKS!! 0 The Da Vinci Code sucked ass if you're wondering. 0 god, i just thought i hated the da vinci code, now i see how very wrong i was... 0 Da Vinci Code sucks... 0 I hate the Da Vinci Code, but I may see the movie for Audrey Tautou... 0 about how much i hate the da vinci code. 0 And I absolutely loathe the Da Vinci Code. 0 I hated the da vinci code... 0 The Da Vinci Code sucked, so you didn't miss anything special. 0 the da vinci code sucked lol... 0 She was just absolutely adorable in Am? ? lie, one of my favorite films, and while The Da Vinci Code pretty much sucked, she looked good in it. 0 I forgot how much I hated Da Vinci Code. 0 everyone said the da vinci code sucks ass = \. 0 lol nd i heard da vinci code sucks.. 0 X3-good, Nacho Libre-sucked, Da Vinci Code-sucked, Cars-good, Over the Hedge-good, T hank You For Smoking-had its moments...) 0 Da Vinci Code it is suck, I saw the movie comment and everybody said it was stupid and bored, but if that movie was for real, then it should be pretty interesting... 0 Da Vinci Code sucks. 0 I HATED Da Vinci Code! 0 I also hate the Da Vinci Code.. 0 da vinci code sucks ass. 0 The Da Vinci Code sucked. 0 The Da Vinci Code sucked like a Hoover. 0 And by the way, Da Vinci Code movie sucks ass.. 0 Da Vinci Code SUCKED ASS!!! 0 Why I hate The Da Vinci Code, except much more coherent, and with, uh, less usage of the phrase " dogfucking retarded ". 0 how much the da vinci code sucks... 0 Went to see The Da Vinci Code, which sucked even worse than the book... 0 Da Vinci Code apparently sucks even more ass on film. 0 who else thought the da vinci code kinda sucked... 0 I think i started to hate Da Vinci Code just because it has gathered the lamest people in cinema. 0 the da vinci code sucked. 0 oh, and i hated " the da vinci code " the novel.... 0 Da Vinci Code sucked. 0 in other news, the da vinci code sucks a lama's balls..... 0 Still haven't seen the Da Vinci Code, which kinda sucks.. 0 The Da Vinci Code sucked. 0 BECAUSE DA VINCI CODE SUCKED!! 0 - Aimee has been here for over a week, and it's been really fun..-The Da Vinci Code sucked ass!.-Sean has been a really awesome and supportive friend..-Indian Reservations are full of white people. 0 3 Though I heard Da Vinci Code sucked. 0 I officially hate the Da Vinci Code, the end. 0 So what has been up lately, well friday went to see Da Vinci Code that sucked but it was cool hanging with some of my friends. 0 ya da vinci code really sucked.... 0 I heard The da Vinci Code sucked. 0 We saw Da Vinci Code, which sucked. 0 we saw the da vinci code, which kinda sucked in an okay way. 0 " DA VINCI CODE SUCKS. 0 the da vinci code sucked! 0 I hated Da Vinci Code.. 0 The Da Vinci Code sucks, BTW! 0 I hate the Da Vinci Code. 0 I did not get to see Da Vinci Code which sucked a little bit, but hopefully that may happen during the coming week sometime.. 0 They were holding signs saying " I love Jesus Christ, but I hate the Da Vinci Code. 0 Because of this project, I fucking hate the Da Vinci Code. 0 THE DA VINCI CODE SUCKS. 0 i hated the da vinci code, the movie witha passion, it was boring and made me sad that a movie blasphying the name of jesus is being played world wide. 0 The Da Vinci Code sucked. 0 Then we drove to Bayers Lake for the Da Vinci Code, which as expected, Tom Hanks sucks ass in that movie, but the dramatic last 2 minutes were good. 0 the Da Vinci Code sucks. 0 I hated The Da Vinci Code... 0 Da Vinci Code sucks. 0 did i mention the da vinci code sucked big donkey balls?.. 0 the da vinci code sucked big donkey balls... 0 The Da Vinci Code [ movie ] sucked!.. 0 to see the da vinci code, which totally sucked balls. 0 The Da Vinci Code's supposed to suck.. 0 da vinci code sucks. 0 I'll let y'all know if The Da Vinci Code sucks or not... 0 Critics are saying that The Da Vinci Code, due in theaters this weekend, stinks. 0 Now, I am the first person to say that The Da Vinci Code sucks, but hello, it ? s a novel! 0 I really hate the Da Vinci Code.. 0 I really hate the Da Vinci Code... 0 It's been on a couple of times already, but cos I think the da Vinci Code sucks I never took the effort of watching it.( 0 The Da vinci Code is so SUCK!!!!!!!( 0 The Da Vinci Code sucked big time. 0 mang i could of told you the da vinci code suck! 0 ? Man i hated the Da Vinci Code. 0 After school, I went with Latin Club to see the Da Vinci code, which sucked... 0 the da vinci code sucks majorly.... 0 da vinci code = sucks major ass... 0 I hate The Da Vinci Code. 0 Da Vinci Code kinda sucks second time around.. 0 Da Vinci Code sucked, but talking through it definately didnt suck. 0 and da vinci code sucks!.. 0 i heard that the da vinci code sucks especially compared to the book. 0 The Da Vinci Code sucks. 0 anyhow, the da vinci code sucks lah. 0 The Da Vinci Code sucked. 0 Rofls, but yeah I hated the Da Vinci Code. 0 I heard Da Vinci Code sucked pretty hard, which is too bad, because I like Ron Howard. 0 i use google for my music urls and the da vinci code sucked! 0 da vinci code the movie sucked. 0 im kinda sad that da vinci code sucked( 0 Does The Da Vinci Code suck?... 0 There will be a lot of fun songs, one will be a sing along about how much the Da Vinci Code SUCKS( 0 so, lucky for me, since i hated the da vinci code after refusing to read it for so long because of the public reaction in the first place-there's a movie now. 0 I've seen X-Men three times and the Da Vinci Code royally sucked... 0 da vinci code sucks ass. 0 The Da Vinci Code sucked like a Hoover. 0 And by the way, Da Vinci Code movie sucks ass.. 0 da vinci code sucked da vinci code sucks da vinci code sucks!. 0 da vinci code will suck! 0 da vinci code sucked, IMO. 0 da vinci code, you suck.. 0 I wasn't even in the mood to shop yesterday and also Da Vinci Code sucked ASS. 0 Quick update:..-Haven't smoked in over a week..-Haven't consumed meat in over a week..-Da Vinci Code sucked..-Love the new place..-Broke. 0 Da Vinci Code sucked but the story and ideas were very interesting... 0 Also, Da Vinci Code is SUCK!!!!!!!! 0 Well, I'm not gonna lie, The Da Vinci Code SUCKED! 0 DA VINCI CODE SUCKS ASS. 0 Da Vinci code sucks ass as a movie. 0 The Da Vinci Code sucked ass!!!! 0 hating the da vinci code, saying its sucky. 0 .-wish me luck as i go attempt to crack some motherfuckers tonite..-da vinci code can suck my balls..-poseidon can suck my balls..-hooray for Memoirs of a Geisha. 0 The Da Vinci Code sucked, but the night was great. 0 so, i heard the da vinci code sucked. 0 i heard da vinci code majorly sucked. 0 I got a hold of Kelsey and we went to Oceanwalk and saw the Da Vinci Code, which kinda sucked, then went and got really, REALLY bad food at Johnny Rockets. 0 My dad, bless his heart, knows how much I hate the Da Vinci Code and linked me to this article, thinking I might enjoy it since its author also hates the Da Vinci Code. 0 the Da Vinci Code suck ass.. 0 said " The Da Vinci Code " suck.. 0 Reading this review, you may draw the conclusion that I hate " The Da Vinci Code ", which isn't true. 0 I'm happy that the Da Vinci code sucks. 0 In other news, The Da Vinci code sucks and Symantec is suing Microsoft... 0 Reading this review, you may draw the conclusion that I hate " The Da Vinci Code ", which isn't true. 0 I heard the Da Vinci Code sucks. 0 So word on the street is -- The Da Vinci Code apparently sucks.... 0 i heard the da vinci code sucks as a movie. 0 Apparently the Da Vinci code sucks. 0 I hear that The Da Vinci Code sucked too. 0 I can hate " Da Vinci Code " without even touching the book. 0 Da Vinci Code kinda stinks!... 0 I am a Christian and I absolutely HATE the Da Vinci Code. 0 Apparently, The Da Vinci Code sucks. 0 why i hate The Da Vinci Code... 0 Other than that, all I've heard is that the Da Vinci Code kinda sucks! 0 i hear the da vinci code sucks. 0 hey I heard da vinci code sucks butt. 0 i know it's kind of a delayed reaction but banning the da vinci code sucks beans big time. 0 da vinci code movie = sucks.. 0 da vinci code kinda sucked -- u guys should watch THE OMEN -- muahahaahahah. 0 absolutely hated the Da Vinci Code... 0 the da vinci code sucked... 0 weeeellllllll even though you say that The Da Vinci Code sucked, I still have to go see it because I read the book therefor..... 0 Besides, Da Vinci Code sucks... 0 I frakking hate the Da Vinci Code. 0 Yeah the media seems to think that Da Vinci Code sucks... 0 thirdly-the da vinci code sucked.. 0 this post won't add anything new either, save that The Da Vinci Code sucks, majorly... 0 the Da Vinci Code sucked. 0 The Da Vinci Code sucked balls. 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Da Vinci Code sucks. 0 friday hung out with kelsie and we went and saw The Da Vinci Code SUCKED!!!!! 0 Combining the opinion / review from Gary and Gin Zen, The Da Vinci Code sucks. 0 Da Vinci Code sucks be... 0 Da Vinci Code sucked.. 0 The Da Vinci Code sucked big time. 0 Da Vinci Code = Up, Up, Down, Down, Left, Right, Left, Right, B, A, SUCK! 0 by the way, the Da Vinci Code sucked, just letting you know... 0 i heard da vinci code sucked soo much only 2.5 stars: 0 da vinci code sucks... 0 Mission Impossible sucks too!.. 0 I hated Mission Impossible.. 0 My friend said Mission Impossible sucked -- big time... 0 I hate Mission Impossible. 0 Showcasing Mission Impossible 3 ( which suck aniwae ) and X men 3, which I didnt get to watch till today.. 0 Christmas Mission's Trip with our very own Tom Cruise: " Mission Impossible is for stupid people ".. 0 I hate playing Mission Impossible --- love 007.. 0 and i'm not even THINKING of getting in FRESHMAN cuz to me itz just mission impossible lol i simply suck too much altogether.... 0 Mission Impossible 2 sucked hardcore. 0 I think I will hate Mission Impossible 3; 0 i didn't know mission impossible 2 so sucks... 0 " Mission Impossible 3 sucks like a Theatan energy field! 0 " Mission Impossible III " sucks, the story of " X-Men: 0 MISSION IMPOSSIBLE 3 SUCKS!!.. 0 Mission Impossible 3 sucked ass tho... 0 Mission Impossible 3, tom cruise, it sucks, I hate action movie, eat Chinese food at night, dim sum, very funny.... 0 Mission Impossible III sucked majorly, but it was nice doing things with friends. 0 God, anyway for anyone whos read this far the new Mission Impossible SUCKS! 0 but Mission Impossible 3 SUCKS! 0 Mission Impossible III sucks.. 0 I HATED Mission Impossible 2.. 0 MISSION IMPOSSIBLE III IS GOING TO SUCK BALLS!!!.. 0 Mission Impossible III sucked to a major extent. 0 mission impossible III kinda sucked. 0 Mission Impossible 3 sucked... 0 well mission impossible 3 sucked a lot. 0 Mission Impossible 3 sucked!.. 0 I hate Mission Impossible movies. 0 I know, I know, mission impossible 2 sucked royally. 0 Mission Impossible 3 sucks....... 0 MISSION IMPOSSIBLE 2 ~ REALLY SUCKS!!!!!!!!!!!!!!!!!!!!!!!!!!!.. 0 mission impossible 3 sucks man.. 0 MISSION IMPOSSIBLE III I hated the first Mission Impossible and never saw the second one. 0 RV was really good but Mission Impossible 3 fucking sucked. 0 mission impossible 2 sucked by the way so i don't know if i wanna see 3.. 0 Mission Impossible three sucked. 0 MI3 mission impossible III sucked ass, like the last one, it was lame and predictable, LAME.. 0 Mission Impossible 3 sucked...... 0 After that we decided to see Mission Impossible III which sucked a little bit. 0 Mission Impossible III-Sucks big-time!.. 0 Its weird, I like Tom Cruise movies, but I hate the Mission impossible films.... 0 If i hear one more thing about Tomkat or how much Mission Impossible III sucks ass( 0 Mission impossible both the first and second sucked.. 0 mission impossible 3 sucked balls. 0 It stayed on the whole way there and the whole way back.-Jill is staying with me next weekend.-Mission Impossible III sucks. 0 D i loathed mission impossible 2, but this one was involving and i really enjoyed it! 0 mission impossible III sucked please don't go see it, okay?... 0 The level of badness of these movies is increasing exponentially, so I can only imagine how awful Mission Impossible the third will be.... 0 i HATE HATE HATE tom cruise and mission impossible movies but i think i may go see this new one cuz... 0 stupid mission impossible sold out right when we got there. 0 Mission Impossible III just flat out sucked, shipmates. 0 I think people are more tired of the Mission Impossible franchise than Tom Cruise. 0 BURBANK, Calif. ( AP )-Brooke Shields says Tom Cruise has publicly apologized for his film career, including War of the Worlds and all of the atrocious Mission Impossible movies. 0 so we ran off because we HATED Top Gun / Mission Impossible 2 / Cocktail. 0 so we ran off because we HATED Top Gun / Mission Impossible 2 / Cocktail. 0 hahaha i think my freakin mission impossible search for those stupid shoes is finally over. 0 stop making those stupid mission impossible movies already too...... 0 I'm pretty sure im boycotting fucking stupid mission impossible III. 0 STUPID MISSION IMPOSSIBLE MYBUTTHOLE YUH NASY [ c. joiners ].. 0 idk mission impossible looked stupid to me.. 0 i had to go to work at 9am for stupid mission impossible 3. 0 Mission Impossible the second was terrible. 0 and mission impossible was pretty crappy aside from phillip seymore hoffman and the nifty gadgets) 0 watched mission impossible 3 wif stupid haha... 0 i wish i could have stayed to see that last credit, but i was going to go insane if i had to listen to one more second of kanye west's god-awful mission impossible remix.. 0 After the god-awful ? Mission Impossible 2 ? from John Woo laid a major egg. 0 After the god-awful ? Mission Impossible 2 ? from John Woo laid a major egg. 0 saw mission impossible 3 kinda stupid yet good.. 0 No, I'm just sick of him making crappy Mission Impossible sequels. 0 I hope they end this franchise here, or Mission Impossible 4 may see Cruise facing off against the evil Richard Simmons.. 0 Mission impossible three looks horrible. 0 Mission Impossible 2 was a horrible film that made me cringe whenever I think about it, so horrible it was that I lost respect for John Woo( 0 Come out of the closet and please stop making those terrible Mission Impossible movies... < $ BlogBacklinkTitle $ > < $ BlogBacklinkSnippet $ >. 0 Mission Impossible 3 is so shitty a movie even Phillip Seymour Hoffman and Simon Pegg( 0 Mission Impossible 2 was a horrible film that made me cringe whenever I think about it, so horrible it was that I lost respect for John Woo( 0 ^ my prediction was correct, mission impossible 3 was a lousy movie... 0 Boycott Mission Impossible-Tom Cruise is evil.: -(..... 0 Mission Impossible is so Boring. 0 mission impossible is the most worthless movie ever, so there's no point of talkin bout it anyway. 0 MI: 2 was generally agreed to be a decent action movie but a terrible fit for the name " Mission Impossible. 0 Mission Impossible 3 was quite boring. 0 How?.-Mission Impossible III is really boring the second time around..-The new Cobequid health center is soooooooo nice!... 0 Since Mission Impossible is a piece of crap. 0 After seeing crappy Mission Impossible 3 trailers I gotta ask one thing: 0 Mission Impossible 3 aka MI3 aka Tom Cruise vs Evil. 0 Mission Impossible 3 et al. can be said to be boring! 0 mission impossible three is useless... 0 Mission Impossible 2 is a dumb movie. 0 Then we realized they'd given us tickets for the wrong movie, Mission Impossible 3, and our actual movie was on the other side. 0 I blame Mission Impossible for some of my chunnel fears -- but I think I would be scared regardless.. 0 His new track for Mission Impossible 3 is probably the dumbest thing I've ever heard. 0 A futile mission impossible ending before it even began. 0 The only thing I can blame is to watch Mission Impossible III with Teri at 12: 0 Interview with the Vampire, Anne Rice [ Okay, I might hate this one as much as I hate Harry Potter. 0 " My favorite attraction reopened on Friday, but due to the stupid Harry Potter release I was unable to be there until Saturday. 0 Now, I know what most of you are thinking: Harry Potter sucks. 0 For those who are Harry Potter ignorant, the true villains of this movie are awful creatures called dementors. 0 Although watching Harry Potter was a little boring. 0 So now, I'm going to watch some tv, then bullshit a I fucking hate Harry Potter costume for the monthly meeting tonight. 0 I hate Harry Potter.. 0 Does it take for you to get really mad -- when people say Harry Potter sucks... 0 My sexy vintage silver tea infuser deal fell through, so instead I bought this crappy Harry Potter tea infuser that's shaped like a frog. 0 Harry Potter can't die, that would be sad and depressing. 0 Harry Potter can be quite an idiot sometimes. 0 And I hate Wesley almost as much as I hate Harry Potter, but that doesn't mean Captain Picard still wasn't a douche and a half that day. 0 And I hate Wesley almost as much as I hate Harry Potter, but that doesn't mean Captain Picard still wasn't a douche and a half that day. 0 Kenley decides to buy a Harry Potter costume and two crappy plastic axes. 0 Because I sure did read a lot of terrible fic in Harry Potter fandom. 0 It amazes me that people are so afraid of what Harry Potter is going to do to their children. 0 I have come to the conclusion that Harry Potter is a tragic hero..... 0 I am sick of Harry Potter shit-I am sure the kids must be too... 0 Harry Potter is a story of good conquering evil and the friendships that are formed along the way... 0 Copy / Pastings from the Mpreg Archive Challenge Section, or Why I Hate the Harry Potter Fandom:.. 0 . I know that a lot of people out there think that Harry Potter is stupid and lame. 0 I hate that class, and I'm starting to hate Harry Potter too. 0 I won't go too far into my rant about why these people are deluded if they think Harry Potter is evil ( and is anything less than a loose allegory of the Bible. 0 A mother in Georgia wants her local school board to take Harry Potter out of the schools and libraries because, in her opinion, reading Harry Potter leads to witchcraft, which according to her is evil... 0 I hate Harry Potter.. 0 I hate Harry Potter.. 0 I hate Harry Potter. 0 I hate Harry Potter; 0 Harry Potter sucks balls... 0 You think that Harry Potter is evil.. 0 You think that Harry Potter is evil.. 0 You think that Harry Potter is evil.. 0 Harry Potter is dumb. 0 The images of evil lin movies such as Harry Potter or the Lord of the Rings pale in comparrison with reality. 0 Hopefully, this is not the case, and the acting will have us overlooking the color of their hair. ( Trivia: Harry Potter's eyes are the wrong color in the movie. 0 I think, on some level of Absolute Denial, I'm actually becoming rather tired of Harry Potter in general. 0 I'm sick of Harry Potter fanfiction. 0 And they all involved Harry Potter * is lame *.. 0 If you really think Harry Potter is evil, you're a dumbass...... 0 * Harry Potter and the Highly Inappropriate Use of the Headmistress's Office, ( NC-17 ), by Melandry. 0 I could go on but let's just say that anyone who can say Harry Potter is evil is just wrong. 0 The Whole Harry Potter deal --- Now I wish that fuckers would just shut the fuck up about Harry Potter being evil... 0 now for Halloween i just need an evil Harry Potter for the dance, lol, and a Jack the Ripper for the actual night of Halloween. 0 I hate Harry Potter.. 0 I hate Harry Potter.. 0 I hate Harry Potter.. 0 Harry Potter is evil!!!!!.. 0 I would also like to know how Harry Potter is evil, but the Bible isn't. 0 The following are clips, from the same article that featured the story about how evil Harry Potter is:.. 0 Harry Potter Club is unbelievably obnoxious tonight, when only believably obnoxious on any other day... 0 I hate Harry Potter.. 0 Judging by the Harry Potter craze and the money that has been generated by the books and movies, no one gives a fuck if you think Harry Potter is evil... 0 Harry Potter is evil... 0 I hate Harry Potter.. 0 I hate Harry Potter.. 0 I hate Harry Potter.. 0 I hate Harry Potter.. 0 I hate Harry Potter.. 0 I hate Harry Potter.. 0 I hate Harry Potter.. 0 I hate Harry Potter.. 0 I hate Harry Potter.. 0 I hate Harry Potter.. 0 I hate Harry Potter.. 0 I hate Harry Potter.. 0 I heard Emma Watson might not be returning for the next Harry Potter film, which would really suck. 0 I hate Harry Potter.. 0 I hate Harry Potter.. 0 I hate Harry Potter.. 0 I hate Harry Potter.. 0 He thinks Harry Potter is evil ( for real ) but I can get past it. 0 I hate Harry Potter.. 0 I hate Harry Potter.. 0 I hate Harry Potter and all things related to it.. 0 Such as this one, which I think she did just to spite me, knowing how I hate Harry Potter:... 0 " I hate Harry Potter. 0 " I hate Harry Potter. 0 Harry Potter can suck my clit... 0 Sometimes all I said was'Harry Potter sucks! 0 For everytime I said'Harry Potter sucks'I was outnumbered by a thousand people saying'Harry Potter RULES '. 0 Man, Ultimate Marvel Harry Potter sucks... 0 Man, Ultimate Marvel Harry Potter sucks... 0 " Thinking back to my comment to anax, I decided to write a really awful Harry Potter fanfic, rife with faked Mary Sue-ism... 0 And this is why I hate Harry Potter. 0 And this is why I hate Harry Potter. 0 I Hate Harry Potter. 0 And Harry Potter looks stupid:.. 0 Hogwarts hogwash: The Georgia board of education listens to a mother's campaign to rid those evil Harry Potter books from school libraries... 0 Still, none of that had felt nearly as exquisite as having Harry Potter sucking his cock... 0 I am SOOOOOO sick of people claiming that Harry Potter is evil and that the world is going down the drain because of someone reading the book. 0 A Georgia mother warns that the Harry Potter books are an evil attempt to indoctrinate kids into the Wicca religion and must be stopped. 0 The Georgia Board of Education heard from a mother seeking to ban those evil Harry Potter books.. 0 Wiccans react to possible Harry Potter book ban Marcia Gaither, who teaches classes in Wiccanism, says the controversy about Harry Potter is absurd. 0 Then again, I actually hated Harry Potter before I read it, and look at me now. 0 What I hate is, she's also one of these people that thinks Harry Potter is this evil witchcraft and evil for kids to read... 0 I don't like the idea of my precious, classic Harry Potter books to be cheapened with its association to the worthless glitz of Hollywood gossip. 0 Actually, we talked about how Harry Potter sucked, and how the writer of My Immortal was either a college student working on a psychology thesis or a sad person with the IQ of a cucumber... 0 I used to hate Harry Potter, and now I'm a Potterholic.. 0 I hate Harry Potter.... 0 Ew I hate Harry Potter. 0 My point is, Harry Potter is evil... 0 And I hate Harry Potter.. -- Jame. 0 Just that I hate Harry Potter and hate the living guts out of Johnny Depp. 0 I hate Harry Potter... 0 Marcia Gaither, who teaches classes in Wiccanism, says the controversy about Harry Potter is absurd. 0 Still, none of that had felt nearly as exquisite as having Harry Potter sucking his cock... 0 Also I love Lord of the Rings, but I hate Harry Potter because he needs a haircut. 0 I used to hate Harry Potter. 0 meganpenworthy dressed as a character from Harry Potter and the Selfish Iron, though it looked more like Optimus Prime.. 0 I have read 1984 and I hate Harry Potter.. 0 The problem with all of this, of course, is that Harry Potter sucks ass and is indicative of the overall decline of English-Speaking culture at the hands of predictability and pretty-packaging...: -). 0 I hate Harry Potter. 0 Harry Potter SUCKS!! 0 Harry Potter Sucks. 0 I also hated Harry Potter, but not because of the normal religious standpoint, I just dont like it because I think it is absolutely horridly basic and cheap writing, and not worth my time... 0 Christain Lynne is sucking, Harry Potter is sucking, the Devil is sucking, EVERYONE. 0 I hate Disney, I hate Chronicles Of Narnia, I hate Lords Of The Ring and I hate Harry Potter... 0 Harry Potter sucks arse. 0 Harry Potter sucks. 0 I hate Harry Potter. 0 and hate " Harry Potter " even though it is actually much more religious( 0 And that Harry Potter sucks because he rides on a broom. 0 Harry Potter sucks. 0 Harry Potter sucks, it's just that simple. 0 Harry Potter still sucks, though. 0 I hate Harry Potter.. 0 In fact, I would go as far as to say that I hate Harry Potter.. 0 I'm exhausted and I hate Harry Potter. 0 I hate Harry Potter with a passion but these are hilarious!.................. 0 While I hate Harry Potter with nearly every fiber of my being, I don't think the book is inherently evil. 0 Harry Potter sucks... 0 Harry Potter sucks. 0 I hate Harry Potter.. 0 Harry Potter sucks compared to the invisible man, it's a good book. 0 I hated Harry Potter. 0 I'll probably get murdered a thousand times over by everyone for saying it, but I hate Harry Potter. 0 I fucking hate Harry Potter. 0 A fade is a creature of death like the demeantor from Harry Potter who suck your soul through your mouth. 0 even tho I hate Harry Potter, they are just funny. 0 As much as I hate Harry Potter, You gotta love this decaying and decomposing hippie for bringing McGarther Park to the world. 0 I'm sorry I hate to read Harry Potter, but I love the movies!.. 0 I hate Harry Potter. 0 Which is your favourite Harry Potter film?.-Sorcerer's Stone.-Chamber of Secrets.-Prisoner of Azkaban.-Goblet of Fire.-I like them all equally!.-I hate Harry Potter and think this is a stupid question... 0 I'm giving it the benefit of a doubt because even Harry Potter sucked for the first ten pages. 0 i don't know if the fact that i did online quizzes or the fact that you don't like Harry Potter sucks more.. 0 Harry Potter sucks, it used to be better.) 0 I think I hate Harry Potter.. 0 Harry Potter does suck though No offence... 0 When my roommate cried, " I can't believe there's a Facebook group called'Harry Potter sucks! 0 Harry Potter will suck you in like the rest of us and turn you into a geek in addition to a nerd. 0 We screwed up on Malaguena so much that Russotti changed it to Harry Potter and I hate Harry Potter... 0 The actor who plays Harry Potter sucks so does the new Dumbledor. 0 this coming from the person who said that Harry Potter sucks just a few hours ago?.( 0 I'll be working Harry Potter weekend, which is going to suck at Suncoast, lol.... 0 I hate Harry Potter. 0 I HATE Harry Potter, but I'd so watch it if KAT-TUn starred in it! 0 He opened his mouth to dictate his reply about having Harry Potter suck his cock, only to be cut off by his mirror speaking up. 0 While we're on the topic, Harry Potter stinks. 0 I hate Harry Potter. 0 Yeah yuck I hate Harry Potter. 0 yeah-I hate Harry Potter, I'll gladly play Dungeons and Dragons, but I'll beat up anyone who asks me to watch a HP movie:) 0 I could hate Harry Potter, but love his scent... 0 I suppose you could say that I hate Harry Potter because he's everything I'm not. 0 I loathe Harry Potter, Lord of the Rings and anything else of that nature... 0 Harry Potter sucks Hairy Otters, it is for the wussies who can't read real books..( 0 I hate Harry Potter, too..... 0 Harry Potter sucks..... 0 This was a gift from someone who doesn't know I hate Harry Potter...... 0 In " Harry Potter and the Prisoner of Azkaban, " you see Dementors that suck the Life and Joy out of you and taking your Will to Live. 0 He opened his mouth to dictate his reply about having Harry Potter suck his cock, only to be cut off by his mirror speaking up. 0 Harry Potter and Titanic suck. 0 i hate Harry Potter!.. 0 But I hate Harry Potter... 0 I durno but I hate Harry Potter.. 0 I hate Harry Potter... 0 Harry Potter sucks. 0 I hate Harry Potter... 0 no offense but i hate Harry Potter but whatev. 0 I hate Harry Potter.. 0 Harry Potter -- the other two suck. 0 I used to hate Harry Potter... 0 Harry Potter was sucking his cock. 0 and i hate Harry Potter. 0 man, it was awful ( and yes, I am a huge Harry Potter loser ). 0 I hate Harry Potter even more now. >: 0 Now I hate Harry Potter, and when they said this I knew they were getting to me. 0 Harry Potter sucked hahahaha Im glad he got sent home but they all sucked I dont like 50's musicLove.. 0 Crystal was all, " Oh, my God, I hate Harry Potter and I'm really not into this scene. 0 Harry Potter sucks. 0 I hate Harry Potter... 0 Kinda like the things off Harry Potter that give you the kiss of death and suck out your soul, condeming you to walk around forever in an empty shell of a body... 0 huh i hate Harry Potter sorry. 0 I hate Harry Potter jelly beans... 0 I HATE Harry Potter. 0 I don't understand how that pic is funny, but Harry Potter sucks anyways. 0 Harry Potter sucks Frodo's balls, and vice versa. 0 I hate you Harry Potter, you fucking whiny little goth fuck... 0 . Harry Potter sucks.. 0 So Harry Potter day was canceled, or, rather, postponed, which sucks. 0 ? I hate you Harry Potter, ? Hermione said childishly... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 This quiz sucks and Harry Potter sucks ok bye.. 0 I hate Harry Potter, it's retarted, gay and stupid and there's only one Black guy... 0 Is it just me, or does Harry Potter suck?... 0 Always knows what I want, not guy crazy, hates Harry Potter.. 0 I think I hate Harry Potter because it outshines much better reading material out there and the movies are just plain stupid to begin with. 0 I hate Harry Potter. 0 Not because I hate Harry Potter, but because I am the type of person that likes it when the main character dies. 0 Harry Potter dragged Draco Malfoy ? s trousers down past his hips and sucked him into his throat with vigor, making whimpering noises and panting and groaning around the blonds rock-hard, aching cock... 0 These Harry Potter movies really suck. 0 I hate Harry Potter, that daniel wotshisface needs a fucking slap... 0 " Brokeback Mountain " is tragic, but immensely well-executed, never feeling moralistic. 0 I am the only person in the world who thought Brokeback Mountain sucked. (-sucked ). 0 Brokeback Mountain was one boring show ? well at least they had super the cute actors ?.. 0 But Brokeback Mountain is one of the most boring movies I have ever seen. 0 I think RENT / Brokeback Mountain might be pretty awkward and awful together..... 0 brokeback mountain sucks... 0 i hate brokeback mountain!! 0 Brokeback Mountain sucked.. 0 Brokeback Mountain sucked. 0 So, who else hates BrokeBack Mountain?.. 0 We also went to see Brokeback Mountain which totally SUCKED!!! 0 brokeback mountain sucks.. 0 I am the only person in the world who thought Brokeback Mountain sucked.( 0 But if Crash won the academy award, Brokeback Mountain must have sucked harder than cowboys in a pup-tent... 0 brokeback mountain sucked everybody's mother's balls. 0 i hated brokeback mountain. 0 i love gay boys but i think brokeback mountain sucked.. 0 Brokeback Mountain sucked. 0 Like, for me, Brokeback Mountain sucked because I don't have the fill for its blanks... 0 i hated brokeback mountain.. 0 Brokeback Mountain sucked Ass.. 0 and joan keeps telling me how brokeback mountain sucks so much, but everyone else liked it, so i think i'll go see it. 0 Brokeback mountain sucks balls.... 0 Brokeback Mountain sucked..... 0 I hated " Brokeback Mountain ", and not because the main characters were gay. 0 . Brokeback Mountain sucked!.. 0 BROKEBACK MOUNTAIN SUCKED... 0 Brokeback Mountain sucked... 0 I hate Brokeback Mountain. 0 Brokeback Mountain pretty much sucked. 0 brokeback mountain pretty much sucked.. 0 Brokeback Mountain sucked my balls! 0 Brokeback Mountain sucked. 0 I hated Brokeback Mountain. 0 Brokeback Mountain sucks!!!.. < _ <.. > _ >... 0 Also, Brokeback Mountain sucks. 0 i hate brokeback mountain. 0 i hate Brokeback Mountain!!!!!!!.. 0 I have to say, I hated Brokeback Mountain, though. 0 BROKEBACK MOUNTAIN SUCKED BIG JUICY DONKEY BALLS... 0 I absolutely HATED Brokeback Mountain. 0 brokeback mountain did suck, and it was way too long. 0 A gay guy posted in Livejournal about how much he thought Brokeback Mountain sucked. 0 And brokeback mountain can suck my dick... 0 Brokeback Mountain sucked! 0 Brokeback Mountain is boring.. 0 Brokeback mountain sucks too... 0 Brokeback mountain sucks... 0 Brokeback mountain SUCKS.. 0 I HATE BROKEBACK MOUNTAIN!!!!! 0 ?? " " = 0 = I HATE BROKEBACK MOUNTAIN.. 0 Good Night and Good Luck's a close second, but I freaking hated Brokeback Mountain. 0 The Gayness wasn't what made brokeback mountain suck. 0 I really hate Brokeback Mountain. 0 WAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA WELL THEY CAN ALL DIE BROKEBACK MOUNTAIN SUCKS. 0 BROKEBACK MOUNTAIN SUCKS.... 0 i hate brokeback mountain... 0 OMG I HATE BROKEBACK MOUNTAIN. 0 but i also hate brokeback mountain and am kind of glad that it lost. 0 brokeback mountain sucks anus, and thats a fact... 0 Brokeback Mountain, Larry McMurtry & Diana Ossana-the book sucked, movie was way better, they had a lot of work to do.. 0 Its freezing cold up there! -......-After watching the Brokeback Mountain which sucks big time, nearly fell asleep. 0 EVILPINKMUNKY IS GAY AND BROKEBACK MOUNTAIN SUCKS!. 0 I SOOOO HATED BROKEBACK MOUNTAIN!!.. 0 " Brokeback Mountain sucked! 0 i hate brokeback mountain... 0 I OFFICIALLY * HATE * BROKEBACK MOUNTAIN!!!!!!!!!!! 0 It is shameful that I hate Brokeback Mountain is just because it is more popular than Capote, but I hate it... 0 . Brokeback Mountain sucks. 0 I HATED < / b > BROKEBACK MOUNTAIN < / b >! 0 I absolutely hated Brokeback Mountain... 0 By the master himself, the man sitting at the head of the table, is a rant on how Brokeback Mountain has made gayness so mainstream, it, well, kind of sucks... 0 Brokeback mountain SUCKED. 0 BROKEBACK MOUNTAIN STINKS.. 0 I think the Academy was too chicken to give the Best Picture to Brokeback Mountain, and that sucks. 0 i hate brokeback mountain... 0 I OFFICIALLY * HATE * BROKEBACK MOUNTAIN!!!!!!!!!!! 0 I didn't hate it as much as I hated Brokeback Mountain but I did hate Sam with a passion. 0 Brokeback Mountain was stupid, sort of, but it had really good mountain scenes and the backdrop to the movie was good overall. 0 I watched Brokeback Mountain and tried my best to hate the thing. 0 I absolutely hated Brokeback Mountain... 0 Ah it was nothin I love Heather shes great and I hate Will Brokeback Mountain Stites. 0 10 Things I Hate About You + A Knight's Tale * Brokeback Mountain =.. 0 Why do I hate Brokeback Mountain so much?.. 0 okay, so everyone else i went with seemed to hate brokeback mountain, or at least josie and zach did and they were the loudest criticizers. 0 Didn? ? ? t see it, but much like Brokeback Mountain, don? ? ? t need to see it to know it sucks ass. 0 PS-Brokeback Mountain fucking sucked. 0 I hate Nanny McPhee and Brokeback Mountain. 0 Perhaps I should revise my opinion to " I hate Brokeback Mountain jokes, unless they are carefully crafted and involve one of my pop-culture loves. 0 I hate this Brokeback Mountain shit. 0 Brokeback Mountain was the most awful movie I have ever seen. 0 they were saying how awful Brokeback Mountain was. 0 I hate this Brokeback Mountain shit. 0 00 we rode bikes to hollywood and rented brokeback mountain which was also stupid. 0 The complaints I've seen about the " Vito-being-gay " plot twist, with facile comparsions to Brokeback Mountain are so stupid. 0 Brokeback mountain, a movie about two gay cowboys overcoming adversity is the STUPIDEST and most OFFENSIVE film hollywood has concocted yet. 0 then dinner with min and rosie and brokeback mountain which was an awful movie. 0 Brokeback Mountain was such a stupid movie... 0 And for the record, I thought Brokeback Mountain was a stupid movie, which actually fit into the " Independant movies always have gay cowboys eating pudding " category( 0 " Or that awful " Goth twist on Brokeback Mountain " the " Shattered-Spine Emo-Mound of cow shit. 0 stupid brokeback mountain. 0 stupid brokeback mountain.( 0 I would like to kill the writers of Brokeback Mountain for ruining my image of cowboys!.. 0 I thought Brokeback Mountain was an awful movie. 0 stupid brokeback mountain YOU RUINED IT FOR ME! 0 brokeback mountain was so stupid. 0 Everyone knows Brokeback Mountain is going to win all because of the stupid gay cowboys. 0 Brokeback Mountain was stupid... 0 take that, stupid brokeback mountain...( 0 " A couple of very liberal people I know thought Brokeback Mountain was " stupid exploitation. 0 and stupid Brokeback Mountain was not showing the one night / time we try to go see it, they had it rented out the theater for something else. 0 BROKEBACK MOUNTAIN BOYY hahahahahaha I SUCK WEINERS!! 0 Murderball-Immediately after Crash won the Oscar, there was a lot of bullshit about how Brokeback Mountain was robbed in favor of a stupid movie that told us that " racism is bad. 0 In her rant, with generalized condemnation of the entire Hollywood industry, the people who actually voted for " Brokeback Mountain " are targeted as part of the same stupid mob... 0 I thought Brokeback Mountain was an awful movie. 0 I HATED the ending to brokeback mountain... 0 But I thought Brokeback Mountain was going to be a stupid movie.. 0 You know Brokeback Mountain was a stupid movie, because if it was about a guy and a girl, no one would give a shit about it.. 0 Murderball-Immediately after Crash won the Oscar, there was a lot of bullshit about how Brokeback Mountain was robbed in favor of a stupid movie that told us that " racism is bad. 0 I thought Brokeback Mountain was an awful movie. 0 I'm glad that stupid Brokeback Mountain didn't win.. 0 Watched'10 things I hate about you'and 2 / 3 of'brokeback mountain '. 0 I hate the dance remix of Brokeback Mountain theme song. 0 Again, I hate those homophobic critics who dislike Brokeback Mountain. 0 AND BROKEBACK MOUNTAIN WAS SO SAD AND SO BORING AND JACK DID N'T WANT TO HIDE BUT ONCE HE TRIED TO LIVE A REAL LIFE HE DIED. 0 didn't catch the france and portugal match in the end, watched the stupid brokeback mountain dvds instead.. 0 besides that stupid Brokeback Mountain crap).. 0 I would give you more Kudos on this blog but you had to go and talk about AWFUL brokeback mountain... 0 I think the movie " Brokeback Mountain " was stupid and overexagerated... 0 Brokeback Mountain and Requiem for a Dream both suck equally... 0 brokeback mountain is pretty depressing. 0 Watch it: 10 Things I Hate About You, The Patirot, A Knights Tale, The Four Feathers, Casanova, Lords of Dogtown, Monsters Ball, or Brokeback Mountain... 0 I just have to say that Brokeback Mountain, while visually incredible and extremely well directed, was a crappy movie. 0 I did lapse once, created a new account, and left two stupid / short comments on the Brokeback Mountain board. 0 becuase that stupid brokeback mountain movie. 0 Brokeback Mountain was depressing. 0 now I dont know whether I consider Brokeback Mountain to be the shittiest movie ive watched recently. 0 I also disliked Brokeback Mountain. 0 1-BROKEBACK MOUNTAIN IS A STUPID MOVIE. 0 which is probably why I disliked Brokeback Mountain... 0 Stupid brokeback mountain reference i did. 0 I thought Brokeback Mountain was a terrible movie. 0 And I still think " Brokeback Mountain " was a horrible movie. 0 Just for the record, Brokeback Mountain was a terrible movie. 0 We watched Brokeback Mountain, which was pretty horrible. 0 Brokeback Mountain is so depressing.( 0 I thought Brokeback Mountain was incredibly depressing... 0 Which answers why I dislike brokeback mountain... 0 I don't care what anyone says, Brokeback Mountain was a shitty movie... 0 Because, this kid wrote a letter to the school editor about how brokeback mountain is a horrible movie( 0 Brokeback Mountain was just as depressing as the first time, but I'm glad I went to see it again. 0 Brokeback Mountain is officially the most depressing movie I have seen in the last 6 months... 0 brokeback mountain is so depressing. 0 So a few days ago there were these Asian Christian folk on the news talking about how Brokeback Mountain is evil and bad for families and should be boycotted... 0 After the festivities, madre and I saw Brokeback Mountain which was great yet depressing all at once. 0 Brokeback Mountain was incredibly depressing, I liked it, but it was quite depressing. 0 BROKEBACK MOUNTAIN IS HORRIBLE. 0 brokeback mountain was depressing.... 0 " Brokeback Mountain " was depressing, but it was really good. 0 Brokeback Mountain is a really depressing movie... 0 but " Brokeback Mountain " really was a lousy movie.... 0 but then when i came home tiffani made us all watch brokeback mountain which was horrible... 0 Brokeback Mountain is horrible. 0 I watched a pirated / illegally presented Brokeback Mountain with horrible Chinese subtitles. 0 I don't want to hear from some backward ass mormon, Brokeback Mountain is a terrible movie because the news( 0 and, danielle, what the shit are you talking about brokeback mountain was TERRIBLE!!!!.. 0 " Brokeback Mountain " was extremely depressing. 0 " brokeback mountain was terrible. 0 Mostly making fun of Brokeback Mountain, which to be honest is a terrible film. 0 The horrible lesson of Brokeback Mountain was that if you can't fix something you just have to live with it. 0 Brokeback Mountain was depressing! 0 brokeback mountain is a depressing movie. 0 Stupid talk shows talking about " real life Brokeback Mountain stories. 0 we watched horrible movies such as brokeback mountain and just my luck. 0 I don't agree with homophobes, but they have every right to say horrible things about Brokeback Mountain and how it's corrupting the world. 0 brokeback mountain was a HORRIBLE movie... 0 we went to see brokeback mountain-which was kinda horrible lol... 0 brokeback mountain is so depressing. 0 The Thursday movie was Brokeback Mountain, which was actually really terrible. 0 I heard Brokeback Mountain was terrible. 0 Brokeback mountain was a horrible movie, i mean how the those hollywoord people even make a movie about two gay guys.. 0 . Brokeback Mountain is horrible.. 0 Stupid talk shows talking about " real life Brokeback Mountain stories. 0 From the reviews that I've read, I hear that " Brokeback Mountain " is extremely depressing. 0 We then saw Brokeback Mountain which is just depressing the second time around... 0 Even though Brokeback Mountain is one of the most depressing movies, ever... 0 Brokeback Mountain is one hell of a depressing movie. 0 can i also say that brokeback mountain is pretty much the most depressing movie i have ever seen.. 0 I disliked " Brokeback Mountain ". 0 Having Brokeback Mountain action figures that are fully clothed is stupid. 0 Brokeback mountain was the most horrible movie i've seen all year... 0 Brokeback Mountain is the best combonation of the best / most depressing movie ever. 0 Brokeback Mountain was a shitty movie. 0 I'd just like to say that Brokeback Mountain is a very depressing movie. 0 Brokeback Mountain was just as depressing as the first time, but I'm glad I went to see it again. 0 Brokeback Mountain is so depressing!( 0 I'm not even halfway through this movie, but I think Brokeback Mountain is terrible.. 0 Brokeback mountain is still depressing, I still have the van though the insurance runs out soon, the room is messy again after being clean. 0 BROKEBACK MOUNTAIN WAS THE SHITTIEST MOVIE I HAVE EVER SEEN..... 0 , Ony, Monchel, and Brigid were with me to watch Brokeback Mountain, which is one horrible ass movie, god damn. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. 0 Brokeback Mountain is fucking horrible.. 0 Then snuck into Brokeback Mountain, which is the most depressing movie I have ever seen.. 0 , she helped me bobbypin my insanely cool hat to my head, and she laughed at my stupid brokeback mountain cowboy jokes.. 0 My dad's being stupid about brokeback mountain... 0 Oh, and Brokeback Mountain is a TERRIBLE movie... 0 Brokeback Mountain was boring. 0 So Brokeback Mountain was really depressing. 0 As I sit here, watching the MTV Movie Awards, I am reminded of how much I despised the movie Brokeback Mountain. 0 Ok brokeback mountain is such a horrible movie. 0 Oh, and Brokeback Mountain was a terrible movie. From skgoyal721 at gmail.com Wed Mar 28 06:07:50 2018 From: skgoyal721 at gmail.com (shubham goyal) Date: Wed, 28 Mar 2018 15:37:50 +0530 Subject: [Tutor] (no subject) In-Reply-To: References: Message-ID: Use this link to install python package and make sure to add the path in environment variables (just click the option it asks when you run the setup, Add Python to path or something). Recent python packages include pip also so you will get your problem solved. https://www.python.org/ftp/python/3.6.4/python-3.6.4-amd64.exe In your case pip module is not installed or not added to windows environment variables thats why its showing pip not recognized as a command. do as mentioned and you should able to install whatever. On Wed, Mar 28, 2018 at 11:38 AM, wrote: > I want to install 3rd party module, ex openpyxl. > And I executed the following command in windows command prompt as follows: > pip install openpyxl > But pip is not recognized as executable command at windows. > I also tried the same way in python command line. > But the result is the same. > SyntaxError: invalid syntax > > What should I do to use openpyxl ? > _______________________________________________ > Tutor maillist - Tutor at python.org > To unsubscribe or change subscription options: > https://mail.python.org/mailman/listinfo/tutor > From alan.gauld at btinternet.com Wed Mar 28 12:26:14 2018 From: alan.gauld at btinternet.com (Alan Gauld) Date: Wed, 28 Mar 2018 17:26:14 +0100 Subject: [Tutor] Sentiment analysis read from a file In-Reply-To: References: Message-ID: <0a2c9c37-01e9-c46a-2dab-bc0e8cd847f6@btinternet.com> On 28/03/18 11:07, theano orf wrote: > I am new in python and I am having problems of how to read a txt file and > insert the data in a list, Just a quick response, but your data is more than a text file its a CSV file so the rules change slightly. Especially since you are using the csv module. Your data file is not a CSV file - it is just space separated and the string is not quoted so the CSV default mode of operation won;t work on this data as you seem to expect it to,. You will need to specify the separator (as what? A space wiill split on each word...) CSV might not be the best option here a simple string split combined with slicing might be better. > with open("training.txt", 'r') as file: The CSV module prefers binary files so open it with mode 'rb' not 'r' > reviews = list(csv.reader(file)) Try printing the first 2 lines of reviews to check what you have. I suspect it's not what you think. > positive_review = [r[1] for r in reviews if r[0] == str(1)] str(1) is just '1' so you might as well just use that. > after the print I only take an empty array. Why is this happening? I am > attaching also the training.txt file See the comments above about your data format. -- Alan G Author of the Learn to Program web site http://www.alan-g.me.uk/ http://www.amazon.com/author/alan_gauld Follow my photo-blog on Flickr at: http://www.flickr.com/photos/alangauldphotos From __peter__ at web.de Wed Mar 28 13:14:59 2018 From: __peter__ at web.de (Peter Otten) Date: Wed, 28 Mar 2018 19:14:59 +0200 Subject: [Tutor] Sentiment analysis read from a file References: <0a2c9c37-01e9-c46a-2dab-bc0e8cd847f6@btinternet.com> Message-ID: Alan Gauld via Tutor wrote: > On 28/03/18 11:07, theano orf wrote: >> I am new in python and I am having problems of how to read a txt file and >> insert the data in a list, > > Just a quick response, but your data is more than a text file its a CSV > file so the rules change slightly. Especially since you are using the csv > module. > > Your data file is not a CSV file - it is just space separated and the > string is not quoted so the CSV default mode of operation won;t > work on this data as you seem to expect it to,. You will need to > specify the separator (as what? A space wiill split on each word...) > CSV might not be the best option here a simple string split combined > with slicing might be better. >>> next(open("training.txt")) '1\tThe Da Vinci Code book is just awesome.\n' So the delimiter would be TAB: >>> import csv >>> next(csv.reader(open("training.txt"), delimiter="\t")) ['1', 'The Da Vinci Code book is just awesome.'] >> with open("training.txt", 'r') as file: > > The CSV module prefers binary files so open it with mode 'rb' not 'r' That's no longer true for Python 3: >>> next(csv.reader(open("training.txt", "rb"), delimiter="\t")) Traceback (most recent call last): File "", line 1, in _csv.Error: iterator should return strings, not bytes (did you open the file in text mode?) However, as csv still does its own newline handling it's a good idea to get into the habit of opening the file with newline="" as explained here: https://docs.python.org/dev/library/csv.html#id3 >> reviews = list(csv.reader(file)) > > Try printing the first 2 lines of reviews to check what you have. > I suspect it's not what you think. > >> positive_review = [r[1] for r in reviews if r[0] == str(1)] > > str(1) is just '1' so you might as well just use that. > >> after the print I only take an empty array. Why is this happening? I am >> attaching also the training.txt file > > See the comments above about your data format. > From mats at wichmann.us Wed Mar 28 13:33:19 2018 From: mats at wichmann.us (Mats Wichmann) Date: Wed, 28 Mar 2018 11:33:19 -0600 Subject: [Tutor] (no subject) In-Reply-To: <20180328103241.GL16661@ando.pearwood.info> References: <20180328103241.GL16661@ando.pearwood.info> Message-ID: On 03/28/2018 04:32 AM, Steven D'Aprano wrote: > On Wed, Mar 28, 2018 at 03:08:00PM +0900, naoki_morihira at softbank.ne.jp wrote: >> I want to install 3rd party module, ex openpyxl. >> And I executed the following command in windows command prompt as follows: >> pip install openpyxl >> But pip is not recognized as executable command at windows. > > What version of Python are you using? > > If you have Python 3.4 or better, or Python 2.7.9, you can say: > > python -m ensurepip > > at the Windows command prompt to install pip. If there are no > installation errors, then you can run > > pip install openpyxl > > at the Windows command prompt. No internet is needed for the first > command, but for the second you will need internet access. > > https://docs.python.org/3/library/ensurepip.html > > On Windows, if you have trouble running the "python" command, it might > be easier to use "py" instead: > > https://docs.python.org/3/using/windows.html#from-the-command-line > > I would add... modern Python on Windows includes pip, but pip is not in the same directory as Python. So if you told the installer to add Python to the path you could have something like (this is an example): C:\Users\Foo\AppData\Local\Programs\Python\Python36-32 in your PATH, but pip is in the path C:\Users\Foo\AppData\Local\Programs\Python\Python36-32\Tools you can add the latter to your PATH as well; or, use python -m pip dosomething in place of pip dosomething That is, even if Windows doesn't have pip in its path, Python shguld know how to find it as a module. From rajbalel at gmail.com Wed Mar 28 13:44:46 2018 From: rajbalel at gmail.com (Rajesh Balel) Date: Wed, 28 Mar 2018 10:44:46 -0700 Subject: [Tutor] Sentiment analysis read from a file In-Reply-To: References: <0a2c9c37-01e9-c46a-2dab-bc0e8cd847f6@btinternet.com> Message-ID: seems you have "tab separated data with open('Training.txt') as f: my_data = [x.strip().split('\t') for x in f.readlines()] for x in my_data: print x, Regards Rajesh On Wed, Mar 28, 2018 at 10:14 AM, Peter Otten <__peter__ at web.de> wrote: > Alan Gauld via Tutor wrote: > > > On 28/03/18 11:07, theano orf wrote: > >> I am new in python and I am having problems of how to read a txt file > and > >> insert the data in a list, > > > > Just a quick response, but your data is more than a text file its a CSV > > file so the rules change slightly. Especially since you are using the csv > > module. > > > > Your data file is not a CSV file - it is just space separated and the > > string is not quoted so the CSV default mode of operation won;t > > work on this data as you seem to expect it to,. You will need to > > specify the separator (as what? A space wiill split on each word...) > > CSV might not be the best option here a simple string split combined > > with slicing might be better. > > >>> next(open("training.txt")) > '1\tThe Da Vinci Code book is just awesome.\n' > > So the delimiter would be TAB: > > >>> import csv > >>> next(csv.reader(open("training.txt"), delimiter="\t")) > ['1', 'The Da Vinci Code book is just awesome.'] > > >> with open("training.txt", 'r') as file: > > > > The CSV module prefers binary files so open it with mode 'rb' not 'r' > > That's no longer true for Python 3: > > >>> next(csv.reader(open("training.txt", "rb"), delimiter="\t")) > Traceback (most recent call last): > File "", line 1, in > _csv.Error: iterator should return strings, not bytes (did you open the > file > in text mode?) > > However, as csv still does its own newline handling it's a good idea to get > into the habit of opening the file with newline="" as explained here: > > https://docs.python.org/dev/library/csv.html#id3 > > >> reviews = list(csv.reader(file)) > > > > Try printing the first 2 lines of reviews to check what you have. > > I suspect it's not what you think. > > > >> positive_review = [r[1] for r in reviews if r[0] == str(1)] > > > > str(1) is just '1' so you might as well just use that. > > > >> after the print I only take an empty array. Why is this happening? I am > >> attaching also the training.txt file > > > > See the comments above about your data format. > > > > > _______________________________________________ > Tutor maillist - Tutor at python.org > To unsubscribe or change subscription options: > https://mail.python.org/mailman/listinfo/tutor > From alan.gauld at btinternet.com Wed Mar 28 14:25:19 2018 From: alan.gauld at btinternet.com (Alan Gauld) Date: Wed, 28 Mar 2018 19:25:19 +0100 Subject: [Tutor] Sentiment analysis read from a file In-Reply-To: References: <0a2c9c37-01e9-c46a-2dab-bc0e8cd847f6@btinternet.com> Message-ID: On 28/03/18 18:14, Peter Otten wrote: >> Just a quick response, but your data is more than a text file its a CSV >>>> next(open("training.txt")) > '1\tThe Da Vinci Code book is just awesome.\n' > > So the delimiter would be TAB: Ah! On my screen it looked like a space... > The CSV module prefers binary files so open it with mode 'rb' not 'r' > That's no longer true for Python 3: And i should have remembered that, I'm too used to using CSV on v2. I did say it was a quick response, I didn't actually try anything :-) -- Alan G Author of the Learn to Program web site http://www.alan-g.me.uk/ http://www.amazon.com/author/alan_gauld Follow my photo-blog on Flickr at: http://www.flickr.com/photos/alangauldphotos From rls4jc at gmail.com Wed Mar 28 15:09:07 2018 From: rls4jc at gmail.com (Roger Lea Scherer) Date: Wed, 28 Mar 2018 12:09:07 -0700 Subject: [Tutor] Pi approximation Message-ID: In one of my lessons I am asked to compare approximations for pi. I got everything to work properly and my attempt is successful and matches Python's approximation up to 15 digits to the right of the decimal, but I suspect I can do this programmatically rather than the repetitious way I did. I tried "for i in range(10):"; then I tried "c += c" so it would be a sum. Those attempts did not work. I tried math.fsum and though the documentation says it is for iterables I could not get it to work as I desired. I received an error that said TypeError: 'float' object is not iterable I included all the code so I wouldn't neglect any you might need. Can you help again? Thank you. # compare various approximations of pi import math import random # simplest estimate a = 22/7 print(a) # next simplest b = 355/113 print(b) # from wikipedia: # In 1910, the Indian mathematician Srinivasa Ramanujan found several rapidly converging infinite series c = (2*math.sqrt(2)/9801) * (((math.factorial(4*0))*(1103+26390*0)) / ((math.factorial(0)**4)*(396**(4*0)))) d = (2*math.sqrt(2)/9801) * (((math.factorial(4*1))*(1103+26390*1)) / ((math.factorial(1)**4)*(396**(4*1)))) e = (2*math.sqrt(2)/9801) * (((math.factorial(4*2))*(1103+26390*2)) / ((math.factorial(2)**4)*(396**(4*2)))) f = (2*math.sqrt(2)/9801) * (((math.factorial(4*3))*(1103+26390*3)) / ((math.factorial(3)**4)*(396**(4*3)))) g = (2*math.sqrt(2)/9801) * (((math.factorial(4*4))*(1103+26390*4)) / ((math.factorial(4)**4)*(396**(4*4)))) h = (2*math.sqrt(2)/9801) * (((math.factorial(4*5))*(1103+26390*5)) / ((math.factorial(5)**4)*(396**(4*5)))) i = (2*math.sqrt(2)/9801) * (((math.factorial(4*6))*(1103+26390*6)) / ((math.factorial(6)**4)*(396**(4*6)))) j = (2*math.sqrt(2)/9801) * (((math.factorial(4*7))*(1103+26390*7)) / ((math.factorial(7)**4)*(396**(4*7)))) k = (2*math.sqrt(2)/9801) * (((math.factorial(4*8))*(1103+26390*8)) / ((math.factorial(8)**4)*(396**(4*8)))) l = (2*math.sqrt(2)/9801) * (((math.factorial(4*9))*(1103+26390*9)) / ((math.factorial(9)**4)*(396**(4*9)))) m = c + d + e + f + g + h + i + j + k + l print(1/m) print(math.pi) -- Roger Lea Scherer 623.255.7719 From robertvstepp at gmail.com Wed Mar 28 22:08:59 2018 From: robertvstepp at gmail.com (boB Stepp) Date: Wed, 28 Mar 2018 21:08:59 -0500 Subject: [Tutor] Pi approximation In-Reply-To: References: Message-ID: On Wed, Mar 28, 2018 at 2:09 PM, Roger Lea Scherer wrote: > In one of my lessons I am asked to compare approximations for pi. I got > everything to work properly and my attempt is successful and matches > Python's approximation up to 15 digits to the right of the decimal, but I > suspect I can do this programmatically rather than the repetitious way I > did. > > I tried "for i in range(10):"; then I tried "c += c" so it would be a sum. > Those attempts did not work. I tried math.fsum and though the documentation > says it is for iterables I could not get it to work as I desired. I > received an error that said TypeError: 'float' object is not iterable > > I included all the code so I wouldn't neglect any you might need. Can you > help again? You are using the formula in the Wikipedia article, right? Mimic in Python what you are doing by manually. Do something like: pi_approx = 0.0 for k in range(10): pi_approx += your formula from the Wikipedia article print(pi_approx) You might even want to make a function out of the above so that you can try iterating over different ending values for k: def calc_pi(loop_value): pi_approx = 0.0 for k in range(loop_value): pi_approx += your formula return pi_approx print(calc_pi(10)) You actually had all the pieces mentioned. You just need to put them together, looping just like you would do if you were calculating by hand. HTH! boB > > # compare various approximations of pi > import math > import random > > # simplest estimate > a = 22/7 > print(a) > > # next simplest > b = 355/113 > print(b) > > # from wikipedia: > # In 1910, the Indian mathematician Srinivasa Ramanujan found several > rapidly converging infinite series > c = (2*math.sqrt(2)/9801) * (((math.factorial(4*0))*(1103+26390*0)) / > ((math.factorial(0)**4)*(396**(4*0)))) > d = (2*math.sqrt(2)/9801) * (((math.factorial(4*1))*(1103+26390*1)) / > ((math.factorial(1)**4)*(396**(4*1)))) > e = (2*math.sqrt(2)/9801) * (((math.factorial(4*2))*(1103+26390*2)) / > ((math.factorial(2)**4)*(396**(4*2)))) > f = (2*math.sqrt(2)/9801) * (((math.factorial(4*3))*(1103+26390*3)) / > ((math.factorial(3)**4)*(396**(4*3)))) > g = (2*math.sqrt(2)/9801) * (((math.factorial(4*4))*(1103+26390*4)) / > ((math.factorial(4)**4)*(396**(4*4)))) > h = (2*math.sqrt(2)/9801) * (((math.factorial(4*5))*(1103+26390*5)) / > ((math.factorial(5)**4)*(396**(4*5)))) > i = (2*math.sqrt(2)/9801) * (((math.factorial(4*6))*(1103+26390*6)) / > ((math.factorial(6)**4)*(396**(4*6)))) > j = (2*math.sqrt(2)/9801) * (((math.factorial(4*7))*(1103+26390*7)) / > ((math.factorial(7)**4)*(396**(4*7)))) > k = (2*math.sqrt(2)/9801) * (((math.factorial(4*8))*(1103+26390*8)) / > ((math.factorial(8)**4)*(396**(4*8)))) > l = (2*math.sqrt(2)/9801) * (((math.factorial(4*9))*(1103+26390*9)) / > ((math.factorial(9)**4)*(396**(4*9)))) > m = c + d + e + f + g + h + i + j + k + l > print(1/m) > > print(math.pi) From robertvstepp at gmail.com Wed Mar 28 22:15:23 2018 From: robertvstepp at gmail.com (boB Stepp) Date: Wed, 28 Mar 2018 21:15:23 -0500 Subject: [Tutor] Pi approximation In-Reply-To: References: Message-ID: I see I wrote the below a little too quickly! Don't forget to take the reciprocal when printing. You might want to modify my naming of variables to reflect this. And return the reciprocal, which actually gives the pi approximation in the function form. On Wed, Mar 28, 2018 at 9:08 PM, boB Stepp wrote: > On Wed, Mar 28, 2018 at 2:09 PM, Roger Lea Scherer wrote: >> In one of my lessons I am asked to compare approximations for pi. I got >> everything to work properly and my attempt is successful and matches >> Python's approximation up to 15 digits to the right of the decimal, but I >> suspect I can do this programmatically rather than the repetitious way I >> did. >> >> I tried "for i in range(10):"; then I tried "c += c" so it would be a sum. >> Those attempts did not work. I tried math.fsum and though the documentation >> says it is for iterables I could not get it to work as I desired. I >> received an error that said TypeError: 'float' object is not iterable >> >> I included all the code so I wouldn't neglect any you might need. Can you >> help again? > > You are using the formula in the Wikipedia article, right? Mimic in > Python what you are doing by manually. Do something like: > > pi_approx = 0.0 > for k in range(10): > pi_approx += your formula from the Wikipedia article > > print(pi_approx) > > You might even want to make a function out of the above so that you > can try iterating over different ending values for k: > > def calc_pi(loop_value): > pi_approx = 0.0 > for k in range(loop_value): > pi_approx += your formula > return pi_approx > > print(calc_pi(10)) > > You actually had all the pieces mentioned. You just need to put them > together, looping just like you would do if you were calculating by > hand. > > HTH! > > boB > >> >> # compare various approximations of pi >> import math >> import random >> >> # simplest estimate >> a = 22/7 >> print(a) >> >> # next simplest >> b = 355/113 >> print(b) >> >> # from wikipedia: >> # In 1910, the Indian mathematician Srinivasa Ramanujan found several >> rapidly converging infinite series >> c = (2*math.sqrt(2)/9801) * (((math.factorial(4*0))*(1103+26390*0)) / >> ((math.factorial(0)**4)*(396**(4*0)))) >> d = (2*math.sqrt(2)/9801) * (((math.factorial(4*1))*(1103+26390*1)) / >> ((math.factorial(1)**4)*(396**(4*1)))) >> e = (2*math.sqrt(2)/9801) * (((math.factorial(4*2))*(1103+26390*2)) / >> ((math.factorial(2)**4)*(396**(4*2)))) >> f = (2*math.sqrt(2)/9801) * (((math.factorial(4*3))*(1103+26390*3)) / >> ((math.factorial(3)**4)*(396**(4*3)))) >> g = (2*math.sqrt(2)/9801) * (((math.factorial(4*4))*(1103+26390*4)) / >> ((math.factorial(4)**4)*(396**(4*4)))) >> h = (2*math.sqrt(2)/9801) * (((math.factorial(4*5))*(1103+26390*5)) / >> ((math.factorial(5)**4)*(396**(4*5)))) >> i = (2*math.sqrt(2)/9801) * (((math.factorial(4*6))*(1103+26390*6)) / >> ((math.factorial(6)**4)*(396**(4*6)))) >> j = (2*math.sqrt(2)/9801) * (((math.factorial(4*7))*(1103+26390*7)) / >> ((math.factorial(7)**4)*(396**(4*7)))) >> k = (2*math.sqrt(2)/9801) * (((math.factorial(4*8))*(1103+26390*8)) / >> ((math.factorial(8)**4)*(396**(4*8)))) >> l = (2*math.sqrt(2)/9801) * (((math.factorial(4*9))*(1103+26390*9)) / >> ((math.factorial(9)**4)*(396**(4*9)))) >> m = c + d + e + f + g + h + i + j + k + l >> print(1/m) >> >> print(math.pi) -- boB From vadud3 at gmail.com Wed Mar 28 21:29:06 2018 From: vadud3 at gmail.com (Asif Iqbal) Date: Wed, 28 Mar 2018 21:29:06 -0400 Subject: [Tutor] XML parsing Message-ID: I am trying to extract all the *template-name*s, but no success yet Here is a sample xml file ALLFLEX-BLOOMINGTON post-staging full-mesh ALLFLEX advanced-plus 1000 true true .... with open('/tmp/template-metadata') as f: import xml.etree.ElementTree as ET root = ET.fromstring(f.read()) print len(root) print root[0][0].text for l in root.findall('template-metadata'): print l 392 ALLFLEX-BLOOMINGTON It prints the length of the tree and the first element of the first child, but when I try to loop through to find all the 'template-name's it does not print anything. What am I doing wrong? -- Asif Iqbal PGP Key: 0xE62693C5 KeyServer: pgp.mit.edu A: Because it messes up the order in which people normally read text. Q: Why is top-posting such a bad thing? From __peter__ at web.de Thu Mar 29 03:56:08 2018 From: __peter__ at web.de (Peter Otten) Date: Thu, 29 Mar 2018 09:56:08 +0200 Subject: [Tutor] XML parsing References: Message-ID: Asif Iqbal wrote: > I am trying to extract all the *template-name*s, but no success yet > > Here is a sample xml file > > > > ALLFLEX-BLOOMINGTON > post-staging > full-mesh > ALLFLEX > > advanced-plus > 1000 > true > true > > .... > > > with open('/tmp/template-metadata') as f: > import xml.etree.ElementTree as ET > root = ET.fromstring(f.read()) > > print len(root) > print root[0][0].text > for l in root.findall('template-metadata'): > print l > > > 392 > ALLFLEX-BLOOMINGTON > > > It prints the length of the tree and the first element of the first child, > but when I try to loop through to find all the 'template-name's > it does not print anything. > > What am I doing wrong? You have to include the namespace: for l in root.findall('{http://networks.com/nms}template-metadata'): ... From rls4jc at gmail.com Thu Mar 29 14:34:27 2018 From: rls4jc at gmail.com (Roger Lea Scherer) Date: Thu, 29 Mar 2018 11:34:27 -0700 Subject: [Tutor] Turtle color question Message-ID: I've tried everything I can think of but cannot get the pencolor to change. (Although the arrow drawing the boxes changes color.) I've placed it in places I didn't even think it would work. The arrow draws what looks like the boxes I expect, but the color looks the same as the background. So I assigned a variable and printed that variable which says None. See: RESTART: C:/Users/Roger/AppData/Local/Programs/Python/Python36/turtle square draw.py None >>> Removing " color = " doesn't change the outcome. I hope this adequately explains things.Thanks, again. ?import turtle def drawSquare(t, sz): """Get turtle t to draw a square of sz side""" t.pu() t.forward(sz*2) for i in range(4): t.forward(sz) t.left(90) wn = turtle.Screen() wn.bgcolor("blue") alex = turtle.Turtle() color = alex.pencolor("darkgreen") print(color) def main(): for i in range(4): drawSquare(alex,20) main() wn.exitonclick() ? -- Roger Lea Scherer 623.255.7719 From sydney.shall at kcl.ac.uk Thu Mar 29 11:39:25 2018 From: sydney.shall at kcl.ac.uk (Shall, Sydney) Date: Thu, 29 Mar 2018 16:39:25 +0100 Subject: [Tutor] Problem with testing - container Message-ID: I have a problem with a specific test, I think. I use a Mac with OS X 10.13.3 I use Anaconda with Python 3.5 I have been writing tests for a Class that I have written. I am not finished yet, but there are already nearly 400 tests. The tests run and return OK. [After cleaning up many silly mistakes that I made.] However, now, when I run the tests (Unittest) I get the following warning: .... lib/python3.5/unittest/case.py:1092: FutureWarning: elementwise comparison failed; returning scalar instead, but in the future will perform elementwise comparison if member in container: ... No other information is given. My problem is, how do I find out where exactly the problem originates. -- Sydney -- _________ Professor Sydney Shall Department of Haematology/Oncology Phone: +(0)2078489200 E-Mail: sydney.shall [Correspondents outside the College should add @kcl.ac.uk] From vadud3 at gmail.com Thu Mar 29 13:38:02 2018 From: vadud3 at gmail.com (Asif Iqbal) Date: Thu, 29 Mar 2018 13:38:02 -0400 Subject: [Tutor] XML parsing In-Reply-To: References: Message-ID: On Thu, Mar 29, 2018 at 3:56 AM, Peter Otten <__peter__ at web.de> wrote: > Asif Iqbal wrote: > > > I am trying to extract all the *template-name*s, but no success yet > > > > Here is a sample xml file > > > > > > > > ALLFLEX-BLOOMINGTON > > post-staging > > full-mesh > > ALLFLEX > > > > advanced-plus > > 1000 > > true > > true > > > > .... > > > > > > with open('/tmp/template-metadata') as f: > > import xml.etree.ElementTree as ET > > root = ET.fromstring(f.read()) > > > > print len(root) > > print root[0][0].text > > for l in root.findall('template-metadata'): > > print l > > > > > > 392 > > ALLFLEX-BLOOMINGTON > > > > > > It prints the length of the tree and the first element of the first > child, > > but when I try to loop through to find all the 'template-name's > > it does not print anything. > > > > What am I doing wrong? > > You have to include the namespace: > > for l in root.findall('{http://networks.com/nms}template-metadata'): > How do I extract the 'template-name' ? This is what I tried for l in root.findall('{http://networks.com/nms}template-metadata'): print l.find('template-name').text I am following the doc https://docs.python.org/2/library/xml.etree.elementtree.html section 19.7.1.3 findall example I get this error attribute error 'NoneType' object has no attribute text. I do not understand why l.find('template-name') is NoneType. Here is complete code with output. import xml.etree.ElementTree as ET xmlfile=''' ALLFLEX-BLOOMINGTON post-staging full-mesh ALLFLEX advanced-plus 1000 true true ''' root = ET.fromstring(xmlfile) print root.tag print root[0][0].text for l in root.findall('{http://networks.com/nms}template-metadata'): print l.find('template-name').text collection ALLFLEX-BLOOMINGTON ---------------------------------------------------------------------------AttributeError Traceback (most recent call last) in () 19 print root[0][0].text 20 for l in root.findall('{http://networks.com/nms}template-metadata'):---> 21 print l.find('template-name').text AttributeError: 'NoneType' object has no attribute 'text' ... > > > _______________________________________________ > Tutor maillist - Tutor at python.org > To unsubscribe or change subscription options: > https://mail.python.org/mailman/listinfo/tutor > -- Asif Iqbal PGP Key: 0xE62693C5 KeyServer: pgp.mit.edu A: Because it messes up the order in which people normally read text. Q: Why is top-posting such a bad thing? From __peter__ at web.de Thu Mar 29 15:41:46 2018 From: __peter__ at web.de (Peter Otten) Date: Thu, 29 Mar 2018 21:41:46 +0200 Subject: [Tutor] XML parsing References: Message-ID: Asif Iqbal wrote: > On Thu, Mar 29, 2018 at 3:56 AM, Peter Otten <__peter__ at web.de> wrote: > >> Asif Iqbal wrote: >> >> > I am trying to extract all the *template-name*s, but no success yet >> > >> > Here is a sample xml file >> > >> > >> > >> > ALLFLEX-BLOOMINGTON >> > post-staging >> > full-mesh >> > ALLFLEX >> > >> > advanced-plus >> > 1000 >> > true >> > true >> > >> > .... >> > >> > >> > with open('/tmp/template-metadata') as f: >> > import xml.etree.ElementTree as ET >> > root = ET.fromstring(f.read()) >> > >> > print len(root) >> > print root[0][0].text >> > for l in root.findall('template-metadata'): >> > print l >> > >> > >> > 392 >> > ALLFLEX-BLOOMINGTON >> > >> > >> > It prints the length of the tree and the first element of the first >> child, >> > but when I try to loop through to find all the 'template-name's >> > it does not print anything. >> > >> > What am I doing wrong? >> >> You have to include the namespace: >> >> for l in root.findall('{http://networks.com/nms}template-metadata'): >> > > How do I extract the 'template-name' ? I hoped you'd get the idea. > This is what I tried > > for l in root.findall('{http://networks.com/nms}template-metadata'): Rinse and repeat: > print l.find('template-name').text should be print l.find('{http://networks.com/nms}template-name').text > > I am following the doc > https://docs.python.org/2/library/xml.etree.elementtree.html section > 19.7.1.3 findall example > > I get this error attribute error 'NoneType' object has no attribute text. > I do not understand why l.find('template-name') is NoneType. Take the time to read https://docs.python.org/2/library/xml.etree.elementtree.html#parsing-xml-with-namespaces > Here is complete code with output. > > > import xml.etree.ElementTree as ET > > xmlfile=''' > > > ALLFLEX-BLOOMINGTON > post-staging > full-mesh > ALLFLEX > > advanced-plus > 1000 > true > true > ''' > > root = ET.fromstring(xmlfile) > print root.tag > print root[0][0].text > for l in root.findall('{http://networks.com/nms}template-metadata'): > print l.find('template-name').text > > collection > ALLFLEX-BLOOMINGTON > > --------------------------------------------------------------------------- AttributeError > Traceback (most recent call > last) in () 19 print > root[0][0].text 20 for l in > root.findall('{http://networks.com/nms}template-metadata'):---> 21 > print l.find('template-name').text > AttributeError: 'NoneType' object has no attribute 'text' From __peter__ at web.de Thu Mar 29 15:51:26 2018 From: __peter__ at web.de (Peter Otten) Date: Thu, 29 Mar 2018 21:51:26 +0200 Subject: [Tutor] Turtle color question References: Message-ID: Roger Lea Scherer wrote: > I've tried everything I can think of but cannot get the pencolor to > change. (Although the arrow drawing the boxes changes color.) I've placed > it in places I didn't even think it would work. The arrow draws what looks > like the boxes I expect, but the color looks the same as the background. > So I assigned a variable and printed that variable which says None. See: > > RESTART: C:/Users/Roger/AppData/Local/Programs/Python/Python36/turtle > square draw.py > None >>>> > > Removing " color = " doesn't change the outcome. I hope this adequately > explains things.Thanks, again. > > ?import turtle > > def drawSquare(t, sz): > """Get turtle t to draw a square of sz side""" > t.pu() I recommend that you use the long name here, penup() instead of pu(). I should then become glaringly obvious that you lift the pen but never put it down again... > t.forward(sz*2) > > for i in range(4): > t.forward(sz) > t.left(90) > > > wn = turtle.Screen() > wn.bgcolor("blue") > > alex = turtle.Turtle() > color = alex.pencolor("darkgreen") > print(color) > > def main(): > for i in range(4): > drawSquare(alex,20) > > main() > > wn.exitonclick() > ? > From sjeik_appie at hotmail.com Thu Mar 29 15:50:55 2018 From: sjeik_appie at hotmail.com (Albert-Jan Roskam) Date: Thu, 29 Mar 2018 19:50:55 +0000 Subject: [Tutor] Problem with testing - container Message-ID: Op 29 mrt. 2018 21:06 schreef "Shall, Sydney" : > > I have a problem with a specific test, I think. > > I use a Mac with OS X 10.13.3 > I use Anaconda with Python 3.5 > > I have been writing tests for a Class that I have written. I am not > finished yet, but there are already nearly 400 tests. The tests run and > return OK. [After cleaning up many silly mistakes that I made.] > > However, now, when I run the tests (Unittest) I get the following warning: > .... > lib/python3.5/unittest/case.py:1092: FutureWarning: elementwise > comparison failed; returning scalar instead, but in the future will > perform elementwise comparison > if member in container: > ... > > No other information is given. > > My problem is, how do I find out where exactly the problem originates. > -- Try running Python with the option '-W error', or set PYTHONWARNINGS to 'error'. https://docs.python.org/2/using/cmdline.html#envvar-PYTHONWARNINGS From wpmartin at gmail.com Thu Mar 29 22:48:18 2018 From: wpmartin at gmail.com (Pat Martin) Date: Thu, 29 Mar 2018 19:48:18 -0700 Subject: [Tutor] pythonic Message-ID: Hello all, I have written the following program. It generates a template for Pelican web site static generator. It works just fine, it generates the template and then I put the info in it to customize. But I was wondering, is this the "right" way to do it in python? #!/usr/bin/env python3 """Generate a Pelican markdown base page.""" import argparse import datetime def Main(): """Run if run as a program.""" parser = argparse.ArgumentParser() parser.add_argument("-T", "--title", type=str, required=True, help='Title for site, also generates the slug', metavar="") parser.add_argument("-c", "--category", required=True, help='Category or categories of post', metavar="") parser.add_argument("-t", "--tags", type=str, required=True, help="Tags for post", metavar="") parser.add_argument("-a", "--author", type=str, default="Pat Martin", help="Author of post", metavar="") args = parser.parse_args() now = datetime.datetime.now() slug = args.title.replace(" ", "-").lower() with open("{}.md".format(slug), 'w') as f: f.write("Title: {}\n".format(args.title)) f.write("Date: {}-{}-{} {}:{}\n".format(now.year, now.month, now.day, now.hour, now.minute)) f.write("Modified: {}-{}-{} {}:{}\n".format(now.year, now.month, now.day, now.hour, now.minute)) f.write("Category: {}\n".format(args.category)) f.write("Slug: {}\n".format(slug)) f.write("Authors: {}\n".format(args.author)) f.write("Summary: \n") if __name__ == "__main__": Main() Thanks for any input. WP From dbaydemi at oswego.edu Thu Mar 29 18:28:22 2018 From: dbaydemi at oswego.edu (Deniz Baydemir) Date: Thu, 29 Mar 2018 18:28:22 -0400 Subject: [Tutor] Can someone help me start learning how to code? Message-ID: I want to know where to start and if i can get assigned homework maybe? From suminlims at gmail.com Thu Mar 29 23:06:15 2018 From: suminlims at gmail.com (S L) Date: Fri, 30 Mar 2018 14:06:15 +1100 Subject: [Tutor] Indexing values as a step in mesa model? Message-ID: Hi all, Very new to this so please excuse my errors. I want to create an agent based model using the mesa package (Python 3.6.3) to model solar generation, electricity use and grid exports. Ultimately I would like agents (households) to interact (ie trading energy between homes). For the first iteration of the model I want to show outcomes **without** interaction between agents, using a sample of real consumption and generation data. I.e. for each step (i), each household (j) will generate/use electricity based on the real world data series, i.e., indexing the corresponding consumption and generation values for that particular household at time period i. Here is a snippet of the dataframes with consumption and generation data (gen values are all zero because time periods are at night): >>con Customer 1 2 0 1 0.287 1.207 1 2 0.278 0.193 2 3 0.051 0.063 >>gen Customer Capacity 1 2 3 0 1 3.78 0.0 0.0 0.0 1 2 1.62 0.0 0.0 0.0 2 3 1.00 0.0 0.0 0.0 Column headings refer to time periods (t=1, t=2, etc). Capacity = battery capacity (which I will ignore for the moment). How do I define a 'step' such that for each customer number (unique id) and time period, the model indexes the appropriate consumption and generation values for that time period, and adds them to that agent? The correct row will always be the customer's unique id - 1, but the column will change with each step (i.e. for customer 1, at t=1 the consumption value should be 0.287, at t=2 it should be 1.207 and so on. Here is a sample of my code so far: class PowerAgent(Agent): def __init__(self, unique_id, model): super().__init__(unique_id, model) self.use = 0 self.gen = 0 def step(self): self.use += con.iloc[unique_id-1, <>] self.gen += gen.iloc[unique_id-1, <> ] Would appreciate pointers. I'm new to Python and mesa so all help is welcomed with much gratitude. From vadud3 at gmail.com Thu Mar 29 21:40:18 2018 From: vadud3 at gmail.com (Asif Iqbal) Date: Thu, 29 Mar 2018 21:40:18 -0400 Subject: [Tutor] XML parsing In-Reply-To: References: Message-ID: On Thu, Mar 29, 2018 at 3:41 PM, Peter Otten <__peter__ at web.de> wrote: > Asif Iqbal wrote: > > > On Thu, Mar 29, 2018 at 3:56 AM, Peter Otten <__peter__ at web.de> wrote: > > > >> Asif Iqbal wrote: > >> > >> > I am trying to extract all the *template-name*s, but no success yet > >> > > >> > Here is a sample xml file > >> > > >> > > >> > > >> > ALLFLEX-BLOOMINGTON > >> > post-staging > >> > full-mesh > >> > ALLFLEX > >> > > >> > advanced-plus > >> > 1000 > >> > true > >> > true > >> > > >> > .... > >> > > >> > > >> > with open('/tmp/template-metadata') as f: > >> > import xml.etree.ElementTree as ET > >> > root = ET.fromstring(f.read()) > >> > > >> > print len(root) > >> > print root[0][0].text > >> > for l in root.findall('template-metadata'): > >> > print l > >> > > >> > > >> > 392 > >> > ALLFLEX-BLOOMINGTON > >> > > >> > > >> > It prints the length of the tree and the first element of the first > >> child, > >> > but when I try to loop through to find all the 'template-name's > >> > it does not print anything. > >> > > >> > What am I doing wrong? > >> > >> You have to include the namespace: > >> > >> for l in root.findall('{http://networks.com/nms}template-metadata'): > >> > > > > How do I extract the 'template-name' ? > > I hoped you'd get the idea. > > > This is what I tried > > > > for l in root.findall('{http://networks.com/nms}template-metadata'): > > Rinse and repeat: > > > print l.find('template-name').text > > should be > > print l.find('{http://networks.com/nms}template-name').text > > > > > I am following the doc > > https://docs.python.org/2/library/xml.etree.elementtree.html section > > 19.7.1.3 findall example > > > > I get this error attribute error 'NoneType' object has no attribute text. > > I do not understand why l.find('template-name') is NoneType. > > Take the time to read > > https://docs.python.org/2/library/xml.etree.elementtree. > html#parsing-xml-with-namespaces Thanks for the links and hints. I got it working now I used ns = { 'nms' : 'http://networks.com/nms ' } And then l.find('nms:template-name', ns) I also want to extract the namespace and I see this gets me the namespace str(root[0]).split('{')[1].split('}')[0] Is there a better way to extract the name space? > > > > Here is complete code with output. > > > > > > import xml.etree.ElementTree as ET > > > > xmlfile=''' > > > > > > ALLFLEX-BLOOMINGTON > > post-staging > > full-mesh > > ALLFLEX > > > > advanced-plus > > 1000 > > true > > true > > ''' > > > > root = ET.fromstring(xmlfile) > > print root.tag > > print root[0][0].text > > for l in root.findall('{http://networks.com/nms}template-metadata'): > > print l.find('template-name').text > > > > collection > > ALLFLEX-BLOOMINGTON > > > > > ------------------------------------------------------------ > --------------- > AttributeError > > Traceback (most recent call > > last) in () 19 print > > root[0][0].text 20 for l in > > root.findall('{http://networks.com/nms}template-metadata'):---> 21 > > print l.find('template-name').text > > AttributeError: 'NoneType' object has no attribute 'text' > > > _______________________________________________ > Tutor maillist - Tutor at python.org > To unsubscribe or change subscription options: > https://mail.python.org/mailman/listinfo/tutor > -- Asif Iqbal PGP Key: 0xE62693C5 KeyServer: pgp.mit.edu A: Because it messes up the order in which people normally read text. Q: Why is top-posting such a bad thing? From vadud3 at gmail.com Thu Mar 29 22:03:37 2018 From: vadud3 at gmail.com (Asif Iqbal) Date: Thu, 29 Mar 2018 22:03:37 -0400 Subject: [Tutor] XML parsing In-Reply-To: References: Message-ID: On Thu, Mar 29, 2018 at 9:40 PM, Asif Iqbal wrote: > > > On Thu, Mar 29, 2018 at 3:41 PM, Peter Otten <__peter__ at web.de> wrote: > >> Asif Iqbal wrote: >> >> > On Thu, Mar 29, 2018 at 3:56 AM, Peter Otten <__peter__ at web.de> wrote: >> > >> >> Asif Iqbal wrote: >> >> >> >> > I am trying to extract all the *template-name*s, but no success yet >> >> > >> >> > Here is a sample xml file >> >> > >> >> > >> >> > >> >> > ALLFLEX-BLOOMINGTON >> >> > post-staging >> >> > full-mesh >> >> > ALLFLEX >> >> > >> >> > advanced-plus >> >> > 1000 >> >> > true >> >> > true >> >> > >> >> > .... >> >> > >> >> > >> >> > with open('/tmp/template-metadata') as f: >> >> > import xml.etree.ElementTree as ET >> >> > root = ET.fromstring(f.read()) >> >> > >> >> > print len(root) >> >> > print root[0][0].text >> >> > for l in root.findall('template-metadata'): >> >> > print l >> >> > >> >> > >> >> > 392 >> >> > ALLFLEX-BLOOMINGTON >> >> > >> >> > >> >> > It prints the length of the tree and the first element of the first >> >> child, >> >> > but when I try to loop through to find all the 'template-name's >> >> > it does not print anything. >> >> > >> >> > What am I doing wrong? >> >> >> >> You have to include the namespace: >> >> >> >> for l in root.findall('{http://networks.com/nms}template-metadata'): >> >> >> > >> > How do I extract the 'template-name' ? >> >> I hoped you'd get the idea. >> >> > This is what I tried >> > >> > for l in root.findall('{http://networks.com/nms}template-metadata'): >> >> Rinse and repeat: >> >> > print l.find('template-name').text >> >> should be >> >> print l.find('{http://networks.com/nms}template-name').text >> >> > >> > I am following the doc >> > https://docs.python.org/2/library/xml.etree.elementtree.html section >> > 19.7.1.3 findall example >> > >> > I get this error attribute error 'NoneType' object has no attribute >> text. >> > I do not understand why l.find('template-name') is NoneType. >> >> Take the time to read >> >> https://docs.python.org/2/library/xml.etree.elementtree.html >> #parsing-xml-with-namespaces > > > Thanks for the links and hints. > > I got it working now > > I used ns = { 'nms' : 'http://networks.com/nms > ' } > > And then l.find('nms:template-name', ns) > > I also want to extract the namespace and I see this gets me the namespace > > str(root[0]).split('{')[1].split('}')[0] > > Is there a better way to extract the name space? > > > This worked ns = { 'nms' : root[0].tag.split('}')[0].split('{')[1] } for l in root.findall('nms:template-metadata', ns): print l.find('nms:template-name', ns).text Although I think manually creating the ns dictionary looks cleaner :-) > >> >> >> > Here is complete code with output. >> > >> > >> > import xml.etree.ElementTree as ET >> > >> > xmlfile=''' >> > >> > >> > ALLFLEX-BLOOMINGTON >> > post-staging >> > full-mesh >> > ALLFLEX >> > >> > advanced-plus >> > 1000 >> > true >> > true >> > ''' >> > >> > root = ET.fromstring(xmlfile) >> > print root.tag >> > print root[0][0].text >> > for l in root.findall('{http://networks.com/nms}template-metadata'): >> > print l.find('template-name').text >> > >> > collection >> > ALLFLEX-BLOOMINGTON >> > >> > >> ------------------------------------------------------------ >> --------------- >> AttributeError >> > Traceback (most recent call >> > last) in () 19 print >> > root[0][0].text 20 for l in >> > root.findall('{http://networks.com/nms}template-metadata'):---> 21 >> > print l.find('template-name').text >> > AttributeError: 'NoneType' object has no attribute 'text' >> >> >> _______________________________________________ >> Tutor maillist - Tutor at python.org >> To unsubscribe or change subscription options: >> https://mail.python.org/mailman/listinfo/tutor >> > > > > -- > Asif Iqbal > PGP Key: 0xE62693C5 KeyServer: pgp.mit.edu > A: Because it messes up the order in which people normally read text. > Q: Why is top-posting such a bad thing? > > -- Asif Iqbal PGP Key: 0xE62693C5 KeyServer: pgp.mit.edu A: Because it messes up the order in which people normally read text. Q: Why is top-posting such a bad thing? From alan.gauld at yahoo.co.uk Fri Mar 30 04:37:16 2018 From: alan.gauld at yahoo.co.uk (Alan Gauld) Date: Fri, 30 Mar 2018 09:37:16 +0100 Subject: [Tutor] pythonic In-Reply-To: References: Message-ID: On 30/03/18 03:48, Pat Martin wrote: > the "right" way to do it in python? More or less, a couple of comments below... > def Main(): Python function names begin with a lowercase letter by convention. > """Run if run as a program.""" > parser = argparse.ArgumentParser() ... > > now = datetime.datetime.now() > slug = args.title.replace(" ", "-").lower() > > with open("{}.md".format(slug), 'w') as f: > f.write("Title: {}\n".format(args.title)) > f.write("Date: {}-{}-{} {}:{}\n".format(now.year, > now.month, > now.day, > now.hour, > now.minute)) Formatting of dates and times is usually done using the time.strftime function which is specifically designed for that. It might be worth taking a peek at the docs on that one. You can call it directly on a datetime object - 'now' in your case: fmt="%Y-%m-%d %H:%M\n" f.write(now.strftime(fmt)) -- Alan G Author of the Learn to Program web site http://www.alan-g.me.uk/ http://www.amazon.com/author/alan_gauld Follow my photo-blog on Flickr at: http://www.flickr.com/photos/alangauldphotos From alan.gauld at yahoo.co.uk Fri Mar 30 04:44:12 2018 From: alan.gauld at yahoo.co.uk (Alan Gauld) Date: Fri, 30 Mar 2018 09:44:12 +0100 Subject: [Tutor] Can someone help me start learning how to code? In-Reply-To: References: Message-ID: On 29/03/18 23:28, Deniz Baydemir wrote: > I want to know where to start and if i can get assigned homework maybe? Everyone learns differently so its hard to give a single recommendation. The Python.org web site has a page dedicated to complete beginners with several tutorials linked (including mine- see below) There are also many video courses on YouTube. Finally several organisations (inc Amazon/Coursera etc) run formal courses online - some even issue certificates etc at the end. Most of these are free, so try a few out and, once you find one that makes sense, stick with it. If you get stuck on anything feel free to ask questions here. One thing to watch out for is that you need to ensure your Python version matches the tutorial. Don't try to do a Python v2 tutorial using Python v3 for example, you will run into lots of problems. -- Alan G Author of the Learn to Program web site http://www.alan-g.me.uk/ http://www.amazon.com/author/alan_gauld Follow my photo-blog on Flickr at: http://www.flickr.com/photos/alangauldphotos From stefan_ml at behnel.de Fri Mar 30 05:21:42 2018 From: stefan_ml at behnel.de (Stefan Behnel) Date: Fri, 30 Mar 2018 11:21:42 +0200 Subject: [Tutor] XML parsing In-Reply-To: References: Message-ID: Asif Iqbal schrieb am 30.03.2018 um 03:40: > On Thu, Mar 29, 2018 at 3:41 PM, Peter Otten wrote: >> Asif Iqbal wrote: >>> On Thu, Mar 29, 2018 at 3:56 AM, Peter Otten wrote: >>>> Asif Iqbal wrote: >>>>> Here is a sample xml file >>>>> >>>>> >>>>> >>>>> ALLFLEX-BLOOMINGTON >>>>> post-staging >>>>> full-mesh >>>>> ALLFLEX >>>>> >>>>> advanced-plus >>>>> 1000 >>>>> true >>>>> true >>>>> >>>>> .... >>>>> >>>>> >>>>> with open('/tmp/template-metadata') as f: >>>>> import xml.etree.ElementTree as ET >>>>> root = ET.fromstring(f.read()) Don't use fromstring() here, use "parse(f).getroot()". The first loads the whole file step by step into a string in memory, then parses it, and then throws the string away. The second directly loads and parses the file step by step. > I also want to extract the namespace and I see this gets me the namespace > > str(root[0]).split('{')[1].split('}')[0] > > Is there a better way to extract the name space? Yes: don't. ;) Normally, you write code *for* concrete XML namespaces, not code that extracts arbitrary namespaces from XML. I'm saying that because people misunderstand this up all the time, and assume that they need to extract information from namespaces (or even from namespace prefixes!). But without knowing the namespace upfront, the XML data is actually meaningless. And if you know the namespace anyway, why would you need to extract it from the data? I admit that I'm being a bit strict here, there are certainly cases where parsing the namespace from a tag is a sensible thing to do. I'm really just saying that most of the time, when you feel the need to do that, it's worth reconsidering (or asking) if you are doing the right thing. Stefan From __peter__ at web.de Fri Mar 30 05:22:35 2018 From: __peter__ at web.de (Peter Otten) Date: Fri, 30 Mar 2018 11:22:35 +0200 Subject: [Tutor] pythonic References: Message-ID: Pat Martin wrote: > I have written the following program. It generates a template for Pelican > web site static generator. It works just fine, it generates the template > and then I put the info in it to customize. But I was wondering, is this > the "right" way to do it in python? You may rewrite the code creating the output as a loop: now_str = now.replace(microsecond=0).isoformat(" ") with open("{}.md".format(slug), 'w') as f: for name, value in [ ("Title", args.title), ("Date", now_str), ("Modified", now_str), ("Category", args.category), ("Slug", slug), ("Authors", args.author), ("Summary", ""), ]: print(name, value, sep=": ", file=f) If you want to format more than one date the same way you should put the code into a function, no matter whether you pick your, my, or Alan's much more common way to implement it def format_time(dt): return ... ... ("Date", format_time(now)), ("Modified", format_time(modified)), ... The idea behind my suggestions is the DRY (don't repeat yourself) principle which applies to code written in any language. > #!/usr/bin/env python3 > """Generate a Pelican markdown base page.""" > > import argparse > import datetime > > > def Main(): > """Run if run as a program.""" > parser = argparse.ArgumentParser() > parser.add_argument("-T", "--title", type=str, required=True, > help='Title for site, also generates the slug', > metavar="") > parser.add_argument("-c", "--category", required=True, > help='Category or categories of post', metavar="") > parser.add_argument("-t", "--tags", type=str, required=True, > help="Tags for post", metavar="") > parser.add_argument("-a", "--author", type=str, default="Pat Martin", > help="Author of post", metavar="") > args = parser.parse_args() > > now = datetime.datetime.now() > slug = args.title.replace(" ", "-").lower() > > with open("{}.md".format(slug), 'w') as f: > f.write("Title: {}\n".format(args.title)) > f.write("Date: {}-{}-{} {}:{}\n".format(now.year, > now.month, > now.day, > now.hour, > now.minute)) > f.write("Modified: {}-{}-{} {}:{}\n".format(now.year, > now.month, > now.day, > now.hour, > now.minute)) > f.write("Category: {}\n".format(args.category)) > f.write("Slug: {}\n".format(slug)) > f.write("Authors: {}\n".format(args.author)) > f.write("Summary: \n") > > > if __name__ == "__main__": > Main() From steve at pearwood.info Fri Mar 30 06:47:58 2018 From: steve at pearwood.info (Steven D'Aprano) Date: Fri, 30 Mar 2018 21:47:58 +1100 Subject: [Tutor] Indexing values as a step in mesa model? In-Reply-To: References: Message-ID: <20180330104758.GP16661@ando.pearwood.info> On Fri, Mar 30, 2018 at 02:06:15PM +1100, S L wrote: > Hi all, > > Very new to this so please excuse my errors. > > I want to create an agent based model using the mesa package (Python 3.6.3) Unfortunately, when you start asking questions about third-party libraries, especially fairly niche technical ones like mesa, you're unlikely to get a good answer on generic mailing lists or forums like this. You might be lucky and get a good response from a mesa expert, but I'd never even heard of it before now, so it won't be me, sorry. I suggest that while you wait for an answer, you also try googling for a specialised mesa forum. Good luck! -- Steve From george at fischhof.hu Fri Mar 30 05:15:55 2018 From: george at fischhof.hu (George Fischhof) Date: Fri, 30 Mar 2018 11:15:55 +0200 Subject: [Tutor] pythonic In-Reply-To: References: Message-ID: 2018-03-30 4:48 GMT+02:00 Pat Martin : > Hello all, > > I have written the following program. It generates a template for Pelican > web site static generator. It works just fine, it generates the template > and then I put the info in it to customize. But I was wondering, is this > the "right" way to do it in python? > > #!/usr/bin/env python3 > """Generate a Pelican markdown base page.""" > > import argparse > import datetime > > > def Main(): > """Run if run as a program.""" > parser = argparse.ArgumentParser() > parser.add_argument("-T", "--title", type=str, required=True, > help='Title for site, also generates the slug', > metavar="") > parser.add_argument("-c", "--category", required=True, > help='Category or categories of post', metavar="") > parser.add_argument("-t", "--tags", type=str, required=True, > help="Tags for post", metavar="") > parser.add_argument("-a", "--author", type=str, default="Pat Martin", > help="Author of post", metavar="") > args = parser.parse_args() > > now = datetime.datetime.now() > slug = args.title.replace(" ", "-").lower() > > with open("{}.md".format(slug), 'w') as f: > f.write("Title: {}\n".format(args.title)) > f.write("Date: {}-{}-{} {}:{}\n".format(now.year, > now.month, > now.day, > now.hour, > now.minute)) > f.write("Modified: {}-{}-{} {}:{}\n".format(now.year, > now.month, > now.day, > now.hour, > now.minute)) > f.write("Category: {}\n".format(args.category)) > f.write("Slug: {}\n".format(slug)) > f.write("Authors: {}\n".format(args.author)) > f.write("Summary: \n") > > > if __name__ == "__main__": > Main() > > > > Thanks for any input. > > WP > _______________________________________________ > Tutor maillist - Tutor at python.org > To unsubscribe or change subscription options: > https://mail.python.org/mailman/listinfo/tutor > Hi Pat, my thoughts: 1.) def Main(): function names are written with small letter with underscore between the words check PEP-8 https://www.python.org/dev/peps/pep-0008/ http://docs.python-guide.org/en/latest/writing/style/ It is better to name the functions according to what they do, in this case for example: create_template() or something like that 2.) argparse it is good, but you can write more Pythonic code using click https://pypi.python.org/pypi/click/ it is also Pythonic to use / know the Python ecosystem (the packages) 3.) with open("{}.md".format(slug), 'w') as f: f.write("Date: {}-{}-{} {}:{}\n".format(now.year, now.month,.... Python is mainly about readability https://www.python.org/dev/peps/pep-0020/ you can use more meaningful variable names: template_file instead of f if you have Python 3.6, you can use the newest formatting method, which is more readable: template_file.write(f"Date: {now.moth}-{now.day}") etc https://www.python.org/dev/peps/pep-0498/ the more readable open: slug_file_name = f"{slug}.md" with open(slug_file_name, "w") as slug_file: and if you use Python 3, the open should contain encoding: with open(slug_file_name, "w", encoding="UTF-8") as slug_file: BR, George From neilc at norwich.edu Fri Mar 30 09:50:17 2018 From: neilc at norwich.edu (Neil Cerutti) Date: Fri, 30 Mar 2018 13:50:17 +0000 (UTC) Subject: [Tutor] XML parsing References: Message-ID: On 2018-03-30, Stefan Behnel wrote: > I admit that I'm being a bit strict here, there are certainly > cases where parsing the namespace from a tag is a sensible > thing to do. I'm really just saying that most of the time, when > you feel the need to do that, it's worth reconsidering (or > asking) if you are doing the right thing. Namespaces hurt my head when I try to imagine a use for them. The only one's I've encountered are just applied to an entire document, making parsing more inconvenient but providing no other benefit I can see. -- Neil Cerutti From wpmartin at gmail.com Fri Mar 30 12:04:50 2018 From: wpmartin at gmail.com (Pat Martin) Date: Fri, 30 Mar 2018 09:04:50 -0700 Subject: [Tutor] pythonic In-Reply-To: References: Message-ID: Thank you all for the ideas and comments, it is appreciated. I have some refactoring to do now. On Fri, Mar 30, 2018 at 2:22 AM, Peter Otten <__peter__ at web.de> wrote: > Pat Martin wrote: > > > I have written the following program. It generates a template for Pelican > > web site static generator. It works just fine, it generates the template > > and then I put the info in it to customize. But I was wondering, is this > > the "right" way to do it in python? > > You may rewrite the code creating the output as a loop: > > now_str = now.replace(microsecond=0).isoformat(" ") > with open("{}.md".format(slug), 'w') as f: > for name, value in [ > ("Title", args.title), > ("Date", now_str), > ("Modified", now_str), > ("Category", args.category), > ("Slug", slug), > ("Authors", args.author), > ("Summary", ""), > ]: > print(name, value, sep=": ", file=f) > > > If you want to format more than one date the same way you should put the > code into a function, no matter whether you pick your, my, or Alan's much > more common way to implement it > > def format_time(dt): > return ... > > ... > ("Date", format_time(now)), > ("Modified", format_time(modified)), > ... > > The idea behind my suggestions is the DRY (don't repeat yourself) principle > which applies to code written in any language. > > > #!/usr/bin/env python3 > > """Generate a Pelican markdown base page.""" > > > > import argparse > > import datetime > > > > > > def Main(): > > """Run if run as a program.""" > > parser = argparse.ArgumentParser() > > parser.add_argument("-T", "--title", type=str, required=True, > > help='Title for site, also generates the slug', > > metavar="") > > parser.add_argument("-c", "--category", required=True, > > help='Category or categories of post', > metavar="") > > parser.add_argument("-t", "--tags", type=str, required=True, > > help="Tags for post", metavar="") > > parser.add_argument("-a", "--author", type=str, default="Pat Martin", > > help="Author of post", metavar="") > > args = parser.parse_args() > > > > now = datetime.datetime.now() > > slug = args.title.replace(" ", "-").lower() > > > > with open("{}.md".format(slug), 'w') as f: > > f.write("Title: {}\n".format(args.title)) > > f.write("Date: {}-{}-{} {}:{}\n".format(now.year, > > now.month, > > now.day, > > now.hour, > > now.minute)) > > f.write("Modified: {}-{}-{} {}:{}\n".format(now.year, > > now.month, > > now.day, > > now.hour, > > now.minute)) > > f.write("Category: {}\n".format(args.category)) > > f.write("Slug: {}\n".format(slug)) > > f.write("Authors: {}\n".format(args.author)) > > f.write("Summary: \n") > > > > > > if __name__ == "__main__": > > Main() > > > _______________________________________________ > Tutor maillist - Tutor at python.org > To unsubscribe or change subscription options: > https://mail.python.org/mailman/listinfo/tutor > From stefan_ml at behnel.de Fri Mar 30 12:51:52 2018 From: stefan_ml at behnel.de (Stefan Behnel) Date: Fri, 30 Mar 2018 18:51:52 +0200 Subject: [Tutor] XML parsing In-Reply-To: References: Message-ID: Neil Cerutti schrieb am 30.03.2018 um 15:50: > On 2018-03-30, Stefan Behnel wrote: >> I admit that I'm being a bit strict here, there are certainly >> cases where parsing the namespace from a tag is a sensible >> thing to do. I'm really just saying that most of the time, when >> you feel the need to do that, it's worth reconsidering (or >> asking) if you are doing the right thing. > > Namespaces hurt my head when I try to imagine a use for them. The > only one's I've encountered are just applied to an entire > document, making parsing more inconvenient but providing no other > benefit I can see. Actually, namespaces give meaning to data, and they allow combining different XML languages into one document. Without them, it would be impossible to tell, for example, that what a document contains is an author name in Dublin Core metadata and not an image subtitle. Or a base64 encoded inline image. Or anything. They allow you to cleanly extract an SVG image from an ODF document without implementing the OpenDocument standard first. Namespaces enable reuse of well defined semantics, in the same way that you would structure your code in functions and modules, instead of stuffing everything in the main module as plain top-level code. Stefan From badouglas at gmail.com Fri Mar 30 14:00:13 2018 From: badouglas at gmail.com (bruce) Date: Fri, 30 Mar 2018 14:00:13 -0400 Subject: [Tutor] really basic py/regex Message-ID: Hi. Trying to quickly get the re.match(....) to extract the groups from the string. x="MATH 59900/40 [47490] - THE " The regex has to return MATH, 59900, 40,, and 47490 d=re.match(r'(\D+)...) gets the MATH... But I can't see (yet) how to get the rest of what I need... Pointers would be useful. Thanks From neilc at norwich.edu Fri Mar 30 15:50:23 2018 From: neilc at norwich.edu (Neil Cerutti) Date: Fri, 30 Mar 2018 19:50:23 +0000 (UTC) Subject: [Tutor] XML parsing References: Message-ID: On 2018-03-30, Stefan Behnel wrote: > Neil Cerutti schrieb am 30.03.2018 um 15:50: >> On 2018-03-30, Stefan Behnel wrote: >>> I admit that I'm being a bit strict here, there are certainly >>> cases where parsing the namespace from a tag is a sensible >>> thing to do. I'm really just saying that most of the time, when >>> you feel the need to do that, it's worth reconsidering (or >>> asking) if you are doing the right thing. >> >> Namespaces hurt my head when I try to imagine a use for them. The >> only one's I've encountered are just applied to an entire >> document, making parsing more inconvenient but providing no other >> benefit I can see. > > Actually, namespaces give meaning to data, and they allow > combining different XML languages into one document. Without > them, it would be impossible to tell, for example, that what a > document contains is an author name in Dublin Core metadata and > not an image subtitle. Or a base64 encoded inline image. Or > anything. They allow you to cleanly extract an SVG image from > an ODF document without implementing the OpenDocument standard > first. > > Namespaces enable reuse of well defined semantics, in the same > way that you would structure your code in functions and > modules, instead of stuffing everything in the main module as > plain top-level code. Thanks for the explanation. -- Neil Cerutti From glennmschultz at me.com Fri Mar 30 10:55:14 2018 From: glennmschultz at me.com (Glenn Schultz) Date: Fri, 30 Mar 2018 14:55:14 +0000 (GMT) Subject: [Tutor] creating a connection class Message-ID: All, I can create a connection as follows and it works but I think it is best to have a connection class that opens and closes. ?I create the connection class as outline below. ?However, it does not work - meaning that it does not return a connection rather it returns? <__main__.modelingdb at 0x40dfbb0> Any help getting the connection class to work is greatly appreciated. Glenn model_prod_conn = pyodbc.connect( driver = '{ODBC Driver 13 for SQL Server}', server = 'foo', database = 'foo', username = 'foo', password = 'foo', trusted_connection = 'yes') class modelingdb(object): ??def __init__(self): ???self._db_connection = pyodbc.connect( ???driver = '{ODBC Driver 13 for SQL Server}', ???server = 'foo', ???database = 'foo', ???username = 'foo', ???password = 'foo', ???trusted_connection = 'yes') ???self._db_cur = self._db_connection.cursor() def __del__(self): self._db_connection.close() From alan.gauld at yahoo.co.uk Fri Mar 30 18:52:26 2018 From: alan.gauld at yahoo.co.uk (Alan Gauld) Date: Fri, 30 Mar 2018 23:52:26 +0100 Subject: [Tutor] creating a connection class In-Reply-To: References: Message-ID: On 30/03/18 15:55, Glenn Schultz wrote: > I can create a connection as follows and it works Well done, so you get a connection object back as a result. > but I think it is best to have a connection class that opens and closes. ? Why? You already have a connection object. Classes are created so that you can create instances. What would an instance of your Connection class offer that the API connection object does not? Creating classes introduces significant effort and overhead, if you don't need them don't build them. If the instances of your class don't contribute some new functionality what is their point? The more code you create the more likely that there is a bug. > model_prod_conn = pyodbc.connect( > driver = '{ODBC Driver 13 for SQL Server}', > server = 'foo', > database = 'foo', > username = 'foo', > password = 'foo', > trusted_connection = 'yes') > > > class modelingdb(object): > ??def __init__(self): > ???self._db_connection = pyodbc.connect( > ???driver = '{ODBC Driver 13 for SQL Server}', > ???server = 'foo', > ???database = 'foo', > ???username = 'foo', > ???password = 'foo', > ???trusted_connection = 'yes') > ???self._db_cur = self._db_connection.cursor() > > def __del__(self): > self._db_connection.close() There is a great talk somewhere on YouTube that provides guidance on when not to create a class. One of the cases is when you only have constructor and destructor. You may want to continue as an academic exercise in wrapping an API object. That's fair enough. But your current class offers nothing that the API does not. (The db_cur attribute doesn't really count since it's just a call to the connection object anyway. -- Alan G Author of the Learn to Program web site http://www.alan-g.me.uk/ http://www.amazon.com/author/alan_gauld Follow my photo-blog on Flickr at: http://www.flickr.com/photos/alangauldphotos From steve at pearwood.info Fri Mar 30 22:14:36 2018 From: steve at pearwood.info (Steven D'Aprano) Date: Sat, 31 Mar 2018 13:14:36 +1100 Subject: [Tutor] creating a connection class In-Reply-To: References: Message-ID: <20180331021436.GR16661@ando.pearwood.info> On Fri, Mar 30, 2018 at 02:55:14PM +0000, Glenn Schultz wrote: > All, > > I can create a connection as follows and it works but I think it is best to > have a connection class that opens and closes. You already have one: that's what pyodbc.connect is. The documentation is pretty poor: https://github.com/mkleehammer/pyodbc/wiki/Connection but as far as I can tell, pyodbc is a helper function which chooses the correct class to instantiate depending on the database you connect to, and returns an instance of that class. In Design Pattern terms, I think that counts as an Abstract Factory. >?I create the connection > class as outline below. ?However, it does not work - meaning that it does > not return a connection rather it returns? > <__main__.modelingdb at 0x40dfbb0> When you call the class, you get back an instance of that class. That's exactly what you have there: an instance of your modelingdb class. > class modelingdb(object): > ??def __init__(self): > ???self._db_connection = pyodbc.connect( > ???driver = '{ODBC Driver 13 for SQL Server}', > ???server = 'foo', > ???database = 'foo', > ???username = 'foo', > ???password = 'foo', > ???trusted_connection = 'yes') > ???self._db_cur = self._db_connection.cursor() > > def __del__(self): > self._db_connection.close() The indentation on this is wrong, so that code won't work. Also, you cannot rely on __del__ in Python classes. This is totally the wrong way to use this. Can I guess that you're a Java or C++ programmer trying to learn Python? Wrapping the connection object in another object is not helpful: you're just duplicating (poorly) what's already been done. If you are new to Python from a Java background, you might find some things take a bit of getting used to. These things may help: Python is not Java. http://dirtsimple.org/2004/12/python-is-not-java.html And Java is not Python either. http://dirtsimple.org/2004/12/java-is-not-python-either.html) Classes are not the centre of the Python universe: https://www.youtube.com/watch?v=o9pEzgHorH0 We try to use more functional and even procedural techniques, but don't worry, classes are still okay http://lucumr.pocoo.org/2013/2/13/moar-classes/ its just the crazy-extreme attitude that *everything* must *always* be a class that we object to. http://steve-yegge.blogspot.com.au/2006/03/execution-in-kingdom-of-nouns.html -- Steve From steve at pearwood.info Sat Mar 31 03:09:06 2018 From: steve at pearwood.info (Steven D'Aprano) Date: Sat, 31 Mar 2018 18:09:06 +1100 Subject: [Tutor] really basic py/regex In-Reply-To: References: Message-ID: <20180331070905.GU16661@ando.pearwood.info> On Fri, Mar 30, 2018 at 02:00:13PM -0400, bruce wrote: > Hi. > > Trying to quickly get the re.match(....) to extract the groups from the string. > > x="MATH 59900/40 [47490] - THE " > > The regex has to return MATH, 59900, 40,, and 47490 Does it have to be a single regex? The simplest way is to split the above into words, apply a regex to each word separately, and filter out anything you don't want with a blacklist: import re regex = re.compile(r'\w+') # one or more alphanumeric characters string = "MATH 59900/40 [47490] - THE " blacklist = set(['THE']) # in Python 3, use {'THE'} words = string.split() results = [] for word in words: results.extend(regex.findall(word)) results = [word for word in results if word not in blacklist] print(results) Here's an alternative solution: # version 2 words = string.split() results = [] for word in words: for w in regex.findall(word): if w not in blacklist: results.append(w) print(results) -- Steve From sourceonly at gmail.com Sat Mar 31 01:44:58 2018 From: sourceonly at gmail.com (An Liu) Date: Sat, 31 Mar 2018 05:44:58 +0000 Subject: [Tutor] really basic py/regex In-Reply-To: References: Message-ID: On Fri, 30 Mar 2018 at 12:03 bruce wrote: > Hi. > > Trying to quickly get the re.match(....) to extract the groups from the > string. > > x="MATH 59900/40 [47490] - THE " > > The regex has to return MATH, 59900, 40,, and 47490 > > d=re.match(r'(\D+)...) gets the MATH... did you look into d.group(0) if d existed? > > > But I can't see (yet) how to get the rest of what I need... > > Pointers would be useful. > > Thanks > _______________________________________________ > Tutor maillist - Tutor at python.org > To unsubscribe or change subscription options: > https://mail.python.org/mailman/listinfo/tutor > -- Liu An Institution of modern physics, Shanghai, China From __peter__ at web.de Sat Mar 31 05:03:08 2018 From: __peter__ at web.de (Peter Otten) Date: Sat, 31 Mar 2018 11:03:08 +0200 Subject: [Tutor] really basic py/regex References: <20180331070905.GU16661@ando.pearwood.info> Message-ID: Steven D'Aprano wrote: > blacklist = set(['THE']) # in Python 3, use {'THE'} Note that set literals were backported to Python 2.7: $ python Python 2.7.6 (default, Nov 23 2017, 15:49:48) [GCC 4.8.4] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> {"foo"} set(['foo']) From __peter__ at web.de Sat Mar 31 06:00:10 2018 From: __peter__ at web.de (Peter Otten) Date: Sat, 31 Mar 2018 12:00:10 +0200 Subject: [Tutor] really basic py/regex References: Message-ID: bruce wrote: > Trying to quickly get the re.match(....) to extract the groups from the > string. > > x="MATH 59900/40 [47490] - THE " > > The regex has to return MATH, 59900, 40,, and 47490 > > d=re.match(r'(\D+)...) gets the MATH... > > But I can't see (yet) how to get the rest of what I need... > > Pointers would be useful. Bruce, you have to make an attempt to explain exactly what you want in plain English. At the very least there have to be a few more examples, both matching and not matching. The number of regular expressions that can be reverse-engineered from a single example is infinite, ranging from >>> re.compile("(MATH) (59900)/(40) \[(47490)\]").search(x).groups() ('MATH', '59900', '40', '47490') -- which is most certainly too tight -- over >>> re.compile(r"([A-Z]+)\s+(\d+)/(\d+)\s+\[(\d+)\]").search(x).groups() ('MATH', '59900', '40', '47490') -- which may be just right -- to >>> re.compile(r"([^ /[\]]+).*?([^ /[\]]+).*?([^ /[\]]+).*?([^ /[\]]+)").search(x).groups() ('MATH', '59900', '40', '47490') -- which is probably too permissive. From steve at pearwood.info Sat Mar 31 06:04:46 2018 From: steve at pearwood.info (Steven D'Aprano) Date: Sat, 31 Mar 2018 21:04:46 +1100 Subject: [Tutor] really basic py/regex In-Reply-To: References: <20180331070905.GU16661@ando.pearwood.info> Message-ID: <20180331100445.GV16661@ando.pearwood.info> On Sat, Mar 31, 2018 at 11:03:08AM +0200, Peter Otten wrote: > Steven D'Aprano wrote: > > > blacklist = set(['THE']) # in Python 3, use {'THE'} > > Note that set literals were backported to Python 2.7: Doh! Thanks for the reminder. When I'm using Python 2.7, I always try to use syntax that works back to 2.4 on account of that being the system Python on my system. So I forget that 2.7 has certain features like set literals. -- Steve