From 1dff98202cf054439a60a0c300ea27af486d4c5b Mon Sep 17 00:00:00 2001 From: Utkarsh Trivedi <104593332+UtkarshTrivedi2934@users.noreply.github.com> Date: Wed, 10 Jan 2024 00:05:13 +0530 Subject: [PATCH 1/3] Add files via upload --- .../Model.ipynb | 790 + .../README.md.txt | 15 + .../data.csv | 20002 ++++++++++++++++ 3 files changed, 20807 insertions(+) create mode 100644 Classification of Cyber Bulling using NLP/Model.ipynb create mode 100644 Classification of Cyber Bulling using NLP/README.md.txt create mode 100644 Classification of Cyber Bulling using NLP/data.csv diff --git a/Classification of Cyber Bulling using NLP/Model.ipynb b/Classification of Cyber Bulling using NLP/Model.ipynb new file mode 100644 index 000000000..50c6eb9c1 --- /dev/null +++ b/Classification of Cyber Bulling using NLP/Model.ipynb @@ -0,0 +1,790 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "id": "e955e6a1", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import numpy as np" + ] + }, + { + "cell_type": "markdown", + "id": "6a384347", + "metadata": {}, + "source": [ + "# Importing dataset" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "70cec06e", + "metadata": {}, + "outputs": [], + "source": [ + "data = pd.read_csv('data.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "c7cb269f", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
contentannotation/label/0
0Get fucking real dude.1
1She is as dirty as they come and that crook ...1
2why did you fuck it up. I could do it all day...1
3Dude they dont finish enclosing the fucking s...1
4WTF are you talking about Men? No men thats n...1
\n", + "
" + ], + "text/plain": [ + " content annotation/label/0\n", + "0 Get fucking real dude. 1\n", + "1 She is as dirty as they come and that crook ... 1\n", + "2 why did you fuck it up. I could do it all day... 1\n", + "3 Dude they dont finish enclosing the fucking s... 1\n", + "4 WTF are you talking about Men? No men thats n... 1" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "baa06bd5", + "metadata": {}, + "outputs": [], + "source": [ + "data.rename(columns = {'annotation/label/0':'output'}, inplace = True)" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "caa893c2", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
contentoutput
0Get fucking real dude.1
1She is as dirty as they come and that crook ...1
2why did you fuck it up. I could do it all day...1
3Dude they dont finish enclosing the fucking s...1
4WTF are you talking about Men? No men thats n...1
\n", + "
" + ], + "text/plain": [ + " content output\n", + "0 Get fucking real dude. 1\n", + "1 She is as dirty as they come and that crook ... 1\n", + "2 why did you fuck it up. I could do it all day... 1\n", + "3 Dude they dont finish enclosing the fucking s... 1\n", + "4 WTF are you talking about Men? No men thats n... 1" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "2a623a10", + "metadata": {}, + "outputs": [], + "source": [ + "x_train = data.content\n", + "y_train = data.output" + ] + }, + { + "cell_type": "markdown", + "id": "b3ab8e47", + "metadata": {}, + "source": [ + "# Splitting data into train and test" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "a1b48a27", + "metadata": {}, + "outputs": [], + "source": [ + "from sklearn.model_selection import train_test_split\n", + "x_train, x_test, y_train, y_test = train_test_split(x_train, y_train, test_size=0.33, random_state=1)" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "9dc16eb4", + "metadata": {}, + "outputs": [], + "source": [ + "x_train = np.array(x_train)\n", + "y_train = np.array(y_train)" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "4a5a2bfa", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "((13400,), (13400,))" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "y_train.shape , x_train.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "01582156", + "metadata": {}, + "outputs": [], + "source": [ + "from nltk.stem import WordNetLemmatizer\n", + "from nltk import pos_tag\n", + "lemmatizer = WordNetLemmatizer()" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "cd03f338", + "metadata": {}, + "outputs": [], + "source": [ + "from nltk.corpus import wordnet\n", + "def get_simple_pos(tag):\n", + " \n", + " if tag.startswith('J'):\n", + " return wordnet.ADJ\n", + " elif tag.startswith('V'):\n", + " return wordnet.VERB\n", + " elif tag.startswith('N'):\n", + " return wordnet.NOUN\n", + " elif tag.startswith('R'):\n", + " return wordnet.ADV\n", + " else:\n", + " return wordnet.NOUN" + ] + }, + { + "cell_type": "markdown", + "id": "a612a72b", + "metadata": {}, + "source": [ + "# finding out stopwords" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "id": "bcb05865", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "({'!',\n", + " '\"',\n", + " '#',\n", + " '$',\n", + " '%',\n", + " '&',\n", + " \"'\",\n", + " '(',\n", + " ')',\n", + " '*',\n", + " '+',\n", + " ',',\n", + " '-',\n", + " '.',\n", + " '/',\n", + " ':',\n", + " ';',\n", + " '<',\n", + " '=',\n", + " '>',\n", + " '?',\n", + " '@',\n", + " '[',\n", + " '\\\\',\n", + " ']',\n", + " '^',\n", + " '_',\n", + " '`',\n", + " 'a',\n", + " 'about',\n", + " 'above',\n", + " 'after',\n", + " 'again',\n", + " 'against',\n", + " 'ain',\n", + " 'all',\n", + " 'am',\n", + " 'an',\n", + " 'and',\n", + " 'any',\n", + " 'are',\n", + " 'aren',\n", + " \"aren't\",\n", + " 'as',\n", + " 'at',\n", + " 'be',\n", + " 'because',\n", + " 'been',\n", + " 'before',\n", + " 'being',\n", + " 'below',\n", + " 'between',\n", + " 'both',\n", + " 'but',\n", + " 'by',\n", + " 'can',\n", + " 'couldn',\n", + " \"couldn't\",\n", + " 'd',\n", + " 'did',\n", + " 'didn',\n", + " \"didn't\",\n", + " 'do',\n", + " 'does',\n", + " 'doesn',\n", + " \"doesn't\",\n", + " 'doing',\n", + " 'don',\n", + " \"don't\",\n", + " 'down',\n", + " 'during',\n", + " 'each',\n", + " 'few',\n", + " 'for',\n", + " 'from',\n", + " 'further',\n", + " 'had',\n", + " 'hadn',\n", + " \"hadn't\",\n", + " 'has',\n", + " 'hasn',\n", + " \"hasn't\",\n", + " 'have',\n", + " 'haven',\n", + " \"haven't\",\n", + " 'having',\n", + " 'he',\n", + " 'her',\n", + " 'here',\n", + " 'hers',\n", + " 'herself',\n", + " 'him',\n", + " 'himself',\n", + " 'his',\n", + " 'how',\n", + " 'i',\n", + " 'if',\n", + " 'in',\n", + " 'into',\n", + " 'is',\n", + " 'isn',\n", + " \"isn't\",\n", + " 'it',\n", + " \"it's\",\n", + " 'its',\n", + " 'itself',\n", + " 'just',\n", + " 'll',\n", + " 'm',\n", + " 'ma',\n", + " 'me',\n", + " 'mightn',\n", + " \"mightn't\",\n", + " 'more',\n", + " 'most',\n", + " 'mustn',\n", + " \"mustn't\",\n", + " 'my',\n", + " 'myself',\n", + " 'needn',\n", + " \"needn't\",\n", + " 'no',\n", + " 'nor',\n", + " 'not',\n", + " 'now',\n", + " 'o',\n", + " 'of',\n", + " 'off',\n", + " 'on',\n", + " 'once',\n", + " 'only',\n", + " 'or',\n", + " 'other',\n", + " 'our',\n", + " 'ours',\n", + " 'ourselves',\n", + " 'out',\n", + " 'over',\n", + " 'own',\n", + " 're',\n", + " 's',\n", + " 'same',\n", + " 'shan',\n", + " \"shan't\",\n", + " 'she',\n", + " \"she's\",\n", + " 'should',\n", + " \"should've\",\n", + " 'shouldn',\n", + " \"shouldn't\",\n", + " 'so',\n", + " 'some',\n", + " 'such',\n", + " 't',\n", + " 'than',\n", + " 'that',\n", + " \"that'll\",\n", + " 'the',\n", + " 'their',\n", + " 'theirs',\n", + " 'them',\n", + " 'themselves',\n", + " 'then',\n", + " 'there',\n", + " 'these',\n", + " 'they',\n", + " 'this',\n", + " 'those',\n", + " 'through',\n", + " 'to',\n", + " 'too',\n", + " 'under',\n", + " 'until',\n", + " 'up',\n", + " 've',\n", + " 'very',\n", + " 'was',\n", + " 'wasn',\n", + " \"wasn't\",\n", + " 'we',\n", + " 'were',\n", + " 'weren',\n", + " \"weren't\",\n", + " 'what',\n", + " 'when',\n", + " 'where',\n", + " 'which',\n", + " 'while',\n", + " 'who',\n", + " 'whom',\n", + " 'why',\n", + " 'will',\n", + " 'with',\n", + " 'won',\n", + " \"won't\",\n", + " 'wouldn',\n", + " \"wouldn't\",\n", + " 'y',\n", + " 'you',\n", + " \"you'd\",\n", + " \"you'll\",\n", + " \"you're\",\n", + " \"you've\",\n", + " 'your',\n", + " 'yours',\n", + " 'yourself',\n", + " 'yourselves',\n", + " '{',\n", + " '|',\n", + " '}',\n", + " '~'},\n", + " '!\"#$%&\\'()*+,-./:;<=>?@[\\\\]^_`{|}~')" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from nltk.corpus import stopwords\n", + "import string\n", + "stops = set(stopwords.words('english'))\n", + "punctuations = list(string.punctuation)\n", + "stops.update(punctuations)\n", + "stops, string.punctuation" + ] + }, + { + "cell_type": "markdown", + "id": "901f10e1", + "metadata": {}, + "source": [ + "# data cleaning" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "id": "d37297b2", + "metadata": {}, + "outputs": [], + "source": [ + "def clean_review(words):\n", + " output_words = []\n", + " for w in words:\n", + " if w.lower() not in stops:\n", + " pos = pos_tag([w])\n", + " clean_word = lemmatizer.lemmatize(w, pos = get_simple_pos(pos[0][1]))\n", + " output_words.append(clean_word.lower())\n", + " return \" \".join(output_words)" + ] + }, + { + "cell_type": "markdown", + "id": "6963c17e", + "metadata": {}, + "source": [ + "# Word tokenization" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "id": "f765aa16", + "metadata": {}, + "outputs": [], + "source": [ + "from nltk.tokenize import word_tokenize \n", + "x_train = [clean_review(word_tokenize(i)) for i in x_train]" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "id": "bc109a24", + "metadata": {}, + "outputs": [], + "source": [ + "x_test = np.array(x_test)" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "id": "41088bc8", + "metadata": {}, + "outputs": [], + "source": [ + "x_test = [ clean_review(word_tokenize(i)) for i in x_test]\n", + "from sklearn.feature_extraction.text import TfidfVectorizer\n", + "v = TfidfVectorizer(analyzer = 'word',max_features = 3150,max_df = 0.8,ngram_range=(1,1))\n", + "train_features= v.fit_transform(x_train)\n", + "test_features=v.transform(x_test)" + ] + }, + { + "cell_type": "markdown", + "id": "10ad1102", + "metadata": {}, + "source": [ + "# Applying classification algorithms" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "id": "8ee99c82", + "metadata": {}, + "outputs": [], + "source": [ + "from nltk.classify.scikitlearn import SklearnClassifier\n", + "from sklearn.ensemble import RandomForestClassifier\n", + "rfc = RandomForestClassifier()\n", + "classifier_sklearn1 = SklearnClassifier(rfc)\n", + "x_test = test_features.todense()\n", + "x_train = train_features.todense()\n", + "rfc.fit(train_features , y_train)\n", + "RandomForestClassifier()\n", + "y_pred = rfc.predict(test_features)" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "id": "9a59e39b", + "metadata": {}, + "outputs": [], + "source": [ + "from sklearn.metrics import accuracy_score" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "id": "aaa95c1a", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0.8871383123769125" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "accuracy_score(y_test, y_pred)" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "id": "4f397936", + "metadata": {}, + "outputs": [], + "source": [ + "from sklearn.linear_model import LogisticRegression\n", + "from sklearn.neighbors import KNeighborsClassifier" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "id": "e7899edd", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0.7426147553401" + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "lr = LogisticRegression()\n", + "classifier_sklearn2 = SklearnClassifier(lr)\n", + "lr.fit(train_features , y_train)\n", + "LogisticRegression()\n", + "y_pred = lr.predict(test_features)\n", + "\n", + "accuracy_score(y_test, y_pred)" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "id": "ef783428", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0.6639903044993183" + ] + }, + "execution_count": 26, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "knn = KNeighborsClassifier()\n", + "classifier_sklearn3 = SklearnClassifier(knn)\n", + "knn.fit(train_features , y_train)\n", + "KNeighborsClassifier()\n", + "y_pred = knn.predict(test_features)\n", + "\n", + "accuracy_score(y_test, y_pred)" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "id": "e08c9a73", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0.8710801393728222" + ] + }, + "execution_count": 27, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from sklearn.svm import SVC\n", + "\n", + "svm = SVC()\n", + "classifier_sklearn4 = SklearnClassifier(svm)\n", + "svm.fit(train_features , y_train)\n", + "SVC()\n", + "y_pred = svm.predict(test_features)\n", + "\n", + "accuracy_score(y_test, y_pred)" + ] + }, + { + "cell_type": "markdown", + "id": "02a05285", + "metadata": {}, + "source": [ + "# Random forest provided the best result" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.11.5" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/Classification of Cyber Bulling using NLP/README.md.txt b/Classification of Cyber Bulling using NLP/README.md.txt new file mode 100644 index 000000000..54212b60d --- /dev/null +++ b/Classification of Cyber Bulling using NLP/README.md.txt @@ -0,0 +1,15 @@ +Cyberbullying, a form of online harassment, has become a pervasive issue in today's digital age. Natural Language Processing (NLP) offers a powerful toolset for addressing and classifying instances of cyberbullying, enhancing our ability to detect and mitigate this harmful behavior. + +Key features: + +Text Analysis: NLP techniques enable the analysis of textual content in various online platforms such as social media, chat rooms, and forums. By examining the language used in these interactions, NLP algorithms can identify patterns associated with cyberbullying, including offensive language, threats, and personal attacks. + +Sentiment Analysis: Sentiment analysis, a subset of NLP, aids in discerning the emotional tone of messages. Cyberbullying often involves negative sentiments, and sentiment analysis can help classify messages as potentially harmful. Identifying aggressive or harmful sentiment is crucial in flagging instances of cyberbullying. + +Keyword Extraction: NLP models can extract keywords related to cyberbullying, including derogatory terms, slurs, and threatening language. Keyword extraction facilitates the identification of potentially harmful content, contributing to the classification process. + +Contextual Understanding: Understanding the context of a message is crucial for accurate classification. NLP models can be trained to consider contextual nuances, distinguishing between playful banter and genuine threats. This contextual understanding enhances the precision of cyberbullying classification. + +Machine Learning Models: Utilizing machine learning algorithms within the NLP framework allows for the development of robust classification models. By training on labeled datasets that include examples of cyberbullying, these models can learn to recognize and classify new instances of such behavior. + +Conclusion: In conclusion, the application of NLP in the classification of cyberbullying represents a significant step forward in addressing the challenges posed by online harassment. By leveraging the capabilities of NLP, we can develop more sophisticated and adaptive tools to create safer digital spaces. \ No newline at end of file diff --git a/Classification of Cyber Bulling using NLP/data.csv b/Classification of Cyber Bulling using NLP/data.csv new file mode 100644 index 000000000..fa9f02e69 --- /dev/null +++ b/Classification of Cyber Bulling using NLP/data.csv @@ -0,0 +1,20002 @@ +content,annotation/label/0 + Get fucking real dude.,1 + She is as dirty as they come and that crook Rengel the Dems are so fucking corrupt it's a joke. Make Republicans look like ...,1 + why did you fuck it up. I could do it all day too. Let's do it when you have an hour. Ping me later to sched writing a book here.,1 + Dude they dont finish enclosing the fucking showers. I hate half assed jobs. Whats the reasononing behind it? Makes no sense.,1 + WTF are you talking about Men? No men thats not a menage that's just gay.,1 +Ill save you the trouble sister. Here comes a big ol fuck France block coming your way here on the twitter.,1 + Im dead serious.Real athletes never cheat don't even have the appearance of at his level. Fuck him dude seriously I think he did,1 +...go absolutely insane.hate to be the bearer of bad news..LoL..dont shoot the messenger (cause we all know you bought that pistol,1 +Lmao im watching the same thing ahaha. The gay guy is hilarious! "Dede having a good day and I dont want anyone to mess it up.",1 +LOL no he said What do you call a jail cell to a gay guy? Paradise! ahaha.,1 +truth on both counts that guy is an ass and their product is sub par. I tell people try Dalesandros orJim's,1 +Shakespeare nerd!,1 +you are SUCH a fucking dork,1 +Heh. Fuck 'em WHERE?!?,1 +damn it i totally forgot that one!,1 +wow damn I would have been pissed @ that...,1 +nigga u geigh lmao! fuck yo finals beeeeeitch,1 +that sucks :(,1 +read that this morning. my fav is how they just straight up say "cum shots",1 +Unibroue 17 !!!! Another damn good Unibroue,1 +damn your evil 60 minute IPA beckoning me from the fridge right now...,1 +It did then my fucking dad turned it off. I just don't think it likes your movies. I was tryin to watch Nanny Diaries.,1 +it pretty much is a fuck you card..,1 +that karma is a bitch HUH,1 +don't get too fat or you'll turn into a boomer,1 +the hormones are worse for guys. I cant tell you how much I truly hate the thoughts that go through my head.,1 +except for joe jonas the ass munch who broke up w/our tyler via phone..kinda like doing via text - what kind of a-hole does that?,1 +man that rly sucks. I for 1 am positive that all will work out. You're a bright dude... pretty cool 2 if I don't say so myself.,1 +hard to kick ass yourself with slippers on? On it.,1 +Thats pretty damn awesome! Very smart :) @Aaronage Sure!,1 +freak'n awesome. so far loving 4.5. the browser is fantastic. and finally video pretty cool,1 +Damn that sounds good...,1 +they should have a wii loser..that way you can compete with your wii friends.,1 +@markmancao haha. i love it! gay nights for all!,1 +that's awesome! you're pretty damn good!,1 +Faggoty fag fag. Gay secks man blowjob. Settle down.,1 +Right. That wouldn't be creepy as fuck.,1 +HOLY SHIT. Fuck that band.,1 +Gay fag.,1 +oh ok it's the dick-in-a-box guys that explains the timberlake appearance,1 +*falls off of bed laughing fabulous ass off* Dude I think that made me BLUSH. WTF? LOL?,1 +and @justlikeanovel: *raises hand rather gaily* One real gay man right here darlings! HOLLA! #supergay,1 + oh man. the malls are a mess it grosses me out. ohhh capitalist dogma how i hate you,1 +where'd ya put it? o btw: "kick ass quote Copyright© 2009 @abcd91 All Rights Reserved",1 +It sucks to be done with exams n still be @ Mayag.,1 +Epic WINS for Fuck City<3,1 +Has it snowed where you are?? I miss the damn snow. I haven't seen any in forever. Everyone has some snow but me :( lol,1 + aren't you just super special. I will not know the sweetness of sleep until about 9 tonight. I hate grad school. I want out!,1 +fuck yes. I hate them at work...,1 +Holy ass hell balls!!! $260 for premium???? Fuck upgrading. I will fucking cope with Basic,1 +but seriously... WHY THE HELL ARE YOU STILL ONLINE???? Were you injured in god damn 'NAM or something??? GO!!!,1 +damn. Don't want to visit a country that doesn't allow passport smile. Just want to go to Cabo soon.,1 +I've never been to New York and Peyton was an ass when the Chargers wanted to draft him but I do love to win.,1 +damn. did you buy bitchy too?,1 +then by all means bitch away! haha.,1 +sucks that ppl will do anything to make a buck. i just love how your fans are calling them out. and i'm glad your iphone is safe.,1 +Let that pussy freeze. Rotten bitey little bastard.,1 +Dood! You just justified your MBA. I pity the sorry ass of that downtrodden employee whose manager you'll soon become.,1 +hehehe. mine pleasure. Btw I too so loves it when people be presumptous pricksy wicksies! feel jolly nice for me ass to rub on.,1 +I've only lived a quarter of my life and no crisis so far... loser experience yeah...couple of kinky pinky stuff-yeah. But crisis? Naa,1 +imagine a building. not any building...a fucking 300 acre building full of weed....not any weed...but Caucasian Monkey-fuck Weed!,1 +Ugh twitter stop it you fucking slut.,1 +HAHAHAHAHAHAHAHAHAHAHAHAHA (eww now thats fucking gross!) HAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAAHAHAHAHAHAHAHAHAHAAHAHAAHAHAAH,1 +cute video lexi u hve some of the of the weridest & cutest little toys i know wht u'll say (shut the fuck up ACH) haha,1 +Fuck the pics! @giove_dea WE WANT VIDS!!,1 +Hard to play because it is damn fucking awful,1 +you got that right! People stealing others' generators & other stuff inside the homes when they know no one's home..sucks big time,1 +no grown man should include DIP in his sentence....lol...I know I'm hatin but fuck it I'm lookin @ snow..lol,1 +oh god we have an icp display in our window and weve been getting so many fucking juggalos and they smell sooo bad.,1 +you should have her talk to @junsten about that. Similarly he once told me completely out of the blue "I'd hate to be a bird.",1 +I nominate @PRsarahevans for a Shorty Award in #socialmedia because... Shes damn good at everything to do with Social Media.,1 +Captain Jean Luc Pic-card of the USS Enter-prize Captain Jean Luc Pic-Y'KNOW WHAT? FUCK YOU TEMPLESMITH!,1 +FUCK YOU RIGHT IN THE FILTHY PUCKERING SPHINCTER YOU CALL A SOUL!,1 +another downside to living in DSM but working in Indianola: lunch meetups are usually not possible. :( damn isolation!!!,1 +there's nothing better than listening to music on shuffle and hearing you say "you bitch!" randomly in the middle of it.,1 +I got it. How many damn websites do u have homie! Sheesh!,1 +U know they all the same dame spot! I bet ya'll got the same damn middle eastern type of cats cooking that crack up too!,1 + kno I check ur blog out! Alpha females vs being a bitch.....damn u be analyzing!,1 +haris i m trying to control my fat tummy did'nt eat from 2 days :D,1 +700. you glutinous bitch!,1 +Ok you're starting to sell me on these vinyl toys (damn that sounds bad),1 +So true so true. Lame ass people are now officially off my radar!!!! Bu-bye!,1 +lo thankyou.. will see you soon :) and i hav to send a mail to u damn!,1 +Have you tried 'fuck' and 'Fuck'? (yes they are different),1 +Well not unless he wants some hot Vulcan action. It only happens once every seven years but damn is it worth it.,1 +damn i was hoping for some cash out of this... how bout 5 for pain and suffering lol,1 +that sucks... she should prolly just change her major lol,1 +that sucks... so are there plans to get back together? or are they done?,1 +you are a fatty fat fat,1 +you never posted your blog. and today is guest blog day. get with the program my slut pink zebra. LOL loveee you anyway!,1 +they're not gross. U shaddup u fat ass HATER!!! & yes I made them for mark & my son.,1 +no one likes every fat snack u do bitch! so shaddup ahahahahaha,1 +stop the hateration bitch! it's only gonna make that mohawk stand up rotf!!!,1 +ask him why he's jumping out of the window. And ask him hows he gonna do it in those tight ass jeans???,1 +'Night Guy' is ALL motivated @ 11pm but he knows 'Morning Guy' is gonna hate him when Miss Emily arrives at 5:30am ;-) Night Tweets!,1 +OK but I'm telling you it's going to be hard for me to fight my inner grammar nerd. I'll do it for the cause though ;),1 +mythbusters is a great and nerdy show. Embrace your inner nerd..no suprise they were on the launch of youtube live ha NERDZ ROOL,1 +lol @ "the bitch". damn.,1 +damn. thats crazy early. i wont hit the city til 9:30 but i will be a few blocks from the spot.,1 +Slurpees are awesome. Damn now I really really want one O.o,1 +I can see it now. "Listen you cow-loving yahoos just put all of the slurpee in this bag! What? Cups? I don't need fucking cups!,1 +i loved it i laughed my ass off,1 +ahh you might be on to something...damn techies,1 +The pig of shame? Lol! Is that like the aardvark of discontent?,1 +Still - it's damn moronic that media people can't access media - particularly media made by their own company!,1 +if anyone said Arial I'm gonna beat their ass.,1 +well find him and kick his butt too! I hate it when people take advantage of the mentally challenged.,1 +Tell her she says Bitch like it's a bad thing,1 +I did have a moment of seriously considering that. I mean... my Dirt Devil sucks. But I didn't plan on buying a new one soon,1 +Ugh! I hate when I get spam followers... They shouldn't count against our talley of actual followers... :-p,1 +You know what you are? You're like a big bear with claws and with fangs... big fucking teeth man.,1 +Damn you're totally geeking out on us tonite.,1 +the eagle w/ @leahsairy ... Decided 2 not do power lesbian night @ mecca & hang out w/ our real queer ppl 2night. gr8 indy band. Emo punk.,1 +we are so silly and pathetic and so fucking cool! You tellin me you choking made me choke! And I am sitting next to some girl w ...,1 +Let your hate for Gambit grow. Embrace it. Spread it.,1 +dig deep and find that special Christmas hate!,1 +I tried to rickroll my office christmas party last night but the damn band didn't know it!,1 +even though I was at the same lunch as you we missed you at our end of the table! Need a damn smart phone! Coulda tweeted back.,1 +Smack a bitch? :-D,1 +rock not the. He gives the emo populists limp wrist rocker throw.,1 +Already on the coffee. I love her but hate the whole spite thing. Climbed right on top of me to do it!,1 +i feel fucking great get me another drink,1 +You've got 5" of snow? Damn. I'm jealous.,1 +It just sucks that so many use it as a crutch.,1 +They say I have the best ass this side of fourteenth street.,1 +yes i love the pillows livejournal jrock rotations (get an lj they're sick) and uhh fuck i dunno twitter?? just the site,1 +ha not that creepy. because it's week 10 and I'm fucking stressed out as hell. I wish I could take a trip down there x.x,1 +Fuck amen to that,1 +Aww... Dnt hate the weather rain can be so soothing sometimes!^^ I still have one more test DD:,1 +I knw!!!!! I hate that! D:,1 +Aww. Thanks dear. And I hate my gradeschool friends for ditching me. They forgot about me when we are suppose to be at her wake.=(,1 +yeah. i had to beg the stupid teacher. it was so gay.,1 +yeah we all call her a whore and shes all don't call me that! So i called her a slut. And she said im a tease! And i told her ...,1 +told ya she was fat! she's loyal tho she has this goin for her...,1 +if you tweet about that damn song one more time.... And its on the Scion double disc promo cd,1 +I have all th nerd at home and I'm a smart ass too. So I answered you,1 +u got me lemming for some laneige whitening shit! ive been breakin out lately n i need somethin to whiten my damn acne scars bleh,1 +you're not a twitter slut until you show us full frontal nudity... so until then you're just a tease =P,1 +haha... so you want to be a twitter slut... alright fine... i'll be waiting for the moment you mature from a tease to a slut!,1 +and there were only 5 of us.. it was a night that i've already forgotten... damn the alcohol,1 +I like the verses to the song....just not that lame ass auto tuning nigga on the hook,1 +hold up nigga..u cant hate Jay-Z...might have to beat yo ass like that nigga did when that other guy said F Tupac...lmao,1 +way to damn hard,1 +the explosion of social media into mainstream business. We will see everyone joining Twitter its the "year of the nerd",1 +but...but...to hate them is sin!!! just give me the ones you get angry with...i'll take care of them! hahaha,1 +DOGS LICK THEIR ASS...NEED I SAY MORE? DOG.,1 +No I HATE those commercials! Just GROSS. *gag* Okay okay you've got an hour before showtime. hehehe ♥,1 +it was a joke haha. i figured id be emo too since everyone is complaining on here,1 +It sucks though when you have nothing to do at 4AM and your roommate wants to sleep.,1 +o so the rumors are true i am OBESE! yea fat!,1 +girlfriend where the fuck did u find that photo! lmao!,1 +ur a damn fool lmao,1 +They're not my preference but the app is so damn fast and thorough that I let it slide.,1 + Ha! Yeah that caught my attention too. Now wait & watch for Red Wings fans to freak. I'm gonna make popcorn for that show :),1 +Tell them you want YouTube to quit fucking with things that no one wants fucked with.,1 +No you just piss out anything your body won't absorb.,1 +Doh! dont you hate it when that happens I keep meaning to take a backup myself,1 +Damn he's doing sneeks for Nike and Louis Vuitton? Dude's gonna be rolling in dollar...,1 +Mate it is. In Newcastle it was -1 down Bath -6 it's fucking brassic cold,1 +hate text talking",1 +: And whilst on the subject all Aussie drivers should be reminded KEEP LEFT UNLESS OVERTAKING. Damn middle lane owners club!,1 +less #damn-fridays more #bad_wookie_pun,1 +women are fucking disgusting.,1 +you bet your sweet ass you will!,1 +dating a 4 year old? Damn. You're faster than me. I only caught 3 year olds name.,1 + will do when i get home only time i heard it was warped though fuck life!,1 +Man why u live in NYC in that crazy ass weather. Move out to LA. It's nice EVERYDAY. NYC is soo over-rated! lol,1 +i got ur ticks but yo ass ain't gonna come! lol,1 +Ugh ok... I hate NYC also. Hmmm. thinking...We are having a Screening on the FOX Lot that week. Maybe u can roll through?,1 +stuff like building the forums is what I do when writing is kicking my ass that's how I do it ;),1 +Also I caught that "Gai-damn" earlier and I support it 100% ;),1 +gee i'd hate to see what you say about the family ;),1 +dude dont tell me what to do thats not your place. i do what i want. just chill the fuck out and worry about yourself.,1 +damn fine! The snow is gone thank god!,1 +That sucks. Life can't really be that bad right? Chocolate does always help.,1 +i hate you :P happy birthday dude good to know your enjoying it,1 +thats a good question. most lawyers HATE that stuff.,1 +YOU STUPID WHORE I HOPE YOU ARE IN YOUR HOUSE WHEN I BURN DOWN YOUR HOUSE YOU STUPID WHORE WHY WOULDN'T YOU GO TO PROM WITH ME,1 +oh guess who got an australian shephard puppy today. note: NOT ME. the other roommate. yeah. another. fucking. dog.,1 +ummm. Ya. That's pretty damn pimp.,1 +as much as I hate the winter those pics are beautiful. We've had insane-o storms like that in MO. Sucks so bad esp sans power,1 +got delayed. your ass kicking will have to wait.,1 +I know it sucks but I'm actually envious of you. Though I have orientation for a tutoring program on the 14th. Did I tell you?,1 +it was just a joke man..i wasnt taking the piss out of anything.,1 +i hate your face sounds EXACTLY like something i would say.also reminds me of a drunk girl trying to fight me and,1 +i was spanked but do not only because it makes my kid behave worse so doesn't work. not a lot does work-kinda sucks too.,1 +I've been messing around with some of the beta releases. It murders every other WP version (widget panel still sucks though).,1 +Are you laughing your ass off with all these "juicy" twits?,1 +yeah we do... damn this time difference *HUGS*,1 +OMG bundesliga and brasilian bossanova. This was worse than seeing your loved family dog licking his ass. I'm scarred,1 +hmm so thats suk your soul hate and reinvent you to get my dry cleaning hate?,1 +yep. I didn't think to go online and check calorie/fat count until AFTER dinner. Bummer.,1 +wow - mommy's little cheerleader! *must... not... take... the...piss......*,1 +lol.. that sucks..it's so nice in miami... catching that ocean breeze from the balcony....don't want to rub it in...lol,1 +oh hot damn!,1 +He can't hear you his head's too far up his own ass.,1 +Prison Bitch is a sparkling addition to any resume.,1 +a constant receiver does not a giver make. Prepare to be Prison Bitch Blagojevich (new campaign slogan it rhymes),1 +that sucks that you're sick. Sorry to hear that.,1 +No thanks. I don't want cable. I hate most TV shows. I really hate commercials. I get my news online. I'm good. :),1 +try telling your parents that you don't want to see them. see how well that fucking works out for you yeah?,1 +Football. I hate it. It’s official I’m bad luck.,1 +I fucking love Haunted.,1 +I didn't know you were an avid football watcher. Is that even football? I think it is. Fuck sports.,1 +lol kevin bought me damn near nothing and we dated for over 10 months. my life sucks.,1 +Yea it sucks!!,1 +Indeed. But the Collier conversation relationship head up your gleeful ass kumbaya stuff needs to be put out with the trash.,1 +yeah i am glad i have the next 2 days off.. I just have to get through xmas eve and the weekend afterwards. damn gift cards,1 +hot damn! did you get an iPhone too?,1 +aw thanks. it's going better than yesterday that's for damn sure. :-D,1 +no. i must have missed that one. damn. ;-),1 +have a safe flight.....damn now you make me want some jamba juice,1 +I got it for Wii when I get back from my dad's we're gonna play and it will be so kick-ass.,1 +http://twitpic.com/xm6u - You have an inbox folder for CYA - Covering Your Ass?,1 +him and his damn tech stuff bwahaha,1 +i'm not emo. I'm fucking happy!,1 +well now I have to edit myself and you know how I hate that!,1 +if u get a stye is it from seeing a dog shitting or fucking? And what do I do with my fingers? Consult H if u need to.,1 +what does that say about me that I was laughing my ass of when I heard that. Rapping the word titties is just damn funny,1 +& I was there helping your ass pack to get on the plane. A tru friend - helping you track a sub sized weiner like fucking GPS,1 +you have officially been put on my bread stick mailing list. Fuck those rock republics and eat something already.,1 +i get that ha ha smart ass :p,1 +i feel pretty oh so pretty...i feel pretty and witty and gAY! Ha ha good times,1 +Yeah I mean I know the plan and the creative are kick-ass. But sometimes clients have a warped view.,1 +Oh man that sucks. @Vincentdooly can you help @dsmoore out?,1 +yea the weather sucks. At least you missed the 8 degree weather though lol.,1 +I do but I'm an American. Hence I'm a pussy.,1 +God.. that commute has to be a bitch dealing with.. driving back and forth from Raleigh to Fayetteville...,1 +I take full pride in being a nerd. Hahah.,1 +THAT'S AN UGLY ASS PICTURE!,1 +Pretty much but now there will be less AIM errors! Weeeee you can see that I don't type like a retard!,1 +My grandmother is a big bitch and my father's a fraking arsehole.,1 +you must be bored...you are a twitter whore today. ;),1 +man i'm jealous of your day! i'm also hooked on twitter. damn arv. like i needed another procrastinating tool like this.,1 +just don't eat a meal replacement bar.. I fucking threw up!!,1 +fuck duke!,1 +what if their "you" really sucks? like why be a wack person when you can be an imitation of a more cool person? i think this,1 +2 weeks? how am I gonna live without money for 2 fucking weeks?,1 +Well get your ass busy!,1 +Hi new friend! I like your personality.super cool:) Yeah I forgot it is like 9 am there..that sucks!,1 +damn that sucks..I hope you are ok now,1 +haha! No. We have a new stand up board at work and we have barstools to sit on. I hate them!,1 +Excited that yr friends get to see yr show. I hate them. ;) No rly I do. .....Sad that tonite is last show. Hard to say goodbye?,1 +Thanks. Nothing just watching "Jack ass". Are you having fun doing nothing over there?,1 +Well that's upsetting. We can party it up over here. Jack's ass is quite enjoyable thank you,1 +Fuck. Well you can for a low cost of 19.99 with shipping and handling. But that's only if you really want to.,1 +Fuck again. Call 1800QZAK. Then your problems will be solved. I might even get you a discount,1 +If you stay home to twitter and have a martini on NYE does that make you a loser? don't answer that... I don't want to know,1 +you're a fucking maniac.,1 +its ok decided not to go to fam party. going back to bed. wtf moon i hate you. wtf life. dead.,1 +HAHA WHYYYYY do you hate my school!? NOOOOOO :(:(:,1 +FUCK SUNDAY im super bummed.,1 +whelchers fuckin suck ass!,1 +some peoples drama just sucks!,1 +well that sux donkey dick. No interwebs is kinda a pain for ur work.,1 +Then she changed roles and she is a little less bitch from hell but still her sting has too much barb.,1 +today feels like sunday.....damn lol,1 +Damn didnt even see that lol : /,1 +HATE THAT...happened to me today i was like...YOUR WELCOME *cut eye* and walked back out lol,1 +i hate hate hate it with a passion!! lol...i know the calls are recorded i talk mad shyt down the phone LOL!!!,1 +don't you hate that? Though I have so much product to make by the weekend I wish it was Tuesday.,1 +i think its a cultural fad.. starbucks coffee sucks and its wayy overpriced.,1 +i just deleted all the people that i have on my facebook off myspace Damn if everyone switched i could just delete the account,1 +no! I think UofA's navy jerseys on white pants rule. And all red sucks. But seeing BYUs colors I guess all red makes sense.,1 +here 2!Another big storm is blowing our way. I hope it waits until I'm home from work b4 it starts snowing. Hate driving in it!,1 +no i think you will hate it. Its a bunch of dirty work.,1 +the iced media party. Long ass day at the office time for a drink or 3,1 +easy! keyshia sucks. It's pathetic when an actor makes a better album in his 3rd profession (act stand up) than you do in your first,1 +@TheflyGIRL Done! But I must tell you that negro got a hard ass head. My elbow hurts...,1 +LOL at the Razor Ramon shit. I surely was gonna Ultimate Warrior his ass. Shaking the ropes and the whole 9!,1 +You done started something! Got me all nostalgic and shit KNOWING good and damn well I got work to do...LOL,1 +@mekdot yo...heroes sucks!!! I loved season 1 despised 2 and feel like season 3 is a lousy high school special. BOO HISS BOO!!,1 +That sucks they owe you much?,1 +Boo to be fair they shouldn't give away your room. Kick their ass!,1 +Wow that's bad-ass. You're like Stanley now. Well even more so...,1 +lol figured. So anyway anna is still being a bitch(sorry for the language) She doesnt want to go on the trip. So now onto plan B,1 +anna just has to ruin the holidays for me just like every year. Damn you anna!,1 +rock out with ur cock out dude!!!,1 +that's a shame I hate having to unfollow someone! :-P,1 +BIG FAT HARD HAWAIIAN DICK. Too much?,1 + i hate that too - i have blocked a few of stalker / serial networkers on fb too. maybe they should tweet first?,1 +LOL - nah that's just what we tell the loser guests that we usually toss down in the newsroom!! oh wait...,1 +Israelis to Spanish FM ... Kiss my ass.,1 +No but I'm saying that money that has gone into Gaza SHOULD be feeding people not waging war and breding hate.,1 +I had a dream involving a rhino chasing me because of my polo cologne. Everyone says it represents a fat woman. My life sucks.,1 +Taking the piss = talking trash perhaps,1 +& @babysinead that dude is a fucking PSYCHO. i turned down working for him and he told ppl that I DID and that i was TROUBLE.,1 +& @babysinead i've never even met him in person. he's a fucking douche.,1 +I get that too! It sucks!,1 +hey fag why you gotta ask the whole world!? j/k your awesome,1 +gotta love the gay kid who was drumming trying to get his head in the pic tho HAHA,1 +Sheeyat....Freezing rain is no punk. Hope you didn't fall & bust your ass in the parking lot.... I almost did.,1 +Damn skippy. I should be dead 10 times over......,1 +Its foggy as hell here too. Looks like damn Seattle.,1 +lol penelope died?? thats so depressive i have a compaq it sucks i dont have a name for my computer tho : ),1 +Do you really have a big man ass?,1 +i don't know that bambi's ass is a nice place. LOL,1 +attention whore!,1 +I laughed so hard when I first heard because my gay husband (good friend lol) says code 3 when he has an emergency,1 +http://twitpic.com/xipq - this only makes me hate having a verizon contract even more. erg.,1 +no guarantees. hate the place. I'm ust going there to make sure my parents are still alive.,1 +AWWWW I HATE THAT!!!! I had to buy that gadget you can stick your hard drive into to pull them off. SO SUCKS! Sorry. :0(,1 +Praying for your grandmother and your momma. I hate that they are facing so much.,1 +bitch please your gorgeous,1 +i fucking hate that word hahaha.,1 +i know haha. 1408 is so gay. i don't even know why i'm watching it.,1 +omg - that sucks arse! I am so sorry =/,1 +Sounds like good times. I'm in the office until 7:00 and then I'll probably go for a run. I'm a fat boy getting fatter.,1 +Ye Olde Cock looks nice.,1 +sure you can I'll hide the flashlight. go emo go!,1 +emang lagu2nya emo? bukannya mellow? :D,1 +gitu emo jaman dulu ya :D,1 +Listen RayRay I gave you the lowdown as soon as I got it. I hadn't heard it b4 and I was shocked. She seems to hate his guts.,1 +I thinks you meant to say that TWILIGHT was epic fail not your mistake. I hate stephanie meyer and I've never even met her.,1 +lawl. Sucks to be THEM then.,1 +I'd die first. Damn fareway.,1 +LMAO! He's horrible. The Beatles changed the fucking WORLD! And are still an icon to this day. Who the fuck are you?!?!?,1 +I need to see how this ravin rabids game works first. It'd all have to be in the ass moving. Maybe not moving enough = bad oral?,1 +holy fucking jesus mother gad damnit WTF? wow.,1 +really? Thank fucking god for sleeping pills!,1 +dude that pic of you in the Gold 2009 flyer looks like a friggen glamour shot fag. hearts!,1 +Eff yeah! give @jeffreyparadise and @richiepanic a slap on the ass for me,1 +you are fucking killing me. Please come to a party at my house next time yer in LA. Rice pilaf will be ready,1 +I hate to open the flue after a long fall. We get birds or dead squirrels...totally scary!!!!!,1 +depends on how much you hate fighting w/your light. I read in the car a lot while hub drives so very worth it to me.,1 +he won't wanna pet the guinea pig?,1 +i'd love to visit (or live) in san diego cause of yr round warm weather. i hate cold so bad. crowds n traf would b my probs there,1 +no prob but watch out it's fucking addictive!,1 +re:fuck the creative industries blog post (at squares of wheat):I say:Waaaay too much empty rhetoric there. Be the Change ?,1 +Did...I mention that among my new disciplines are Dementation Dominate Presence and Obtenebration? I am fucking AWESOME.,1 +I *really* hate housework! Then again it was great waking up to a clean LR & kitchen! Maybe I should do it more often... :-),1 +I've been wondering that myself. Its been down for quite a damn long time... @tqbf any comment on that?,1 +well damn we should have had a tweet up. I was at Kona last night as well.,1 +ouch! Hope your alright! :S I hate Black Ice Almost broke my arm on it the other week :P,1 +eeeeew I wanna cum ;),1 + AAYE!!! richard gre is NOT gay-re :P,1 +fuck yeah bra,1 +nope can't deny that sweet face or lil schnauzer w/ ears~always wished Hildie had her pig tails~how is cropping still happening?,1 +Hey~~Happy New Year new friend !! enjoy the movie~ think of me when the crazy proff shows up..damn...can't remember his name,1 +#NAME?,1 + GOOD! Now u can bring ur happy lil' ass over here & help me finish hanging this garland. ;-),1 +Guess there wont be much skidding then. As is said hope you're on the ground floor or everyone will hate Green Grass and High Tides.,1 +The FA50 is a low key ultra here in ATL. It stands for Fat Ass 50K. Loop course so you could do 25K...Half Ass.,1 + me too!!! I also hate closing then opening then closing shifts that gets me all out of wack.,1 +says "no more pizzas for the situation room! or else we will be fat when the war is over...",1 +hangs longer than u while u lay there on ur ass! 1 day u gonna look back @ these days & ask urself where did ur life go?,1 +I slept horribly. Kepted waking up every hour. Kept tossing and turning. Argh I hate having to work today! Time for cardio!,1 +if you can get me a signed copy of Jordan's book....we'll pull some qoutes during shows. That guy kicks ass muchos muchos wow,1 +wErd... you pick out (2) kick ass hip hop songs and we'll doit yo~,1 +hola! Orli ... we are www.LuckyStartups.com looking to interview some kick ass peeps in Israel... you up to it?,1 +yeah I did that a few months ago. How's your show doing man?? looks kick ass!,1 +Thinking about response/actions. Have decided its not going 2b ideal 4 anyone. Its sticky bc its family. Theres love/hate/dislike,1 +Not talking about incident but more so the attitude that I'm gonna bitch & make a comp do something on a subjective matter.,1 +she doesnt want to scar you for life like i could. cant talk her into sending you the video of they guy with the jar in his ass.,1 +when can I meet your uncle??? Maybe he could give a wiki demo to our loser peeps!?,1 +what a coincidence! I'm wearing my fat jeans today and it felt like they were my skinny jeans!,1 +sucks don't it?,1 +doc's a dick.. ill manage without injuring myself.. self inflicted pain would be desperate..which I think I am.. Siiigghhh!!,1 +Agreed! Twitter showed the way with the whale ;),1 +No- shopping isn't what sucks! It's the crowds that cause the trouble. haha! Love your website btw!!,1 +FUCK YEAH BIOSHOCK! Tell me how the apartment hunt goes!,1 +Merry Christmas to you too Casey. For tomorrow. Er or today. Grrr damn time zones....,1 +Are we going to see an appearance of the 'fuck me' boots? :P,1 +Sounds more reasonable. I hate having to buy 8+ presents for my very small family alone. Soulless Myer gift cards FTW,1 +Wtf. Fuck you,1 +Lawlz. yr a bitch. hoe.,1 +Sorry you bitch punched TEO.,1 +oh no I always try to make my desk look neat. Fail whale. There are always newspapers piling up cables are worse!,1 +Funny I always thought Job Security is dependent to how much ass you can kiss? (wait I guess they are one of the same if you think..),1 +Oh I know. It doesn't hurt to have one of the richest woman in the world actually hate you. Elvis had the Memphis Mafia. Oprah...,1 +Lol I'm not enough of a LOTR nerd to need to install Tolkien fonts. :),1 +it was a good show...dude! Did you call in gay rotfl,1 +hmmm....or do they hate you because you didn't let them join in the parranda? Nah probably the corp council thing,1 +LOL Hon I have been saying for a while now that this boy will be gay. It really bothers the hubs when I do so Im tryin 2b good,1 +lol exactly. "Hey guys how about a 13-sided paralellogram? THAT'LL fuck em up!,1 +Yeh but every nerd like to think he/she is devastatingly good-looking as revenge on those who snubbed them. Trust me I kno,1 +Gee i might if the person running this hadn't been such a bitch to me. I'll focus my efforts elsewhere thanks.,1 +haha you'd think so right? I AM giving something away though i'm just surprised cause it's that high..my sqz pg honestly sucks lol,1 +heh i'm a thunking (friggin hate that word - 'thunking' how daft - anyway) - is it a CON?,1 + i just fucking beat you!,1 +HOLY FUCK! that was one tough fucking cow!,1 +yeah i know but its also too bad about the children ya know BECAUsE I FUCKING WON!,1 +Heh his name's Jeremy (stupid little nerd but he's up for any challenge.) And he's about to break anyway.,1 +hippies hate that stuff... too chemical-y. This is true when used in ENORMOUS amounts.,1 +i have to go inside of you tomorrow. i hate myself every time i am in you. i feel cheap and dirty.,1 +#NAME?,1 +(RT) Fat Bastard (my beagle) is writing his "tail-all" confessional diary about online dating...,1 +- Fat Bastard sends hugs for retweet on Austin Girl blog: http://austingirlblog.wordpress.com (need feedback on writing),1 +jizz in my pants is old news nigga. Keep up LOL. instead of doing it locally just come over early and do it here. Fuck local shit,1 +@lastlee...that movie was good...not boring...very gay....but equally good,1 +fuck u and ur early screenings...jealous...prepare for tuesday mash...im coming with woody to freebirds/mash,1 +cant wait to get FUCKED THE FUCK UP,1 +well if they hate you are they still considered a fan?,1 +I'm kinda meh on it--It wouldn't even be a contest as Madonna would kick his ass while he was running around screaming.,1 +ok I take you off of my hate list and send you hugs I am in business..this is my alter ego. mwahahah,1 +http://twitpic.com/rt32 - omg :/ sucks to be u. hope u got some good tunes going makes it more delightful to sit through.,1 +it's one thing if it's my friends using it on me but I hate when 23 year olds message me on OKC and call me that or Older woman,1 +that would be one shocking pussy lol,1 + Totally agree with you. Fuck Prop 8. very cool that apple came out publicly against 8 on the website.,1 +u know that's what I hate about Ohio seeing grown up idiots in shorts when it's freezing outside :0),1 +fuck yes,1 +:) if she is a dumb hoe why'd he put his cock in her?,1 +still nothing. Lucky for you I have the free time to hop on twitter and remind you that you still fucking owe me.,1 +charter sucks as is nothing but trouble - att needs to roll out uverse faster!,1 +did Santa cum n visit u huny?,1 +nice voicemail... i didn't enjoy it cuz i am a bitch.,1 +summer workout tape? How you gonna workout to Kanyes depressing ass album ok maybe 2 songs,1 +Well I I said some words about Pollgod that i didnt mean because a SP member was being a fuck head lol,1 +i'm with you on the new yrs res! i'm 10lbs chubbier than i was 8 mos ago and i ALSO thought i was completely immune to fat! :(,1 +Oh you bastard. You couldn't wait until I'm not busy. I'll probably catch the tail end again. Damn it all.,1 +How is the Loser episode? Lotsa crying??,1 +I am Dutch ;) Over here there's a difference between the fat ho-ho santa and st. nicolas (sinterklaas).,1 +fuck off!!!,1 +ducking ducking ducking. Stupid ass autocorrect,1 +DAMN TJ You getting called out in songs now??!!,1 +LMAO!! I aint gonna front shit did look kinda moist! Ol Duncan Hines Ass!!! LOL!!,1 +my programs is telling me the same damn thing. WTH!?!,1 +I wanna see her tall lanky ass playin tennis lol,1 +The guy who runs it is a major dick underpays or doesn't pay models. He's harassed me and belittled me.,1 +Yeah it was four years ago but I have a long memory. I also still hate the Avalanche even though they've sucked for years. :},1 +Grew up a Habs fan which meant I had to hate the Leafs when I moved to Toronto which meant embracing the Wings.,1 +Wilt fresh spinach with hot bacon fat and top with bacon!,1 + Graphic novel class? I hate you but I love you but still I hate you and oh yesh Hows ya boy JImmy?,1 +usually if I am at the point where I'm ready to say something mean I will click away. I hate mean people. hate them.,1 +yes it's winter time and i'd hate for her ears to get cold out there on the ocean city boardwalk.,1 +Now I know you're really are GAY!,1 +Me?? Hairy ass??? WTF?!?! I would laser that shit...,1 +which keyboard do u hate? I hate iPhone keyboard. Yes touchscreen is cool but I WISH I had actual buttons 2 push! Less typo's,1 +write more books sccessful new venture with me &bring fat fat 2 L.A. so we can hang out and buy our sons a bunch of cute clothes,1 +Fuck you McGaffigan. I WANT TO GO. NAO!,1 +You can stop voting now. Holy fuck. If only McCain had you on his side and you were 18.,1 +You bash Nickelback but you listen to Staind? WTF?! I hate both btw.,1 +I nominate @Badhorse_ for a Shorty Award in #green because... Why the fuck not?,1 +Joanne Angel? You know how much I hate you right now :p <3 XXXorcist,1 +I also lost my wallet over the weekend! its sucks in my case I was just dumb and appear to have dropped it somewhere...,1 +dunno I just saw her go at the top of stairs; It seemed like an ass slide.,1 +It's just crazy. This boy is fucking up my sleep schedule. Probably why I don't mind too much. ;),1 +RE: Hugh's daughter. I just hate to see when a female CEO step down and says it's so "company can evolve" AAARRRG!,1 +like tha new 50 shit fire. finally sum club gangsta shit i neede that!!! hook is catchy as fuck and 50 whas rappin good.,1 +i fuck wit u. u got skillz homie.,1 +-- damn fool. you're a 247 workhorse!,1 +#NAME?,1 +-- damn homie ... in highschool you was the man homie. fuck happened to you?,1 +--- that shit right there fool ... is FUCKING TIGHT!!!! --- http://tinyurl.com/6fro26,1 +no. ur 13 get the fuck off the internet and get back to playing with ur easy bake oven. stupid parents buyin brats iphones.,1 +if Q is there tell him he sucks. He's dark and plays suspect lol,1 +thats the only set back and its a bitch to send ish back,1 +blocked. What a fucking load of old shit.,1 +lol the fuck what concert was that,1 +because I hate you. The last one I rewrote cuz there was a typo and it was bothering me,1 +oops but you're forgiven. Hope they win. I Never had a good exp. with a shelter they hate us military types. Glad you did though!,1 +fuck yo couch,1 +ground her now and she'll kick your ass lol,1 +can't make up my mind. Go out w my girl vip style and leave the dog home alone till morn stay in or go to a gay pj party,1 +Oh Hannah I am so so sorry for your loss. I've done the deathbed vigil and it sucks. I hope your pain eases with time. Love,1 +Happy birthday you damn sexy hobo!,1 +I'm celebrating and drinking to the fact you're an annoying fuck :),1 +I'm doing nothing. I was thinking about going to the Flaming Lips concert but hate going alone.,1 +dude the talk about universe at #LeWeb is awesome. As a nerd guy you have to watch it,1 +Jerry IS Cowboy's problem. He won't hire real coach 'cuz then the credit wouldn't go to him. He's poster child for attn whore.,1 +u r pussy. lulz.,1 +don't you just hate that?! Especially when it is over the most irrelevant crap,1 +yes. Freakin 17 and in college since i was 16 ugh! It sucks. Hah,1 +Then why u cryn? Hate'n on me.,1 +If it wasn't for AT&T's spotty network I'd switch in a heartbeat. That's where Verizon kicks some serious ass.,1 +you fart like a fucking bass drum lol,1 +what da drilly wit dat do! ...oh and i STILL got distribution in Japan...damn that chick was the worst that night,1 +yeah but w/ that running time u'll be there 2morrow. that mmovie is long as fuck.,1 +damn bossman let find out u got 2 jobs. what are u a single parent or somethin'?,1 +no-sign. i dont fuck with "rats",1 +http://twitpic.com/s13a - omg i hate scottiethehottie!! he is a retarded spammer!! he is photographer08 (it got deleted ...,1 +no fuck you,1 +I don't bother arguing that about Bush anymore because people who admire him have damn near no power post-2008 elections.,1 +do you think you are nudging me to change my update...WHORE NAILS!,1 +thats what you get for being a fat ass....FAT ASS...,1 +I HATE YOU!,1 +i've been on twitter 1 week and am about 20 shy of 500. does that make me a loser? LOL LOL LOL,1 +well either wy thy like dick wayyy to much.,1 +omg son i JUST figured out how to reply to youuuuuuu. i hate this lmao,1 +fail whale?,1 +cluster fuck indeed.,1 +- you can trust me to do my part to help @adam_callender win his "biggest loser" contest. ;),1 +Dang I hate the little buttons. GO BACK ONE TWEET!,1 +ironic - I normally hate plastic 4 environmental reasons- this time it actually saved some of the patterns from the wet grass,1 +God Damn !! Ok ... How about Peter Duncan then ?,1 +damn you overload issues! :(,1 +that's killer. Wish it was even cool here. But it's been damn near 80 most of the week. No where near festive temps.,1 +ugh yes. I am a consumer whore... "and how!",1 +SHUT THE FUCK UP!,1 +i hear ya. iPods can get annoying with that damn clicking noise!,1 +dude...if u didnt tell me how 2 do this fucking thing(twittr) i wud prob still b lyk nowhere with it!,1 +Don't you just hate deciding on things.,1 +eddie izzard says the brits pronounce "herb" with the h "because there's a fucking h in it.",1 +I feel like such a nerd watching this! I LOVE IT!!!!!!!!!,1 +#NAME?,1 +wtf? That is so gay.,1 +Would you believe the same article said eating less helps us live longer too? Damn those scientists!,1 +YOU"RE A GAY!? .... =) I <3 you,1 +There's some dude at this bar that totally looks like you. Should I kick his ass for impersonating?,1 +all these awesome people just flock to me. Guess I'm about cool as fuck.,1 +@KitchenGirlJo what's the fail whale?,1 +oh LOL I use a client so I never get the fail whale :-p,1 +could be that I'm not typing hard enough? happened a lot more when I first got this laptop about 3 weeks ago. Sucks ass,1 +you're a fucking bully man.,1 +damn son,1 +fuck the world? Or for the win,1 +http://is.gd/brVS (iTunes) or http://is.gd/b4yp Antrel Rolle previewed today's MIN game on the Best Damn Sports Show Podcast.,1 +oh come on. I mean we all love to hate MyZou but it's one thing to hate MyZou and another to take a time machine to the 70s.,1 +no i dont! He does. I hate his guts!!!,1 +this makes mme smile lol. I hate him. But we still dont bring him up bc to us he is dead and non-existant.,1 +i hope so that way i can fuck him over continuously.,1 +your a effin cunt! Ihu!,1 +dude that sucks man!,1 +Im glad to meet someone with similar FREAK gifts to me. haha,1 +read the emacs-rails codebase and then see why emacs is just damn cool,1 +omg omg omg! finally the shoes r coming out yay yay I want them so so so SO BAD! =) fuck cancer! =) this literary made my day,1 +god a free cure show! damn! I didn't know about this & I live close! ugh lucky lucky how was it??,1 +Girl talked to Black Milk on the phn for an hour. Watching "Big Bang Theory" drunk as fuck eating cereal & its cold in the D.,1 +Are you out celebrating your birthday? If so a birthday drink is ok! But don't forget the marathon. I hate being such a stickler.,1 +Damnit. I've started a new short story. About a dentist. Fuck.,1 +All of my friends are married gay or have been burned so badly they don't want 2 even think about another relationship :o( I've,1 +Well if he's a pussy he surely isn't that man of "substance" your looking for lol...Don't settle when you know you want more.,1 +the fail whale?,1 +Damn you've had more jobs than um er well you're just always employed! lol,1 +lol maaan-fuck this!! I almost busted my shit like 5 times tryna walk on this damn ice!!,1 +burger in each hand? Wut a fat ass!! Lol,1 +yo I only peeped the last 30mins-and I saw here and THOUGHT it was her but figured "naaah this bitch looks way broker" lol yikes,1 +Yeah! id do her like my nigga did them white chicks at the club on Knocked Up...I fuck the shit out u old bitch but no clubin,1 +yeah she pretty cool but she got moments where i be like ehhhh idk! now id fuck but the ass lick wud depend on the nite,1 +Son i just got finished watchin Big Mommas House...WOW!!! She damn sure can...and she a MILF so thats a bonus,1 +yep ur an uber nerd now,1 +and @rapperbigpooh. Was that Sheila easton? Nah...it was that chick that used to fuck with Prince right?,1 +Damn fucking skippy. I'm onthe same shit,1 +Oldest son just turned 19 months and youngest is 5 weeks old. Damn dude u look too young to have a 17 year old! :),1 +Bill Donahue? Seriously? Ask him why he uses hate speech against gays women and Jews and maybe I'd listen to his complaints,1 +I used to do the shopping but when my wife stopped worked a few years back she took over. It is just damn cold until April,1 +I just got done busting my ass for the day. I need Booze!,1 +I nominate @IgortheTroll cuz he's thee Best Damn Troll we gots!! ;)),1 +thats why I hate megavideo. I'll see if I can get someone to update the episodes with an offshore video hoster.,1 +What a cunt!,1 +that sucks loxy. I wish there was smtg I could do! Is chury back in cgy as well?,1 +and the arabs pussy count reaches 250 million. There I said it we're all a bunch of pussies. No offence to the pussies,1 + yeah its seems like most of the time unexplained highs are related to a bad site or fat delays,1 +duh! fat fish and winning the lottery go hand in hand,1 +#NAME?,1 +-politicians should have to pass an ethics exam 2x yearly. I wonder if that's a piss test for them?,1 +I think that's another one that I haven't seen that makes me eligible for gay card revocation,1 +LOOOOL TA PHOTO =D !tu as aimé silvester ou pas ? :S jamais bourré ensemble -_-' mais trop chèr là-bas LOL et le GAY MDR ! lieb dich,1 +Alors NERD s'était bien ? vous avez du être folles pendant lapdance XD à SAMEDIIII <3,1 +np you are happy with the service? do you have anything to compare to? I hate 3 not working out of cities. and whirlpool likes exe,1 +lmmfao! Shuddup! Any grown ass man that let's other grownass men call him Timmy is gaaaaay!,1 +both think I liked the first one better. They both beat Harry Potter though that damn rubbish.,1 +look im sitting at home twittering my ass off on a friday night. I should know better then anyone lol,1 +lmao damn right but we aint talkin bout me here,1 +I fuck wit the lows if there dope...but I know y'all got me fam I ain't trippin,1 +lol britt just said it look like a big ass pillow fight outside,1 +Wow that sucks.Merry Christmas to you and your honey (wow we are both celebrating 'firsts' on that one) -The Bs,1 +Damn skippy. I demand to see you before I leave. You going to come meet BlendMom?,1 +Arsclan would freak on u. Tower Def. is build series of midieval like towers (upgradable) near a pathway of continual attacks.,1 +Some liberal gay atheists or Republican fund raisers should jump on that. ;),1 +what are you gonna stab a bitch with? scissors? knife? spear? sword? cock? pencil? dildo? cattle prod? broken glass?,1 +I once let a Delta Chi fuck me in the ass in Raleigh NC. He took me to Bahama Breeze and that sealed the deal- doesn't take much.,1 +are you sure they weren't looking for my blog w/ "wine bottle in ass"??,1 +i like to fuck when i tweetup.,1 +$10 for water is better than the throat fucking i got for free the last time i was there.,1 +better give @dochobbes the #nerd prize. he's the nicest nerd i know.,1 +dude the ep is sick..Pussy and Tween Me & U are my Jams..,1 +LOL I did zackly same thing! BTW thanks for leading me to @ChipEFT Just reqd Born Loser's Guide to Abundance! http://rurl.org/18kr,1 +damn those Jets! Hears hoping for happier fucks in the future. *blinks*,1 + My pussy is still sadly missing. *blinks* Do you think this will affect my popularity. *evil grin*,1 + *shakes head @ you for calling Kitty a pussy* He's a BOY you know! lol,1 + I work with a very limited bankroll. When I'm running bad I HAVE to go for broke. Now up for the night. Also fuck poker.,1 +I hate those backgrounds because you can't click on any of those listed links. I find it frustrating.,1 +Yes there is definitely an element of Bush fatigue in all this. Can't wait 'til we can ship his ass back to Texas.,1 +dat bitch left u lol,1 +no fucking crazy josh!!!!,1 +no!!!! Ahhh he is fucking crazy hes been killing himself since yesterday still nothing!,1 +call me emo again and i'll cut myself,1 +i hate that i know some french...and the french you used was the french i know,1 +@Dncr1804 i don't even know what i did or said that was "emo-esque",1 +*twitch* I. Hate. You. J/k.,1 +oh man that sucks. I'm sorry. Sucks to live with people who are dirty..trust me I can relate.,1 +I felt the same way 3 weeks ago. And then proceeded to watch the whole. damn. thing. lol,1 +Well you can send me two and get fat on the rest :),1 +you were right the uv filter that came with that kit sucks. freakin glare spots all over my shots,1 +a party bored as fuck. God I need a grown man party,1 +it's like gay people using the f word. somehow allowed.,1 +Damn that is so unfair. Where is the version of Firefox for white slightly balding men.,1 +Can he seriously help me out or are you taking the piss of him :),1 +home now. Misses wont let me drink beer tonight cus I gotta do shit tomorow morning.Sucks.,1 +man it sucks dont it.On the plane home yesterday i was in agony with the cabin pressure.My ears still are not right now :(,1 +So if lifes a bitch and sleep is the cousin of death that whole dam family needs help!!!!!,1 +tell them to fuck off give it a few years then laugh at how much better you are then them.,1 +depends on your plan. if you pay out the ass for it no.,1 + That's a very interesting point and one I hadn't heard before. Copper for elec motors? Damn I love twitter.,1 +agree entirely. I'd hate to see a graph for my twitter input this week.,1 +guy walks in to a bar with a duck on his head. The bartender says can I help you. The duck says yeah get this guy off my ass.,1 +- Nazi and Facist... I could you call you a commie pig but that's not very gentleman-like #Gaza,1 +I miss being here...wish they had corporations here instead of a damn AQUARIUM! I miss Jimmies hotdogs...that dog food be JUMPIN! LOL,1 +dupa cum vezi eu mai putin cu excelurile mai mult cu povestile ;o],1 +I nominate @yiyinglu for a Shorty Award in #design because...he designed the fail whale :-),1 +Lol why do you do this?! I hate your guts :-p,1 +But now I really want one damn you! i hadn't even realised I NEEDED one til you told me they existed!,1 +niiice likewise...sure the boricua gave that away. ah yes we boricuas have good taste (Rob Pattinson) hehe damn sexy brits lol,1 +i hate having to wait till jan. for the big game lol tedious i tell ya,1 +would be at least 4gb at a guess. I ain't using it ATM if you don't leech ur ass off you're welcome to lend it,1 +meh. All year round baby. They're actually growing like fuck at the moment except for the caterpillar incident yesterday.,1 +don't hate on ghajini. It was an awesome movie.,1 +If you're hard at work or just leisurely reading you're not a poser.,1 +God Ashley is a bitch but still congrats! :),1 +I cry but then I'm just like that fucking woman is a bitch. God I hate her!!! (Yolanda) I'm getting mad just thinking lol,1 +lulz. fat chance! good news is no bacn from friends adding you :D,1 +Looks like lobby card for "Ocean's 21: On the Half-Ass",1 +Check @ replies from hahlo twhirl tweetdeck et. al. they reply to the user not specific ID. Makes following convos. a bitch.,1 +unless Adobe gets their head out of their ass Flash will die because mobile will be the dominant platform.,1 +Lobsters and ligatures? Are you a Portland-area type nerd then?,1 + touche (i hate getting SHUT DOWN. I guess that's what I get when I pray for humility.) at least I am a better student t ...,1 +So it seems you are an attn whore.....no comment. ;-),1 +posted the fat man version to the beyonce song.,1 + Bitch you wish. Keep dreamin... =],1 +ahah! and i'll say exactly what i'd say to him: "bitch make your own!" i kid:P,1 +lol i think she's a huge bitch BUT she's good at what she does and is entertaining at times :),1 +AH! i was too! I hated that bitch. I want Bob or Sugar to win:),1 +I prefer women to be fat in other places anyway. Fat toes and earlobes are so cute.,1 +nigella is a bit of a tease I reckon imagine how fat you'd be stayin at hers,1 +twinface it's ATCQ...your drunk ass can't type lol,1 +there only a few shows i really look forward to seeing. i hate when they put a reality show on instead with no warning.,1 +Compared to Eeyore and that stupid bear and that demented pig? I think he’s fine.,1 +(Fat lot of good my Medieval History degree is doing me these days.)",1 +Who owns one - I just fix 'em! Hate it when electricals go to Hades.,1 +unnecessary. pain in the ass. too much effort.,1 +damn ecoterrorists! he shoulda just rented a helicopter better for the enviroment anyways.,1 +Yeah i'm with ya...I hate to see guys get hurt but it's a little easier when it's Roth..if only it had been Ward or Polamalu,1 +Yeah especially if they're those big-ass soft pretzels. Those things are the bomb-diggity.,1 +just read the archive artile on your old site. love the jones comparison. how much hate mail did you get?,1 +i forgot 2 call in gay 2day too! blast!,1 +We miss you back. My Haiku: Famous Dickenson Exactly Why - I'm not sure. Her poetry sucks.,1 +He was just being a dick in H CoT4 his attitude caused wipes which made him a bigger dick. It was a vicious circle.,1 +How you gonna call me a hater? I'm entitled to an opinion and that opinion is SB sucks hog ass. Don't give a f!@k about it,1 +heard there were 2do fairies tht come & do ur 2do list if u put a list by the freplce (kinda like leaving cookies 4 the fat guy),1 +i got the 8330 bigger keyboard I got fat thumbs,1 +yo... you should have another show tomorrow cuz we had to record the past two days... damn albums...,1 +ok i can't believe i just told the haters on Momlogic to kiss your million dollar ass.,1 +oh gdnss jus saw vlog. WOW I met that fool yrs ago @ MJ restaurant DC. What a loser!,1 +I was trying 2 use it the other day also & had the hardest time. I said fuck it &just called the person. It wasn't working.,1 +Yeah I was just saying that. Why did CNN decide he would be a good move? He sucks!! I try to support but I can't.......,1 +We loovveee chicken. Damn i do also so I really shouldn't complain. And since I found the chicken i am in a better mood.,1 +social network whore!,1 +why do i hate DMs? so many reasons... one is: you can't send them to someone if they're aren't following you. what a pain that is! :),1 +another reason I hate DMs is: they ring in on my SMS even though they are often lame ads and not urgent for the sender nor myself!,1 +I responded and asked you but yes it does vary. Some think gay marriage is immoral. I think those people are bigots.,1 +I hate you with the hate of a thousand hates. ;),1 +Now wait a second mr fanboy. You cant judge it without seeing it. You already think it sucks and its not even out.,1 +Clearly manufacturers rarely use common sense to make customers happy when they can easily just piss you off and make $$$$,1 +That really sucks I'm sorry. I'd get shitfaced with you but I'm stuck up here on the plateau.,1 +Fuck no I don't feel silly. I worked hard for that.,1 +wow bang bros was the ish...haven't watched it for a while tho! :). damn now I wanna see that! LOL,1 +damn prolly not! Now I wanna know! LOL,1 +Well DAMN...Thanx For NOTHING!,1 +listen to u...who's the FREAK now? LOL,1 +hmmm...I had a feeling bout u! but Damn No Label?? wow,1 +you COULD be jobless! Praise God for it! despite how much ya hate HOW it comes at least it's coming IN rather than OUT. LOL,1 +Ohhhh jeez. That sucks... I hope she gets well!,1 +I don't have a damn clue what you're talking about. I'm just now on Better Halves.,1 +pussy!? :),1 +dang...i need to stop eatting cheese. Damn you kraft!,1 +Oh jeez I had mercifully forgotten about fatman. Should have been "assholeman-who-will-piss-everyone-completely-the-fuck-off.",1 +Sorry man hope you stop ass bleeding soon. (wow that was awkward just thinking about it),1 +http://twitpic.com/t9za - Hahaha! that looks so emo...poor guy thats y i prefer drums,1 +I guess that song represents Bono's "dark" period. Fuck saving them. Be happy with your wealth.,1 +I always respond to that use of gay by asking if the subject really is "fag-o-licious".,1 +I hate nearly everything about the first two HP movies.,1 +George Lucas' Guide to Sucking Cock?,1 +Yah after more tries than I want to cop to. Damn static in my place is making the laptop jump all over the fookin' place. AUGH!!,1 +Yah you'd think I'd lose some FAT doing' all this shovelin'. But I guess eating brownies when I'm done negates something! Hah,1 +I had no clue...Damn Homie!!!,1 +Damn! Break me off some bread!,1 +damn Dame lil Magic need some signings... He love Boobie,1 +Man!!! You got out that garage hit them stairs so damn fast!!!!! lmao!!! Im like look at this nicca... lol..,1 +Seriously! 'Oh Great a giant American flag! WTF are we supposed to do with it? Fuck it send it to Price is Right',1 +@nakedbard I always hated when people bought practical things like carpet or knife set. BUY THE FUCKING DALMATIAN PEOPLE!,1 +You know damn well your boss is going to leave early. When the mouse is away . . .,1 +a bolt flew of the trucks tire and hit my windshield. Cracked the fuck of of it.",1 +I hate you,1 +im not sure if i should taunt you with how awesome it is or say im surprised it took this long to get snow hate twitters,1 +omg i would shop my ass off but that's because i have like zero long term goals :(,1 +Better than that shit ass falafel box you eat once a week I'm sure ,1 +thank you she's such a big baby. lol But such an incredible dog. hate to think of life without her pain in the butt self,1 +it really depends on the situation but when I get mad I just call old girl up and get the freak on,1 +Take Ur ass home,1 +HAHA...emo lawn. I dig that!,1 +lol...i disagree...Dick in a Box got too built up for me. It's funnier now...but it wasn't when I saw it. :-( jiz in my pants rocks!,1 +on dude......a whale remember,1 +i am doing no such thing fuck you,1 +You didn't imagine it. It was the "get away from her you bitch" climax scene being parodied.,1 +we could call it nerd land and charge ppl 2bits a gander :),1 +yeah fucking predictive text,1 +omg I know everyone tells me I'm a twitter whore lol,1 +Yeah she did this huge ass rant to me about how i'm going to die alone and how i'm going to regret ever breaking up with her.,1 + doll you know i'm fucking feelingggggg you! thank god you'recoming this weekend so it forces these fuckers to get on it.,1 +i don't know how to pronounce it but it sounds like fucking jersey!",1 +fuck xmas! give and receive presents whenever feeling presentyyyy <3",1 +Yeah they seemed to have fixed most of the fail whale problems.,1 +Hell yeah the drunker the better...is drunker a word..more drunk? I think its more drunk? Fuck it our show is hood. drunkener,1 +fuck no I don't want to be PM or even a politician. I'm just tired of getting anally raped without any lube.,1 +seriously. We're fucking SOFT in this country. The French wouldn't put up with this shit.,1 + pissed off? I'm ready to go Mumbai on their fucking asses. We're too soft. We need to start blowing shit up.,1 +ROFL! You got me. Monkey would totally kick Bruce Lee's ass. I bow down to your superior wisdom.,1 +I wonder if can write "Kevin Rudd Is A Cunt" for the next 30?,1 +they won't let us live anywhere without coming up our ass. I want to move now ):A,1 +great :P that lady is a cunt that serves me right for getting excited over something,1 +FUCK YEAH RYAN ROSS. il his lyrics way more than wbeckett's tbh i donut care if they make no sense. BTW rolling stone FAILS.,1 +fuck u asshole we aint even watchin the game shyt we slda goten closer so i cn c betr.how r those cheerleaders 4 ya,1 +ud lyk it if they suxd ur dick.bt id kill them rit b4 i killed u.,1 +hes goin dwn!we cld kick his ass n dominate him,1 +maybe he sldnt cum out in his mofo boxers n dance around hes guna b jumpin around n his junk fall out,1 +yeah..what is it that u called me? "ass clown" LMAO..i was like uhhhh welllll then hahahaah,1 +Ohhh I hate snow days because then we have to make them up later.,1 +WOOT!! 8 pounds is AWESOME! YES you can! 1 pound at a time... I need to get my ass in gear ;),1 +damn why don't all harem leads shout that kouhai~? would be interesting the resulting chaos,1 +@icystorm I think the thing to note here is that everyone has an emo phrase re: romance in high school and eventually it blows over,1 +What happened in '93? (Also I would have accepted "29-5-4 bitch"),1 +Sure glad you found something better to listen to. Would hate to hear you make the news "that" way,1 +Awesome...Love it or Hate it...An Atmospher of Change...is HERE,1 +Top three tips: 1) scan updates 2) pay more attention to @ replies and 3) set time limits before it sucks your day! ;),1 +I find the exact opposite to be true. I can review a book I hate in fifteen minutes. Good books take hours.,1 +that's the coolest damn thing yet! Have you put it on your own website yet? Its a pretty simple ap just don't use huge pics,1 +Yeah I was teasing Dad he got a new snow blower and I said as much as I hate rain I don't have to shovel it get home and SNOW!!,1 + OH AND! that guy in dark knight totally was wearing guy liner... he's gay!,1 + Because they are FUCKING DUMB and annoying,1 +Damn how u burn spaghetti?,1 +- Oh yikes! I hate that. Will she willingly use the toilet for it? My boys won't.,1 +She says i have gubgivits? teeth thingies and she stole more blood. every six months with the blood stealing it sucks.,1 +will ferrell can suck my dick. go on yim!!!,1 +church can also suck my dick.,1 +seriously. so precious. I laugh every time i think of Nate rocking out to that shitty ass band.,1 +I may hate you a lot right now. Please die? :D,1 +hahahahahahjdshgskdg I hate you. So much.,1 +my job has made me feel like a tool so i am trying to change how i consume things. fucking cvs.,1 +holy fuck. i would just make pasta or something if i were you that is ridiculous.,1 +if you're going to have to spend that much for a fucking pizza at least go to mellow mushroom or somewhere not disgusting.,1 +Frankly I'm shocked that they use coal at all around here... HELLO!!! Hydro anyone? There's a fucking OCEAN right there!,1 +work on this glorous sat. with this crazy ass shoppers,1 +what happens when you run out of Word of the Gay words. :),1 +THAT WAS FUCKING EPIC.,1 +I nominate @PhillyD for a Shorty Award in #entertainment because he's emo.,1 +admit it. You're secretly in training for RSA. @beaker who? I can see it now: Cigar red-bull and can of whoop-ass. Nice.,1 +lol yeah I coulda told you that cuz I'm a big fucking dorkass about that movie as wel all very well know :) I actually had a dream,1 +meeting friend for lunch/coffee. Getting hair cut (although I hate that bit) and my works do in the evening!,1 +yea..brang yo ass down son :) I'll be @ Essence again...Staying @ the W! (thanxxxxxx Sony woop woop n da poop poop),1 +I hate weddings.. u shud be grateful for being male not worrying about what u got to wear.,1 +Dick Whittington's Lolcat: I WAS DOIN CAPS FOR LOLSPEAK SORRY FER CONFYUSHION :( #twitpanto,1 +http://twitpic.com/vk9k - Dick Whittington's Lolcat: NICE SPACE TROUSRS BOSS #twitpanto,1 +twins! we've been watching this one guy he sucks with a hammer,1 +PETA is an ass in the article D. Big time.,1 +canadians always make me think shut your fucking face uncle fucker! http://kenny.smoovenet.com/grabpics/terrance.gif,1 +oh in that case. WTF thats some ugly ass shit to do.,1 +"""midget w/a hookhand hangin off your collar"" IM FUCKING DEAD. BURY ME. D-E-A-D DEAD.",1 +i hate people sometimes-today is one of those more than usual days,1 +YES. the thing is big enough for my ass plus another half. its like my parents couch.,1 +well shit then I know I'll catch on ... who the fuck wouldn't be interested in what I have to say.. LOL!,1 +lmfao HURRY AND GET THE FUCKING LYRICS.,1 +ill settle that bitch down real quick ,1 +you work in cape cod. why the fuck am i up so early. argh stupid cousin &brother.,1 +damn! twitpic that shizzle!,1 +Exactly! Damn cops disagree though,1 +dont hate ur life! =_=,1 +dont hate!,1 +I hate ism's as much as the next guy but when the shoe fits...,1 +Oh conservation you mean! That is a good point. I admire many socialists but hate their ideals socialism brings with it.,1 +can you tell loser tudds to turn his fucking phone on...,1 +whoever created chocolate pecan pie thank. thank you for my big fat ass.,1 +if you hate sprint. try jogging. and stop once and while for eggnog.,1 +cont. and you must RT EVERY LITTLE THING someone says then DAMN do I feel SORRY for you and your friends.,1 + RT this then GO fuck yourself stay the FUCL out of lives and HOPEFULLY you'll die a Horrendous DEATH for all to WATCH ,1 +Do you realize your comment on parents dying comes off as a tad insensitive? like a "sucks to be you" comment,1 +you won't die in Queens we're civilized here in Queens hell there's a Starbucks & McDonald's on damn near every corner have fun,1 +What? Yours WORKS? I hate you.,1 +"""hey've just proved how fucking irrelevant they are"" ..By making you go and read them?",1 + sometimes I hate how contagious US culture is,1 +The eyes followng me are creepy. Damn creepy. And that smile makes it worse.,1 +cock flavored seasoning?!?!? wtf,1 +That depends on if you are dealing with a pain slut or not.,1 +You're going to find a woman and tease her to make her have to cum silently at work?,1 +Exactly. Poor kids. That damn thing has me watching weird videos on YouTube now. Argh.,1 +She's probably saying all kinds of phony shit and giggling like she's 13 years old. God I hate her.,1 +She makes me sick. She thinks she's cool and youthful cuz she watches that show. Phony bitch.,1 + LOL FAT NIGGAZ UNITE FATRON!!! HAHAHAHA,1 +let's be gay together!,1 +THE NEW FUCKING GENERAL OF THE WORLD THAT'S WHAT.,1 +hahah word ! their set was off the fucking hezay,1 +damn straight you do,1 +well mine are double flared so they are a fucking homo bitch cunt to get out. aggrivation!,1 +i hate you,1 +Kurt you're on the most watched tv station in central Ohio your ass should be #1 already LOL. I'm just cooler than you!,1 +a) JTP is a douchebag b) Stewart kicks ass!,1 +I cunt wait for u to start shitting out the gifts I sent jew.,1 +what is this dick suck moment? lol. HAPPY NEW YEAR,1 +WPMU can go fuck itself,1 +there you go denying stuff again. until Maury clears you on TV w/ an "i aint yo daddy test " your ass is suspect.,1 +This week in fuck?,1 +I did ur mom last night? Naww I don't like old fat white bitches! ,1 +damn we got BWNT - where you headed tonight?,1 +Frickin turnovers! Dang flags. SD's gonna beat our ass and Denver is going to blow a 3 game lead. They don't deserve to win.,1 +I meant boo YOU whore!,1 +you are such a whore LOL,1 +- yep I'm a real ass. Everybody knows that.,1 + Wow...so you bought what's fashionable at...gay biker bars!!! Congrats!!! :-),1 +yeah u are!! Asian ass embrace it,1 +so when he laughs & comes down the chimney does he say "Whore! Whore! Whore!" and shake like a bowl full of jelly???,1 +How would you fancy being Jeff's resident bitch? Just his pet he can take you out for walk and stuff. Straighten your hair...,1 +You clearly said "Would I have to fuck anyone",1 +Lol. Ur a bitch. I've done Hondurans and Chileans and I don't need some closet gay Peruvian dressing better than I do!,1 +2008 is over? Damn what'd I miss! I quit keeping track of years after 'Buffy' went of the air...,1 +that's why I hate them. "Oooops why don't I go this way and destroy your whole story. Or maybe ill refuse to say anything.",1 +Damn cat. She snuck into Aidan's CRIB (1st time) he woke screaming - went in - he was squeezing her & she was kicking his tummy.,1 +(cont) I say the whole sheet costs $8.40... buy one of each and get the fuck out of my way!,1 +yes you remember me trying to keep *MY* lashes on for the awards this year- never fucking wearing those damn things AGAIN,1 +Called in gay? LMAO!,1 +this isn't hate this is survival for the eagles. stompin the giants alone won't get us in the playoffs. the cowgurls gotta lose,1 +the lox "f**k you " "keep it thoro" prodigy "we run this" fat joe "i come thru" styles and nore "broken language" smooth,1 +you sir are an ass. ;),1 +I never really thought about it but I nearly always eat a big-ass plate of spaghetti and watch Goodfellas on Christmas eve,1 + ARE YOU KIDDING ME?! Quick! Forget the prenup! Get lo-jack implanted in the new wife instead! I think he's an ass.,1 +that's weird because I hate them the second time I see them. First time is ok but they get old quick.,1 +because the sandman is being a punk ass ho...,1 +We just call that "whiskey dick.",1 +lol just rhyming gay i know,1 +i'm glad someone is teaching that 3-year-old how to "slap dat ass" :),1 +yeah but zro rly is the eMo city don,1 +Then you should make fun of her for not looking at your ass.,1 +i second that. i hate banks,1 +She can bust her ass on stage and GAIN fans You gotta love her.,1 + @Dave_Malby acting as Colfax Chick's agent! After 100 followers I will make sure to get her ass down here and tweet with everyone,1 +The fail whale was shown when twitter went down. It was a whale being lifted by birds.,1 +dont hate too hard! it hasn't been very warm here lately!,1 +fuck right,1 +omg! what are you in the mood for.. i crock pot my ass off!,1 +ooh im sorry my non celibate ass mourns for ur celibacy and it sorry demise my condolences http://twurl.nl/a16z8c,1 +damn kid...condolences homie http://twurl.nl/i3pwps,1 +I never took you for a sore (at least for the players getting kicked in the goolies) loser LOL,1 +@derekbender It takes a real scumbag to steal from a community. Whoever stole the foosball table can bet I will fuck you up.,1 +did you come up with the "server-hugger" moniker or what some other wise-ass?,1 +Pains in the ass cause that twitch!!! I am telling ya,1 +horrified mum can squlor (he hasnt been gone long enough) Im a chiness pig its what we do riding this till the end of 2008,1 +"""Big Ass"" was this past weekend and went well #2 (Last Minute Maul) is this weekend.",1 +you need some sort of ... ass whoopin...,1 +im not that crippled in gym we were laying on our stomachs and some fat kid landed on my upright foot and it hurts like a mofo,1 +that and "I'm not gay" aw I miss bonez. I hope he's not in prison.,1 +- you are a man of action. great work Daniel. don't forget to record your fat loss seminar!,1 +not really; i think i named all of them which kind of sucks.,1 +I thought Emo's don't "squeeee". I thought it was more of moan,1 +18 fuckin children. damn....,1 +he was given one extra ticket from a coworker so henceforth my ass stays here.,1 +I'm sick of this bitch. He's wrecked enough of my life and I want him gone.,1 +I STILL HATE YOU.,1 +sucks for you,1 +yeah cuz his show was on some wack ass arsenio for sports type shit they need him in a jim rome type setting,1 +was that a racial comment? on it's going down!! bitch!,1 +your mom/dad hate my monroe :(!!!!,1 +yeah dat bitch stabbed me in my eye when I was trying to hit the snooze buttone this morning,1 +Damn Danica! I know BK went hard but shiit...we evoke tears too? Lol,1 +I hate 2 sound like a nigga but...will there be food? Lol,1 +:(( @ tweet tweet you cookie crumble ass nigga,1 +his haircut look like them fast ass Black Beetles on Super Mario Bros.,1 +WHAT THE FUCK?! WHY?! Do they have fucking brains?!,1 +I would have done it by now tbh. I have no words except just WHAT THE SHITTING FUCK ARE THEY THINKING!,1 +in time for when I travel and the train company still refused to let me travel. The fucking wankers.,1 +i fucking hate when free 70$ cheques just up and think they can walk away,1 +Get Shit Done Day is almost over fuck it you should come,1 +fuck em!,1 +Thats what my aunt says. Still TMI. lol What are u watchin wit fat folks on it?,1 +*throws all 52 dollars in my pocket at you* Let me hit the MAC. Ill be RIGHT back. Hold that pose *forgets pin number* FUCK!,1 +"""loser""?",1 +ok I had to say cock-blocked cuz you know it's a rooster. But apparently favrd doesn't like me,1 +there was no fucking egg nog at the store i got a low fat chocolate milk fuck this bullshit,1 +Retard. Section E is?,1 +you need to work in that department so you can clean your smelly ass.,1 +I can guess smelly slut.,1 +bitch you wanna go? Ill kick your ass,1 +whoa be nice guys.. Whats all this FOOL and LOSER talk?,1 +wow.. Thats how people get fat haha,1 +I'm keeping it now *just* to piss you off. hehehe,1 +Or he's just sick of hearing me bitch about the cold and doesn't know what else to get me. I like your theory better lol.,1 +oic but what do you want sir? Did I get you a book on conspiracies and shit already? Yes I did hmmmm fuck thinks,1 +I would be saying the same damn thing about you. LMAO idc if I know you I'd be like see that ridiculous bitch? RI-DIC-U-LOUS,1 +wristband is shipping can they put those assclowns in the mail next to be delivered to an ass whoopin?,1 +the day after christmas and not yet :/ so I will be there early sigh fuck my life,1 +And I want a mansion in the countryside a motorcycle two cars wife kid dog and a big fat wallet that says bad motherfucker.,1 +fuck Dreamhost. that is all.,1 +Ooh You mean Whooty's = "Wht grls w/ bootys". LOL! my lil bro put me on to that corny ass saying.,1 +dude fucking seriously you watched hella now pay or wait an hour. bull shit. I want Stage 6 back!,1 +Gay!,1 +grab that... It's yours bitch!,1 +Okay now we've established that would you go gay for $7?,1 +gay people have just as much of a right to be as miserable as straight people! ;),1 +In Ala-God-Damn-Bama that would be Bidness Skool right?,1 +att is run by the devil i hate them,1 +#NAME?,1 +Damn............I guess he has a life :( hahahahahha,1 +Did you just call me a bitch? You're still upset because @CatalinaLoves is moving in on your bitch.,1 +you should start obsessing over him it might freak the delivery guy out.,1 +"""HOLY FUCKING SHIT THIS IS A RIP OFF OF ""foolin'"" BY DEF LEPPARD HAHAHAHAHAHAHhaahahhahaa fucking gay""",1 +lots of ppl i know hate the song. was spreading it around & most ppl ask me whats wrong with me hehe. i think its so fantastic.,1 +Fuck dude you manage to do this every week!,1 +yes.. flickr upload photo its sucks on eventbox.. huhuhu *tooos* gw juga gak make digg sama pownce,1 +I almost punched her vagina into the new year... grrr she was a cunt bag. How is your trip going?,1 +lets just hope i dont kick any ass. im in a violent mood.,1 +yey for drunkenness! fuck drunk dialing or drunk texting! its all about the drunk tweeting!,1 +hehe its all good. my drunken ass is moving off of twirl and to the crack...berry that is. :) feel free to txt me yo. 3204694136,1 +I hate when I text somebody and they immediately call me. Hey fuckface if I wanted to hear your ugly voice I would have called you!,1 +did i jus get a reply from an emo asian!? CRAZY!,1 +and yes. true life "i have tourettes" is genius. so is "i went to fat camp". lmaooooooo,1 +aliea you better stay away from jesse james joplin the third!!!!!!!! i don't give a fuck bitch,1 +get on messenger already whore.,1 +I just assumed when you said "meet" you mean suck his dick cuz that's what you do when you go to "meet" people.,1 +no im just fucking pissed at shit,1 +Fuck that shit. She wasn't even right about the older men I was hitting on.,1 +LIKE YOU HATE A HUNDRED DOLLAR TIP. the other strippers must be SO JELLY. JAAAAY KAAAAAYYYYYY,1 +OMFG. I JUST FIGURED OUT THAT @SHIT. AND MY FIRM'S IT GUY TRIED TO GET ME INTO CHUCK. IT'S REALLY NERD-O.,1 +I wouldn't with ur dick! Now u owe me one!,1 +like I said I wouldn't even do it with your dick!,1 +my dad started all this bullshit with my fam. He's such a fucking dumbass.,1 +why do i imagine gouthami in police dress kannu adchifying and asking u for a lift! damn i must stop these perverted thoughts!!!,1 +lock it yank his rights on both his accounts. He's been a little bitch lately and I'm sick of it.,1 +Then Clive is a total pussy and after reading his Dominion shit I do not believe that. Oh Clive so many missteps.,1 +fuck you,1 +Maybe you should get your dick out of your ear next time I'm explaining them to you!!,1 +Nerd.,1 +congrats on the Entrepreneur.com plug for Your Pitch Sucks http://bit.ly/pS0M !,1 +yo I will nerd out on this shit all day!,1 +dude ur wack ass better be playin at medium or above cuz u need to step up ur game if u wanna challenge a rock god such as myself,1 +fuck outta here - for reals?,1 +I LOVE how that statement was misconstrued as GAY!!!!,1 +LOL!!! VIOLATOR IS THE TRUTH!!! HATE THEM AND U MUST HATE URSELF!!!,1 +You're soft...Dude ran our country into the ground with no shame whatsoever...People need to be throwing boots fuck a shoe...,1 +Damn homie...I've got a comfy ass couch at my spot & zimbabwe that puts NYC to shame...You should have hit me up...,1 +Fuck that boo the DJs who don't play Che..Dude has at least 5 songs every DJ should be playin HEAVILY...DJs need to stop slackin.,1 +Fuck a serato record I was worried about my windows crackin..lol..I can live w/o a serato record I don't have a backup window.,1 +I think Bangladesh did "What's Your Fantasy" and fuck what anyone says that song is a JAM...can't front on it...,1 +grown ass kid lol,1 +hate it all you want but its a hit record. And Jumpin Out the Window is by Ron Browz. I know its gotta be hot in NY.,1 +women lie too. I know a bitch who was pimping herself out on craigslist. Yes craigslist. I didn't believe it till that email.,1 +Bitch I will cut you! @strong_bow Whatever happened to just smoking weed? @inject Because it makes us feel so good.,1 +beat that bitch with a bat,1 +biiiiiishop! - fuck u want? - yo ass punk...,1 +yo Zee you keep your hair tighter than frog ass.,1 +if you don't know who i am why follow me? get a fucking life and stop bitching about the past,1 +NOONONOONONNNOONONNONONONOONON cock mongler..... you didn't eve nstraighten it...,1 +I think i done bounced half my ass off LOL,1 +yo freak "sarath freak",1 +I nominate @jcroft for a Shorty Award in #down-ass-bitches because she totally is one.,1 +sucks man.,1 +totally agree dude. Pushed carts at Safeway for 2yrs in hs people are fucking retarded,1 +Love hate?,1 +Reminds me of another apt metaphor (Northerners say "fuck you" to mean "how nice"; Southerners say "how nice" to mean "fuck you").,1 +That's just one of many examples of Superman being a dick. http://tinyurl.com/5sgv8c,1 +"""run over my a Hyundai and ass raped by Clay Aiken."" I would so prefer it the other way around.",1 +well... the giant carts slamming into your ass isn't SOOO bad. But the sample hogs are pretty gross.,1 +@alwaysgayalways You both need to watch/rewatch it. But more to sate your nerd jones than your gay-wadishness.,1 +you'll be a a monit-whore.,1 +i hate you,1 +ohh damn bummer,1 +ohh everytime I see that nasty ass husband wants me to beat the shit outta him,1 +lmao!!! seriously and I live in the middle of BFE!! Will you combat being a glow stick or let winter be a bitch?,1 +haha naw pink fuck that! You just know what you want and I feel you. whoo-hoo! lmao!!,1 +no flash? how good is the "low light setting" on cameraphones these days? it pretty much sucks on my Tilt.,1 +They beeped out "cock" .. eh gad! What do they do with vera on corination street with here "Coming to the rovers cock?",1 +Loser! Are you back for Chrimbo or staying out there?,1 +you need to get rid of that game"COCK" you have running the team. Guy is a worthless crybaby just like all UF staff/players,1 +Holy shit just looking at that list pisses me off. Why the fuck are the Jonas Brothers on there?,1 +trade secret ... it's an animated gif. Woke up REALLY early couldn't sleep. My mind said let's freak out @CalamityJen more.,1 +I promise it'll go away as soon as @CalamityJen wakes up and kicks my ass.,1 +I know... I would like to find out if I am right... wow... I need to shut the fuck up...,1 +No can do Maria. I'm going out alone. Don't stress about your shitty wombat friend. He sounds like a loser. Get some sleep.,1 +haha. word. i'm having a glass of wine and retooling my erotica blog project. if i'm gonna be all emo i may as well channel it,1 +booooooo! i have some hot- ass mushroom stock if you wanna come get it after work,1 +amazingly i have yet to hit the one down the street with a molotov & scream "fuck the police" while doing so.,1 +My sis made me think @ your "Femmes & Fags" blog..she is a total boi but so extra that you would think she was a fag. lol,1 +Damn you mean I could have been rescued last night? Well fuck.,1 +lmao ikr. I knew you would hate it. I couldn't watch it without laughing hysterically,1 +@nannon_x who the fuck is charles? yoooooooooouuuuuuuuuuuu,1 +coz it is attended by a lot of FAT people. You don't want me to show you the pics do you? Oh you were in it too!,1 +No but "Listening to Deathcab for Cutie while missing Burning man staff party...etc" would have been way emo.,1 +you can have my dick. Its delicious,1 +Dig him up? Fuck that - I'm picturing next years Halloween costume already!,1 +I hate stupid people.,1 +Is like putting Lipstick on a Pig! You were perogued! LIVE WITH IT! #canadawest,1 +lol :-) I just hate that designers alwaysthink THEY know best and likewise other people are clueless. It's insulting,1 +yo i can kick yall ass for that synth in the begining..GOOD SHIT!!!,1 +Lemme make fun of you for crying at a dog movie for Pete's sake. Nerd.,1 +damn that is pimp!,1 +heh and then u yell "HOLY SHIT IM FAT",1 +HOLY FUCK!,1 +cuz montana sucks?,1 +your mom sucks BITACH!,1 +TWITTER SLUT!,1 +fine! i'll stop!! Quit stompin' my cock!,1 +my bleeping employment agency f***ed up my pay *again*. Didn't come on 24 Dec. Now have to wait until 2 Jan. I hate temping,1 +Well at least a swift kick in the ass. But yeah I take issue with some of these retarded names parents give their kids.,1 +Oh come ON... 1/10? That is fucking ridiculous... that's what you give a movie like Love Guru or one shot on a fucking celphone.,1 +Why does CHUD hate kids so much? 10 years from now they're your readers!,1 +i think that means ur gay. or a child predator.,1 +art IS easy. who the fuck gives A+s?,1 +bitch hurry up!,1 +lick on these nuts and suck the dick.,1 +Drake. He knows his mother was a bitch.,1 +whatever you do just don't roll your eyes. they hate that. those peaceful scenes fly out their heads and they WILL b-slap you!,1 +It's gay as fuck? I wasn't aware fuck could be gay? Why are you cussing?,1 +the cock is just a figure head on favrd,1 +what's gay about a sausage squirting at you?,1 +Fake ass Left Eye.,1 +Is "heavy hitler" sort of like "fat elvis"?,1 +get drumk bitch!,1 +I really hate bailing these guys out! They treat everyone like crap!,1 +didja punch a bitch?,1 +oh...and I wasn't just calling you a poser either :) http://is.gd/ed5v,1 +don't get all emo about that ;),1 +Fucking tell me about it... So much for protecting the investors eh?,1 +this pastor is a homophobic racist person who compares gay people to pedophiles. THIS IS NOT THE 1900S,1 +OMG! cute emo cow! that would be acceptable! and the cow wouldn't mind the blood drinking...,1 +I totally forgot Affliction!!!' fuck outta here!! I got ur tribal tattoo right here!!!!!!!!,1 +U can be a freak and not like girls.,1 +I'm more into shows like Dave Chapelle...I fuckin can't believe he flipped out and didn't do anymore..fuckin sucks.,1 +i had to... i deleted the annoying bitch. she kept making me puke in my mouth,1 +bitch what ? hahaha. j/k.,1 +a recovering emo blogger...in the voice of andre 3000 "don't do it reconsider read some liter ature on the subject",1 +uh bitch wtf is that suppose to mean?,1 + yea you'll fuck around and get that ASS tapped tomorrow u keep talking reckless like you are doing,1 +"""'Cause I hate that you breathe I see you duck you little punk you little fucking disease."" -- all of my favorite words...",1 +Reminds me of this Turkish guy I went to school with. A-hole. Everyone thought it was cultural. It wasn't. He was just a dick.,1 +Two nerds enter one nerd leaves!,1 +no wonder you laughin' i'm supposed to stay away from yo' ass.,1 +goddamn it kj...fuck you 74 times http://tinyurl.com/6q8olq,1 +goddamn it kj...fuck you 49 times http://tinyurl.com/5mq4sq,1 +goddamn it kj...fuck you 58 times http://tinyurl.com/59blcl,1 +goddamn it kj...fuck you 29 times http://tinyurl.com/6pey6r,1 +goddamn it kj...fuck you 10 times http://tinyurl.com/5nv2tl,1 +no fucking lie lol everywhere i go...twitter myspace i see you... you were on 1 of my homies page!,1 +ah yeah but i was referring to the knives in your hand and the "holes' in the knife block YOU PERV! Damn Lawyers !,1 +that's happened to me twice in the past 4 months. Pain in the ass. Much.,1 +Aw I know I was just being emo haha. It's been a LONG week on a lot of levels. ha. Let's do something fun tonight!,1 +who the fuck is bur`li?,1 +Holy fuck. That was amazing! I'm retweeting that sucker now!,1 +fuck apparently i 4got that no homo part guess i said that with a lot of homo,1 +Clearly. Decepticonian bitch. Or at least incomprehensible. We shall steal her bras!,1 +maybe he just has a dig cock to match the free weaponry he got to attack the defenceless...oops I mean 'defend' his country,1 +fuck you dom,1 +*watches than throws up* Man that's was sick as fuck! A glass jar?!?,1 +THINK??? You THINK they are gay??? REALLY???? Have you watched the show???? and you THINK????,1 +just use water loser.,1 +don't fuck with Fiat,1 +oh well yeah I hate the elderly too.,1 +I don't care about leakage. Fuck the person sitting next to me in coach. (actually I do care),1 +I hate to point this out but didn't you call Death Race awesome? DR will make my bottom 10 list w/o a doubt.,1 +you are GAY!!!!!,1 +DOG... ONE OF THEM WILL SOON CATCH YOU SLIPPING! THEY'LL PULL A GEORGE CASTANZA ON YOUR ASS THEN NEXT THING YOU KNOW UR MARIED,1 +way to fuck up a perfect opportunity to call yourself Z-Co!!!!,1 +i've yet to be impressed with anything from his mouth. He was pissed I wouldn't drive from coweta to pick his drunk ass up,1 +the fuck shit is this? people died for less. lol,1 +am deleting all that bell-end Pineapples comments - so he keeps posting more. Cunt.,1 +thanks the nerd in me is overjoyed,1 +want me to cut a bitch for ya?,1 +it totally sucks!!! i had to call the stores with the fraudulent charges filed a police report sign a notarized affidavit,1 +shut your ass up I did....they got me though,1 +don't hate pussy ass nigga....u suck dick n balls n ur on the bottom of the MSFB list,1 +leave u with this....at least my dick still on my body unlike your stacy bump STD ass,1 +omg srsy?? I loved ami kat would always piss me off. She was always mad for no reason.,1 +aww that's awful!! XD I loved the art and watching them all freak out. I hated the asian dude he was a dmbass.,1 +wow emo... Ik ben benieuwd...,1 +There are two types of people in the world: those using "lol" ironically and those that are fucking twats who deserve to die.,1 +A Snuggie to be burned? What kind of sick traditional blanket-loving freak are you?,1 +Because "Oh for fuck's sake!" has so much more impact. And our generation likes to offend old people as deeply as possible.,1 +And you didn't even make it a dick joke? I feel like I don't know you.,1 +katrinaneufeld Does a French whore smell better or worse than ur down home Blackstone variety?,1 +Fuck you! Learn to surf NA!,1 +Online nakedness amuses me. 'Oh my god he has nipples! And skin! He's a freak!'.,1 +damn...wish I knew how to write script. I just did 9 and have 7 more to upgrade.,1 +i dont care if its him or his ppl ... i care if its authorized or a poser squatting,1 +I wanna butt fuck you. Cuz im a horny gremlin,1 +Keep your damn hands off my @jgarber. We claimed him first!,1 +He can be a nice guy but he is such a dick when it comes to fabsubbing that it is ridiculous.,1 +I'm going to watch him kick Count Adamar's ass and then it's off to feed the beast.,1 +how so? It's more reasonable cause of the smaller age difference...plus Mikey's always sex deprived so he's a fucking animal.,1 +I hate you.,1 +Way to be a dick.,1 +I'm giving you fair warning to hate; high of 73 on wednesday 78 on thurs,1 +bitch ass hot sounds pretty crappy.,1 +it's called shitty ass fuck shit sir,1 +how about "bitchling pig suckas!",1 +DEAD ASS?!?!?!?!?!,1 +What shall we call this gang? Initiation rights must begin with downing a Fail Whale.,1 +Yeah those same ugly guys that do gay-for-pay. That's why I demand hot girl on girl action in my porn. Oh oh. Yeah.,1 +What a fab site! I didn't see the cozy *snort* but I want the mermaid gloves! Damn I wish I'd paid attention to my Nana... xxx ooo,1 +GOD. You HATE US don't you George?! ::runs away crying::,1 +& @kmellon: I'm 500 pages in AND at the day job. Eat that dick.,1 +motherfucker stop drinking Red Bull ADDICT! watch ulcers eat at your stomach lining bitch!,1 +pffft you mean maybe you'll suck ass for her,1 +are you off bitch? I want BM it's my best friend! Damn it....hey don't forget FullMoon Getogether tonight,1 +Blow it out your rank ass cunt face cock-choking bonsai whore beast. LET IT SNOW LET IT SNOW LETITSNOW.,1 +you seem like a hater. or maybe you do it to piss people off. either way fact is always good.,1 +HUJIKHJKUILJKKJ Lmaoooooo. I cannot stand y'all asian ass ho's.,1 +whats wrong with a monkey fuck? Lol i got my zippo fueled so no need of monkey fucks now lol,1 +UR a Chicken Cyber Punk! When a French Man came to kick your Ass U put your Hands in your pockets and Cry like a Pussy! LMAO,1 +FAT WHALE U still Floating Did not SINK Yet?,1 +don't be all emo like that xD.,1 +LOL! The out-of-town revelers are arriving early for NYE...Damn tourists,1 +why would u say fat people are dumb?,1 +damn I wish it was 1 here so my day would almost be over; btw that Wiley track is my fucking anthem...good looks,1 +I AM SO UPSET RIGHT NOW IRL GODDAMN YOU. I AM KEEPING HIM TIED TO THE BED AT NIGHT FROM NOW ON FUCK YOU AND DAVROS.,1 +damn homie where did you get that stat??,1 +if you were black that last one would be so damn racist,1 +fuck you dude. it is more than amazing.,1 +oh word? Back to the old photo? You green ass backdrop mother fucker!,1 +"""If you not on twitter you're a fucking moron"" I agree",1 +I will cut you in the mouth bitch!,1 +I'm a shoe slut; Gee's a jacket slut; we're just all a bunch of sluts xD,1 +he's a total loser spending his last howard stern money on internet sex,1 +whos? ima slap the bitch.,1 +too late I am skipping town bitch! (gets on express train),1 +Bey going to get her ass whipped!,1 +mate u know there are french umbracians out there cg09 u may get ur ass whupped :-},1 +are you just acting like a dick now?,1 +bitch you wish.,1 +you left me for a slut named kasumi.,1 +WTF! Why did you not pick up your phone yet a mother fuckin gain! Are you trying to tell me something? I called you twice damn it,1 +Fuck them!,1 +You ruin fucking everything.,1 +hehe "fucking shift" ... never heard of it in six months..... u get to fuck in da shift?,1 +i used to have night shift @ IBM..... but alas without fucking.....,1 +Finally made it out.I hate being a procrastinator.,1 +dam..she cold and she cold in live..by any means necessary you gotta do what you gotta do except for hate of course..lol,1 +i really hate that song but thats like equivalent to "fuck them other niggas" to the 40 and up crowd,1 +i give up fuck aim. ill ttyl.,1 +Fuck off naturally as opposed to artificially?,1 +nigga fuck put a Lil gin in it a drink dat shit son fuck 08,1 +Dam Right. Fuck em,1 +fucking stupid chat people are fucking idiots! Read what I said so I don't have to repeat myself five fucking times!,1 +I'M THE JUGGERNAUT BITCH!,1 +yooozers 20 442 damn homie!!!,1 + apologizing for overactive hormones SUCKS.,1 +Ya know you can take full credit for memeing @evo_terra's cock-measuring fetish. I won't argue.,1 +I brought Prussia back bitch.,1 +dude.. That idea is upgrade as fuck. (btw my phone finally added "fuck" to the vocab list.. THAT is upgrade as fuck.),1 +I hate the fucking CTA. Fuckin' idiots.,1 +QuantumOfSuck is a wannabe Transporter 3...,1 +haha nah he didn't do anything I was talking about guys in general particularly a guy friend though and he was being a dick to ...,1 +awz cum ova,1 +You did not come off as a bitch. At least you definitely weren't as bitchy as I thought I was being. I've gotten upset now too,1 +argh fucking motherfuckers!!!!='(((( I can't believe it dude the place is legendary...how dare they..,1 +yuck... that is going to take a long ass time...,1 +shut the fuck up LOL. I wanted to take a pic so bad but it would have been obvious. My mom wanted the hat. I just tried it on haha,1 +my trainer likes to play games when I'm on the treadmill. He'll move the speed up and down up and down just to fuck with me,1 +LOL well it's funny as hell they got two fat asses trying to fit threw some small holes.,1 +big mistake. we gotta even it out. who da fuck else is in!,1 +shut ur ass up! u woulda been wondering the same thing lol. done rehearsing 4da night & planning 2knock out...right about.....now,1 +shut ur bitch ass up! OBVIOUSLY its not the same but its not like her name is spelt out as Eveyln dumbass.,1 +YOUR A WHORE!,1 +@petie_martin...shondor shabbos that's what...shut the fuck up donnie,1 +Hell I'm upset they allow him to get near a fucking camcorder let alone direct anything. He'd fuck up a 3rd grade play.,1 + i can see the revolting illegal avatar now :) tempted to make my pussy misbehave in sympathy,1 +fuck that!,1 +he is a HUGE POSER! I want Toyboy back!,1 +YAY OR NAY OR GAY?,1 +a pussy snow,1 +epic fail meaning it sucks? Hopefully,1 +wat a fag....,1 +wat a fag....,1 + pig 100% pig,1 +how did you meet dad BITCH!,1 +do you use the term fuck on a stick,1 +DAMN I wish I wasn't in college!,1 +This holiday is to celebrate a man nailed to a board. I want you to be MERRY about it. Why are you crying? DON"T FUCKING CRY!,1 +Yeah me too. If this damn twitter wasn't around I'd be much more productive.,1 +damn iPhone keyboard. I find it astonishing that even in this era of social networking you can still be alone on a crowd,1 +last nights Top Gear had V8 powered rocking chair = Fail. And Jeremy is gay.,1 +sadly true - mens lifestyle walks a fine line between britneys bits and articles about pectoral development for gay guys...,1 +Why would gay marriage "change the basic structures" of your family life? It neither picks your pocket not breaks your leg,1 +Would it piss off Bill O'Reilly if I wished you a Merry Xmas and Happy Holidays? I'm willing to give it a shot!,1 +i was excited about seeing that until i remembered itv have the fa cup rights. god i hate itv,1 +Yeah... sucks.. But yo I tried to go to your webpage link but it dont work? And wut school u go to? Howard?,1 +- hahaha .. you're silly! but dayum it's 10:22AM and i'm still kinda limping from my hip hurting THAT badly .. it sucks!,1 +i know you got some bama ass shit on your ipod somewhere... some Pastor Troy or something lol.,1 +It is totally rad I assure you. But being a loser with no life outside the internet few people ought to see you in it. ^__^,1 +Wow that sucks!,1 +cool. But that fireplace looks totaly gay.,1 +What!? Oh that sucks!,1 +I hate that just finished round 4 of rough revisions for a client... can't they just be clear and concise at the get go?,1 +How would they define failure anyway? People giving up and going back to reruns of The Biggest Loser?,1 +I ran a 300 customer hosting company for years on Apache. I know how to set it up. It still sucks ass.,1 +the early word is the spirit sucks... hard. i'm a big fan of the eisner comics but frank miller's take looks a little... meh.,1 +damn that's fucked up Hawthorne is out of the way,1 +And boycott that fucking bar if they don't carry it!,1 +ugh fuck the chargers!,1 +haha that's ghey. Tell them it sucks balls and they need a real designer.,1 +Well good god damn.,1 +i hate when i miss mac chats! grrr,1 +there should be pictures of him at fucking otaku's cosplay section,1 +all i heard for the last 2 hours was WHORE WHORE WHORE SLUT WHORE WHORE OH MY GOD WHORE WHORE,1 +I heard it sucks... What do you think so far?,1 +All those people who hate Hillary are the same ones who voted for her husband and loved her before Obama. Just seems strange.,1 +enjoyed reading your article ! shame I have such a bitch for a boss ;-),1 +you dear sister are a freak. this heat sucks.,1 +I hate that entire area of new york.,1 +I've been getting a lot of that Which sucks cause I really need a job.I did get a random check from an old job for 100$ today though,1 +aye it sucks when you end up in that situation where you don't know what to do book learnin' is anti fucked. imo.,1 +bitch you love me!,1 +bitch better save me one!,1 +OKAY... HE'S GAY ;),1 +Damn. Didn't see that one coming. I must be getting old. <3 U 2 btw.,1 +beast my pussy bitch. LMAO...that's creepy.,1 +follow me you jackass. i hate you sometimes.,1 +ahh damn it: Action 12.1.5.0 of Microsoft.SharePoint.Upgrade.SPSearchDatabaseSequence failed. and i didn't snap shot my VM DOH!,1 +dude that sucks. On NYE nonetheless. Got a sore throat myself hoping it's not strep. :-(,1 +I remember when being snippy just meant I was trying to piss someone off... am I showing my age? :),1 +pls do....i was gon call molly maids up in this piece. i hate cleanin with a passion so early spring cleanin is some mf'in bull,1 +hotel town whore is in the bed riding ol boy that treated her like shit and the freaky cop walks in the room,1 +awww damn yeah....that really sucks!,1 +lmao damn! thats all I can muster...,1 +stop hating on the tube...its this damn censorship thats pissing me off more,1 +bitch was craaaaaaaazzzzzzzzzzy!,1 +Cuz u wanna fuck ricky martin,1 +nasty ass bishes,1 +u in a good mood souljaboy why u in a good mood oh n i luv ur new song 'damn ' like it hit me bac,1 +id die if he was super antsy i wanna request vacation and know when my shows r damn it first series anyway,1 +I hate you .. why can't I go to Vegas ?,1 +Ech! LOL....if it was me I would wash the sweats at least twice...then again I hate bugs!,1 +is het -5?! fuck..,1 +THANK YOU! Beautifully worded. I'm so fucking sick of people just hating for hating. Everyone think they're so deep these days.,1 +now who's the fucking hipster?As if you not dig Kanye! @dianor heyyy how you doin' @noarmsjames the man has great beats+lyrics,1 +they don't use Euros yet? damn lol,1 +It could be pig's lips from a garbage bag! Perk up buttercup!,1 +if you actually are a vicious ass koala bear better to find out now than later. or else you might get confused.,1 +Considering half of my fucking company has been laid off this morning "MY BAD DAWG" might be appropriate,1 +this job would be great if it wasnt for the fucking customers,1 +HOLY FUCKING SHIT!!!!!!!!!!,1 +I hate having to work ALL the time :),1 +I would have laughed so damn hard.,1 +Damn! I need 2 get my pole game where that chicks is....um but 1st Ima need SOME pole game 2 start with! LMAO!,1 + i kicked ur ass on balloono A.K.A the bommer man thing i was lameguest(bunch of numbers),1 +aww damn now u know how much your Christmas present was *sobs*,1 +I like some of the features it has over Twitteriffic. But it takes up way too much screen real estate. And AIR sucks.,1 +fuck... lemme know if you'd like to work at criagslist,1 +and leave ur ass hardly call until they want to re up on your ass. Sometimes they dont even stay 15 min & out!,1 +ditto bitch!,1 +Fuck mod_Ella.....http://tinyurl.com/5hdbje,1 +who are you? oh uhmmmm HAPPY BIRTHDAY YOU FRENCH WHORE! @ClarissssssA Bed time last time im telling you <33333333 gots thats ...,1 +I read WP as WordPress but damn that is hilarious.,1 +Ah so it was tough to hear about over and over... That sucks man. Sure its been tough.,1 +um coz you're awesome? and on another note...yo gabba gabba is fucking disturbing,1 +*giggles and cuddles* Its some kids show...that is disturbing as FUCK.,1 +Isn't any way you file taxes the gay way?,1 +My problem is that bankers and investors have taken risks regardless of being told how bad things could fuck up.,1 +thx for the well wishes lisa! i hate taking meds so i'm all for fast healing:),1 +and that makes you feel like "lifes a bitch"... well in my opinion anyway :P,1 +and cant expect too much he was recording til 2wks ago!! too damn shame when ppl just rush to make an album these days!,1 +I'M SO SORRY IF YOU THINK MY TRACKSUIT IS GAY. VICTORY. VENGEANCE. FOR MY STONE CHAMBER AND MY SWORD. MY SWOOOOOOORD!1,1 +Ugh. Probably the same brain-deficient retard who stole my name on Youtube Gaia and all the faggy sites. How old is she?,1 +lenee that bo*o ass incense you gave me smells like an episcopalian funeral. lol! choked out saturday night etc.,1 +Be prepared for Toro to be a comple ass...,1 +Fukin sun's blinding.... Reflecting off my damn phone screen,1 +jealous! I will still hug u lick ur face off grab ur ass and dry hump u a little bit when I c u. Whatever!,1 +((((((((((HUGS)))))))))) I love you tons and life totally sucks right now! I'm in it with you! LOL! xoxo Karen,1 +HAIR PRODUCTS? I hear Hair Products?? lol i hear your getting beat up us girls do stick together...against them bad ass boys,1 +hey you know wat wud b funny? to find out who started tht lil cheap ass lie tht if u roll ur eyez they'll get stuck like tht! rndm,1 +damn your Jedi mind tricks!,1 +lol at zach telling us google is evil and the translator on msn is fucking prime.,1 +If you guys are having the problem that pages aren't fucking loading then I'm having the same problems too.,1 +drawing a blank... damn! will have to watch it again now... oh well...,1 +the only thing I hate about Nikon is the dumb Ashton Kutcher ads they run.,1 +be careful! Hood pigeons don't give a FUCK and pack heat! I've been robbed by them on countless occasions!,1 +you smell like the insides of a beluga whale's forehead,1 +dude so weird i feel like good will stole one of my best friends too Damn the man,1 +makes you feel cheap doesn't it. I hate that clients use these things...,1 +that sucks. I do both at my work which is a pain the rear-end too because everyone thinks they're designers ;),1 +damn work fire wall. can't go to myspace. :(,1 +that sucks that the internet is being twitchy. Hope it works soon. :(,1 +yeah. subconscious sucks sometimes. always telling me what I'm doing is wrong. Most of the time it's not. :),1 +man that sucks. need any more balls kicked? i'll do it!,1 +ah damn man! Good Luck!! You can do eeeeit!!!,1 +Yvonne that's a french ass name Yvonne. My little cwasont .,1 +I still think you should be prouder of the "Fuck fuck fuck!" but "Rock!" is pretty good. When will you be teaching her "FUCK YEAH"?,1 +Damn tough call but I'd have to say toddlers.,1 +I'm at a high school that I fucken hate. I can't stand these people but my sister has a concert thing so I have to be here,1 +oh no!! that sucks!,1 +oh bugger at car screaming.. that sucks.... glad to hear the rest was all good,1 +Who would be ur premiere Ultimate Dumb Ass?,1 +except now they have his crazy ass son to deal with probably.,1 +oh! I saw the ex earlier. Asked if I "fancied a fuck" before he left the hospital. I politely declined.,1 +we all fucking know better.,1 +haha cunt.,1 +I hate him.,1 +damn your phone....SEVEn SEEEVEEEENNN,1 +I especially hate it when they make me lift up my feet to sweep under my desk. Sigh.,1 +it sounded a lot like that actually. Fucking Hagrid.,1 +you ass. Yay Walmart!,1 +Definitely. I hate crowds. Angry out of control crowds. I would rather have a root canal (and I've hd one or two),1 +damn -- http://tinyurl.com/7b7nze,1 +that's why I throw a hard ice grill at him...no words...get the ticket and get the fuck out cause I've never had luck,1 +Fuck you Ian I know you're using a joke book!,1 +Honey we all hate long division. Look for things to hate that make your personal hate list special and distinctive.,1 +whaaaaat! Who the fuck??,1 +Not really. Atlantis was okay. Old Star Gate on now. Was about to watch Numbers. Might do Sudoku instead unless u ready u fuck :),1 +I meant ready 2 fuck:) lol Hope u have something wild and freaky in mind. I'm bored :),1 +My pussy remembers what u do! Lol :),1 + NO NO NO NO NO I HATE YOU.,1 +yep...that whole damn mixtape gets me hype lol,1 +Damn Girl! Aww that'll be cake at the rate YOU are chalking them up. Nice seasonal pic and awesome tweets btw.,1 +you're assuming they can presently afford them? leverage is a bitch.,1 +please get the fuck out of my house,1 +damn missing coffeeclub again. And this time really could have used a coffee ;-),1 +*looks at who is following me on twitter then remembers i dont care* OMG such a fag.,1 +if i get scared ill be sure to throw u in the way so u shiver in terror and piss ur pants like u already did,1 +bahahaha i love you. and ugh i wish i was on my way to va with @heyheatherr fuck the weatherr.,1 +they look SO dumb. and omg i hate cassidee. ugh. just ask @applicantjan LOL ;),1 +You're a pig you have a curly tail for crying out loud!!! And you dare laugh at mine???,1 +Welkom ! Dat Apple freak deed me besluiten je maar te volgen :),1 +too right XD Gordon Brown can officially kiss my ass! Freak!,1 +:( PS3's are fantastic devices. Kicks XBOX's ass :D,1 +that SUCKS.,1 +holy jebus yes. that'll do just fine. fuck I love twitter. free chicken!,1 +DAMN tootin'? Seriously? I've heard DARN tootin' and even DERN tootin' but not DAMN tootin'! you kicked it up a notch.,1 +that sucks;{,1 +i still feel bad. I woke up at 2 am and was like fuck! Then i saw that carly called,1 +makes sense and glad that it's shifting (even if geologic). hate that kind of snobbery.,1 +Charisma Carpenter is a CUNT. I also told her.,1 +Damn straight I am! I want to be 50ft! I also want to play Barbarella. I'd be much better than Rose McGowan.,1 +Oh no. I hate that!,1 +you said "sucks" and I said why does it suck? LOL,1 +I'm 1/2 with that as a Realtor my other 7/8ths would like 2 C stimulus 4 the housing market. Damn'd if you do Damn'd...,1 +Time's running out for them. The Cboys will pull it off. Looks damn cold.,1 +Pretenders come to mind! Damn.,1 +I thought the same thing he should have just hauled ass.,1 +lmao a grown ass man having brunch is even gaaaaayer!,1 +I just read ass pet a cat. Adam...that's just wrong. :P,1 +....i make an ass out of my self * sad blushy face*,1 +aww that sucks man. you've learned a lesson for your kids... leave'em in the cold or spare key under the poinsetta pot,1 +try fuck.,1 +nigga I'm DYING over here reading this sweeney interview. "anybody that aint me is a bitch". CLASSIC,1 +Well damn that means you working wit something! Lol..,1 +LOL- I know how much u hate traffic- just know it was 10 times worse last night :),1 +fashion parade. (damn sneaky mousepad enter key thing.),1 +Damn it how do you ALWAYS post the cool links first? :-) (Catching up on today's tweets.),1 +I HATE that. I have a rhomboid almost triangular 'washcloth' from learning bark sedge stitch. I use it to scrub the bathroom.,1 +I haven't started mine yet and don't know that it's happening. I'm a card freak though so probably I will send something.,1 +bad mood. i think its bedtime. i hate alcohol it ruins everything. :( hey what u doin 2night? x,1 +But surely i need to improve on the digestive front. Ain't any fat panda :P,1 +damn I can't believe all that happen to her hair. I always thought it was simple 2 straighten natural hair,1 +ham stands 4 hot ass mess,1 +yeah tneezy gonna hate it... @tneezy sorry boo u 1 day late!,1 +- Do you HATE Cleo!? Let her win for once you're breaking my heart! ;),1 +- More DnD podcasts!? Fuck YEAH!,1 +you dont need a big fat spirit animal to be embarassed...,1 +http://twitpic.com/py9p - HER ass is on top,1 +http://twitpic.com/pyb6 - is a very naughty panda always has her ass up in the air.,1 +I iz calm now - cept I can't figure out how to properly edit my wordpress templates. NERD ALERT NERD ALERT.,1 +DM. damn.,1 +ignorance is my guess - but this could very well turn into a nerd rant - and that would get @amberto all worked up,1 +Predictability Sucks! WHUUP! (not being predictable) Kev,1 +I HATE IT when that happens! Usually when I'm in a hurry :-/,1 +Damn I also like Ferrero Rocher dark chocolate version. They induce the zits on my chin :'(,1 +Thanks! I'm not familiar w/ the "nerd heard" language. You should add #NH so I can say #WUW #NH @craigsanaotmy!,1 +btw sir you are a ASS ty nuf said,1 +been here more then a hour just to get my vegas shit back damn slow service shiat,1 +45 windows and only 12 open and about 30 people on break I mean I want 23 a hour to do not a damn thing,1 +1) i can't stop laughing at how's the meows sound like cat o-face screams. 2) ugh so bummed i missed out. another gay? (:,1 +the boy i'm talking to is a ravens fan. every time he ends a text with "fucking bitches " i can assume that they're losing.,1 +Haha no I mean that I love the money & my coworkers but hate how much time the jobs take up. It is fun to hate them though.,1 +and i look emo too cause i'm wearing like all black and shit and my chains are hanging out XD i need guyliner,1 +i had eyeliner on once but it kept smearing cause i'd fuck with it too much,1 +Damn dog didnt call them like I said to? Well I is working till around 9ish,1 +How the hell do we get in these money situations? Sometimes I just feel like saying fuck it and have them come for my car.,1 +Like Zebra man said in rock n roll parking lot. LIFE SUCKS SHIT!,1 +Way to go loser how does it feel to be an inanimate objects bitch? Must feel terrible to NEED something to be normal. Shame on you!,1 +Maybe I would have to stare at your face for awhile while I do it that would be gay..and weird...and creepy...sort of,1 +I want to see a picture of you right before you decided to shave your head. That would kick ass especially if you are crying.,1 +well clean the damn floor!,1 +I have news 4 you this whole month is going 2 suck ass I hope u like banquets n ramen cause thats whats on the menu this month :(,1 +gahhhhhh....I hate them. HATE THEM. They come in on the pipes and through the heating vents to keep warm. BOOOOO.,1 +I've never seen Wall-e. Yes it's a hole I know but that doesn't mean you're not a huge nerd.,1 +That sucks. But what kind of parent buys a toy because it's HOT? What about the kids' personality and taste?,1 +Hey don't hate on NC. They got bought out by PNC and alot of people are losing their jobs. Cleveland has a sad face...,1 +http://tinyurl.com/6dunlq hate me for it later but it's not bad,1 +HAHA that did brighten my day considerably. How about on the one day of Christmas my broke ass got my gf gift cert to Chili's,1 +damn I'm moving south. Cleveland has it for 1.69/gal,1 +- Damn... now I'm bummed I missed... I'll be at the next one fo sheez...,1 + hmm didnt even know they existed...no wonder i feel like a complete retard when i cut stuff with a scissor,1 +Laser treatment for pimples? Meh. Metrosexual a.k.a gay pride! Hahaha!,1 +damn oh if only he could fly he could take me to his gaff(house) then,1 +Wow u in love wit her? U gay 4 her?,1 +no im definately a bigger nerd than you.,1 +you are sucha nerd! Love it!!! V(^_^) haha,1 +if I ever fall alseep with them on I wake up with the off. Hate them.,1 +? Text me bitch!!! :),1 +People are so fucking pathetic. CHILDREN! Ughh~,1 +that's ri god damn dick ulouse! Tasty though. Haha,1 +that sucks :(,1 +psh bitch I'm at work running 2 trains with a 70 minute wait stupid kids and dumber parents I don't wanna hear it,1 +it's cos we're old now. sucks.,1 + ....you gone wind up fucking her (is that what u wanna do shawty),1 +yeah fuck it kill um all!,1 +!!!!!!!!!!! FUCK YEAH YOU DID. <3 <3 <3,1 +you know fuck it I'm doing "Jew-Boy money",1 +you know what fuck it I'm doing "Jew-Boy money",1 +Love You Man Not in Gay Way or Anything :),1 +I love you the way @MattBacak loves me not in a gay way or anything :),1 +I'm all about peace n positivity but sometimes you gotta give a little kid an ass whoopin' !,1 +yo why u always tweetin' about boy problems ?? Fuck nikkas get money stay focused son!!! I know you a Hustla & Hard worker!!,1 +trust me dog I dont even FOCUS on females I'm so focused I got NO time for these broads the opposite sex will fuck a persons head up,1 +that's what I was JUST tellin' myself !! Hahaha I said "Fuck it Kel just DO IT and get it DONE !!" But I complain the whole way,1 +These fuckin FOOLISH ass atheletes !!! 35 mill down the drain not to mention a great Giants season..WHY ?!?!?!?!,1 +because like everything you do its ASS Backwards !!!!,1 +I have no idea why I live here. It sucks in the winter.,1 +I hate you sometimes. lol,1 +I don't hate you all the time. Just sometimes. Not enough to unfollow and block you. lol,1 +so do I! But its the task of getting off my ass and going to get it. Gahh,1 +YES!! she'll call me and be like get your ass out of bed and then she'll name a list of bs for me to do,1 + OMG that sucks! D:,1 +Devil's AssMartini on Scottsdale and Gay I mean Shea,1 +i hate this this sucks butthole im so mad im pissed i told that person not to tell,1 +I guess everything's alright but I hate this still.,1 +yikes. That sucks. Sorry to hear that.,1 +Haha damn him indeed,1 +Long enough to know you're an ass! You could see that jellyfish shit coming though..,1 +I get your tweets on my phone and my ass was just vibrating like crazy lmao,1 +ah sucks maybe Redcliffe then I guess it depends on what time I get up tomorrow haha,1 +that sucks :-(,1 +that really sucks :-( I could have recommended you an amazing chiropractor!,1 +less drugz mo sleep bitch!,1 +@Kimber_Regator You guys are in the same fucking house and using twitter to talk.,1 +I fucking hate Rachel Ray.,1 +I haven't been online all day whore. Trust me... one post from me is going to be more than you want at your house.,1 +i hate hate hate being snowed in! (how's that for a sum up?),1 +damn! you packin heat!,1 +thanks sugar i get a little sensitive here and there. damn holidaze!,1 +i quit heroes. nathan is a fucking douche.,1 +careful soy joy will give you bitch tits!,1 +jacob sucks i hate the werewolves im with the vampires GRR,1 +I blame Alexx for making me put 'I love to say fuck' on my ipod,1 +I am slighty mad at perry. he can lick me ass!!!! loll,1 +can you help clue me in on how to connect all facebook etc? thanks for coming last nite hope you didnt hate it lol,1 +That's a damn shame because they don't do veggie burgers. :),1 +THAT WAS THE MOST MOST BEAUTIFUL CHRISTMAS CARD I HAVE EVER RECEIVED. I MEAN DAMN. 80,1 +omg who sent you a fuck you letter??,1 +Does he have favorite characters? I'd hate to get him the guy he hates :),1 +That sucks... Can you use it on your iphone?,1 +I know - I really wanted to go to the show - but I gotta be responsible. I was in class w/all the idiots. I hate them all!,1 +Know how you don't smell perfume you use a lot after a while? Same phenomenon w/stink. How else can you explain pig farmers?,1 +can I have some? pizza in NC sucks :),1 +yea school sucks sometimes. thanks bro figured id mess around on here to waste some more time from studyin ha,1 +Ummm...was that our little brother's ass? And you dare judge me?,1 +The dam @chilis? Is this like the pig under your tree? Have you cracked open the chard already?,1 +YES ROCK BAND! Only it hasn't come yet fucking postman. Totnes was brietastic.,1 +FUCK YEAH!,1 +yr gay voice =],1 +Oh it's pretty much public knowledge that I hate shaving my legs. Or at least it is now.,1 +Stop getting so damn skinny and maybe your pants will fit! =P,1 +wow that is damn ridiculous. I think i will be crossing off dubai for places to visit.,1 +Lulz. OK. Internet Explorer sucks.,1 +@bagntrash everyone kind of just disappeared after the food I'm not leaving it there for some jelly-bean givin jack ass to take!,1 +I'm just gonna start the emo kids who pretend-to-cut themselves clique. I can be found in the library playing WoW if you need me.,1 +mussels? or muscles. Damn web-people.,1 +BOOO!!! We missed out on date night. I hate the Tinder Box.,1 +I still hate the Tinder Box... It hinders our couple social circle. Thank God the holidays are almost over.,1 +Frat boys think "good game" afterward means they aren't gay. Doesn't make 'em str8!,1 +~ wholeheartedly agree that NYE music entertainment sucks!,1 +yo fuck that dude 4 realz!!! it was allz cuz u me "animal" & "marc delicious" were so stupid-ass-rodimus prime fantabibulous!,1 +Marc got home ok...but said he might've fuckied his rim up. I told his ass the pierogies & sausage wwere gonna knock him out....,1 +u know it was over $1200 2 get that bar replaced. George is gonna take that outta thier ass LOL,1 +checked out the link. Holy ass...i think that fairy had seen that vid a million times cuz he was damn close! LOL,1 +dude that kind of sucks.,1 +pimping your blog again but damn funny. specially including Connex,1 +I can't help that you keep looking for gay midget porn on YT. The volume is too loud for you but I like blaring my Celine Deon.,1 +holy shit I'm not even taking that class and I hate it !,1 +my lungs are fine but my legs are like "bitch your ass is heavy !! let's stop !".,1 +that sucks man...,1 +You are a Linux whore!,1 +you must REALLY hate Christmas then!,1 +I listen to a lot of really weird music and I hate most of what's on the radio so it's not really for me.,1 +I have both now. iPhone camera sucks as well as lack of other things but email twitter and apps are good. Big screen is nice.,1 +you can do video after jailbreak. But still it's not a patch on the n95 camera. I really hate the iPhone cam.No settings at all!,1 +Watching the Biggest Loser. I'm amazed by weight gain or weight loss.These people are losing 5 10 20 30 lbs in one week.Amazing,1 +I don't hate you. My last partner was 130 lbs and I got him up to 165 lbs of solid muscle. I hated him 4 looking better than me,1 +I hate to keep sending this link.. but you never got back at me.... Whats good.. http://tinyurl.com/6xmnyr,1 +gotta hate those fake posers,1 +I hate insomnia too. NyQuil works ok. Excedrin PM probably better.,1 +@maddow. where is that big gay planet? can I go there now please? someone please fucking segregate me off this rock.,1 +No. Being "down" 5lbs is a bad thing when you're a scrawny nerd who's trying to bulk up. :),1 +Hahaha Testosterone Man!!! I met Mega Bitch Soccer Mom the other day. She took the time to stop honk her horn & flip me off,1 +i forgot about the clothes haa. i cant wait to get my ass in2 my skinnys! :) i belive im also getting 2 pairs of pjs. scorreeee!! :L,1 +it's emo because you used a razor. An explained joke isn't funny. :(,1 +It sucks!!! My kitty (adopted alley cat) only knows how to potty outside so I was freezing my arse off trying to get it in. LOL,1 +WOW what a loser. I hope seth has some good male role models in his life.,1 +I spent all last week with that damn song in my head. :),1 +what an ass - who the hell says things like that. I'd report the fucker,1 +True! I hate people who're full of themself! That's one of the reason i love mcr they're humble and down to earth...,1 +WHATTTTT O________O omg.....nahhhh i hate roller coaster and im extremely scared by this shoot......,1 +LOOK @ UR TEXTS OR I'M GONNA FREAK OUT @ U!!!,1 +Funny that the guy's last name is Dick...bwaha! :-D,1 +unfortunately i do =( it sucks! & i have my 2 last finals 2mrrw bc we had a snow day that other friday. i dont wanna go back!,1 +i hate school =(,1 +OOGA BOOGA FOOCHA FUCK YOUR WHOLE DAY!!!!!!!!,1 +Oh sad faces :( I hate it when that happens! Reading in bed usually helps me...,1 +that sucks!,1 +& @lasandwich I hate calculus... :(,1 +what a loser. :P,1 +1) it depends on how u come at me. 2) if my 1st impression of you sucks I prob won't be so warm & bubbly. I'm mean though.,1 +He's passed out in my bathtub. Only way I could restrain him: knocking his ass out and leaving him in the dark. :1,1 +Naw. I gave him tomorrow off. Fuck my carpet's a mess.,1 +Wow that sucks - work at home day? @PrincessErsatz - I couldn't agree more - good day to be under the covers relaxing.,1 +That sucks.. Stuff working yet?,1 +damn man kn frnd e,1 +damn man kobaa e ??? :O,1 +u stll up drinking bitch?,1 +damn. lol. let me try something else. hot lesbian sex. nekked girl on girl. free porn.,1 +haha. it just bugs me. because posers like her make it harder for people that truely are gay to be accepted,1 +damn right it wi be!,1 +damn that store! ~*Krystle*~,1 +you order pizza that much they have you on speed dial. damn.,1 +THANK YOU! It's not just me. Gay guys are hot as hell.,1 +yeah it sucks. 6 yrs down here & realizing we dont get snow. just ice. and nobody can drive in rain let alone ice,1 +then ur game sucks. no crue not buying it.,1 +or maybe go see bolt tonight? or both? don't know if you're busy for white whale stuff... but it's my bday. let's celebrate,1 +sam are you showing in 'in sequence' at white whale on friday night? I wasn't sure... since you'll be out of town for the opening ,1 +Sucks 4 you!!!!!! Your just not a lucky ducky are you? First your phone now this!,1 +Alan I think you might as well give my spot away to someone else. I'm just too damn sick to sound like my charity is good. :'(,1 +i literally could not breathe. that was so fucking scary.,1 +Not to me :/ damn though. i hate being sick.,1 +I hate my life haha,1 +P33T WIFF HIS BIG GAY TEEFS!!! BRYCE FROM TRS AND HIM SHOULD HAVE BABIES AND THEY'D HAVE AMASING TEEFS,1 +Yes but if your senses are dulled mebbe you no bitch so much? Or you should find a good human who's blood you wanna eat,1 +ps...ur cute...ur good looking your funny your a dick your an ass your cynical. I LOVE IT!,1 +damn! Ok look make the stripper pole look like a knitting needle and impale a stripper granny on it. That's the only way.,1 +no it was a direct Church of Why Don't You Bloody Well Piss Off,1 +of course @bapper is cold..he eats picked radishes all winter..if he had some whale meat he'd be fine..,1 +damn that caller ID,1 +yes. sacto cali- driving back to palo alto later tonite. eventually i'll get off my ass n shoot.,1 +oh lol gotcha... well i'm a fruit freak. i don't like melons strawberries the list goes on.. one day in heaven i'll like it all,1 +lol no no.. we will kick the pig... (kick this thing off do it get r' done etc.),1 +damn your hardcore! My legs are complaining from the simple long walk I went on yesterday. I've neglected them over the winter!,1 +It is amazing! But it kinda sucks when it makes you late for work lol.,1 +burritoville is dead? What the fuck?!,1 +me too. So entertaining. Dude you watch this mvie called trailor parl of terror. Fucking brilliant.,1 +aw that sucks.,1 +How does he feel about marmite? Love It or Hate It?,1 +ROTFLMAOOOOOOO WOW...Cumleone? Cum Alone? Oh sorry...thats funny though.,1 +why does eueryone hate american eagle? wat happened?,1 + yeah it sucks i know she was one spankin hot mofo,1 +Now I have to try my best to get my ass blocked by @souplantation.,1 +Wow what a fine uke. It's tempting but I want my charango with 10 strings and damn near impossible to play.,1 +got to love a good sunset... I just hate this time of year leaving work and it's already dark outside :(,1 +bojangles? damn you! so jealous.,1 +Whatever... I just hate how the popularity of bands seems to inversely affect how much people are allowed to like them,1 +Lazy ass :),1 +Ugh the bane of my existence. Hate them.,1 +damn you for getting the comics up early again o_o it gives me nothing to do before school in the morning D:,1 +wow i looked at the tinyurl of Barack Obama that you put up.... I am disgusted too that such revolting hate is so prevalent..,1 +yet fear seems like a cop out too i eat my words...Hate is ugly,1 +Connection interrupted. God damn.,1 +fuck the krebs cycle.,1 +like you build a tolerance to drugs don't you? or is this just me being dumb cause it's fucking four a.m.,1 +Haha. Cool. Just sucks that we have to wait so long for season 2.,1 +Damn! Sounds like heart attack inducing combo.,1 +like jealous toddlers equal change to excel When a person DOES excel other ppl bitch&whine - bc it "makes them look bad" The,1 +damn old people now a days they are the dangerous drivers,1 +work stressing over this damn AE meeting we are having @ 11am.,1 +Warm Mt Dew tastes awful. :/ Try Jolt Cola instead. Or maybe even Whoop Ass. http://tinyurl.com/8woa3j,1 +it means - the fat beauty and yes lost 43 kgs thru heavy dieting n working out at the gym 6 days a week - that was 3 yrs ago,1 +oh damn! anyways next time...DM me ur number or soemthing,1 +stop saying you hate gwen! Youposted earlier saying you love her! Ur hot then ur cold ur yes then ur nooooo,1 +I'm on my way just to get gas and saw a 314. Damn it.,1 +get some damn sleep! Sleepy Time tea is my savior serious,1 +I want beach now. Damn.,1 +sorry you have no cred. Two words: pig ears,1 +and somehow I still wish I was there pig parts and all. Amazing.,1 +I send you a hug ma. That sucks! 08 was full of some fuck shit I'll say that.,1 +I hate you,1 +- Fuck yeah!,1 +LMAO! @ ur new pet...I thought u sent me a pic of a big ass butterfly...lol!,1 +at least its not those nasty ass water bugs u had as roomates in Atlanta..Ew! Lol!,1 +Ok..ok I c u! Take it back on they ass why don't ya.. That sounds super CUTE!,1 +I hate giving little kids antibiotics...10 days 2 a day and important they get it all down...impossible!,1 +some kid made copies of the questions and a teacher looked at it...fucking dumbass he/she screwed it up for all of us.,1 +alright. The test is on Monday and I'm gonna be studying my ass off.,1 +lmao that sucks.,1 +I hate when that happens!,1 +Wendy's - Oriental Chicken Salad w/ grilled chicken. Way good. I think it's 20 grams of fat just in the dressing tho! Argh.,1 +:-( Yucky needles. I hate those ones with a special sort of passion! *hugs* Hope it's over soon with the needles.,1 +Courtesy of the Canadian kids magazine Chirp: How does a sick pig get to the hospital?,1 +and holy crap that's a long time!! D: that sucks!,1 +Now I'm gonna have to go back to McLuhan & Leary to help me translate WTF you just wrote. Damn I hate when that happens. Heh.,1 +That's...so gay it's painful.,1 +ooo tht sucks...happens to me all the time when I drink 5 hrs...,1 +kim kardashian annoys me...her ass is nice but Reggie could get it!,1 +I'm up too! whoopee fuck! not hung over AT ALL!,1 +so fucking angry all the time,1 +It's got a core of uranium some damn thing I don't know. Gets up there like Sputnik.,1 +That ALWAYS happens to me! Damn skype.,1 +Thanks Ulrike! :) We'll make sure to nerd it up!,1 +sorry i missed you @ Cain but they weren't very nice to my gay boy - I think some1 was jealous...missu hope to see ya soon ;),1 +fuck them!,1 +damn now i want some au gratin!,1 +Well I would but once Christmas is over it kinda sucks the life outta the Santa hat thing...,1 +I both love and hate the sticks! I'm finally going home tomorrow.,1 +hahaha i don't hate german just a couple of germans. Guten morgen!,1 +I'm gay and I'm pregnant gak mungkin berhasil. This guy is persistent. Gmn ya. Can I just simply ignore his msgs??? :-D,1 +NOOO EP!!!! That really sucks! You should hve jst waited in the car...lol!!! Hopefully it;s dark in there & no one looks dow ...,1 +I just wanted a fucking money order and it took 40 minutes to get it. They won't even look at you if you're on your mobile phone.,1 +I hate games like this. All these people shouldn't be going down.,1 +lol...hell naw...its the fine ass one!,1 +i call it "hey-dumb-fuck-guys-stop-trying-so-hard" advice,1 +hate? i was congratulating you your a humanitarian!,1 +well clearly the shoe purchase is more impressive because ITS A FUCKING SHOE!!!,1 +fuck sleep you gotta stay up late so u can see santa!,1 +that's great. def down on carbs + fat. counting cals in and out is working perfectly. the big difference is my mindset. thanks!,1 +yeah my son works at Barnes N Nobles...played the mamma mia soundtrack overNover- they all hate it now but sing and dance along!,1 +what the fuck do you have to apologize for??,1 +fuck you op,1 +@ember_myst @spellchaser Just so you know I'm staking my claim on etherist. I am in full on crush! Sucks that he's married. :P,1 +He doesn't seem clueless to me. He seems sweet and cute and witty and eloquent and charming. *swoon* Damn the luck.,1 +Arrrgghhh! I hate him!,1 +Do you hate the iMac because it looks edible :) or because (it must be) soooo slow? Or not a Mac guy?,1 +Oh I would hate that too. Three apps? That would barely get me started.,1 +I don't believe in a lot of specialty kitchen gadgets but I cling to my potato ricer and my popover pan. Carb freak? :),1 +if gov is going to make it "uncomfortable" to be fat & expect it will work shouldn't they also make it uncomfortable to be poor? #tcot,1 +oh i hate it. self righteous people makes me want to scream.,1 +I hate you so much right now. http://is.gd/ewZm,1 +Aah! I actually hate you!,1 +Gah fuck off tainting my private account with new followers. xD,1 +fucking buses. One drove straight past me on Friday night and I was waving my arms like a windmill. Baaaaah!,1 +good u an ur no sharin ass LOL,1 +Damn fam... if I was a hater I'd be jealous... lol,1 +You blogged and ran? Jesus that's ass kicking if I ever heard it.,1 +Hell yeah!!! And the best bit of movie dialogue ever..Jason says "I am NOT the gay!" ... OK Jason i belive you ;),1 +Damn near indeed! But in the end their youthful impetuosity gave it away. It didn't feel like SL actually won it incredibly!,1 +i was able to connect to may exchange with apple mail after they enabled active sync for my iphone. i hate entourage... so much,1 +Hints in icing are bad or good? Skywriting sucks unless the hint is a very short word. I'd suggest a delicious tag for nerds.,1 +@DaveBenjamin I HATE THAT...,1 +people hate to admit emotional decision making though. manipulative some think. the uphill climb of personal branding...,1 +oooo thats not fun! i hate those things the orthodontics people are mean to me!,1 +weird.... Nick are you going emo??????,1 +lol!!!! I used to be the wknd assignment editor and would get mail addressed to "Weekend Ass". I didn't know how to feel.,1 +I hate to harsh your buzz but every game on the iPhone can roll the bones by shaking. Do not pass go do not collect my $7.99,1 +argh tell me about it :x i hate procrastinating... lol.,1 +coincidence my ass... LOL... But it's a good suggestion so it'll go in the hat... Singapore would be interesting. 5 more...,1 +Dude oh no U didnt! I got 4 DM's within 4 minutes of me saying "ass"... imagine what would happen if I said "fuck"... oh crap!,1 +that really sucks!,1 +re: why friendfeed sucks - no doubt a powerful utility but with a high learning curve and non-intuitive user experience,1 +you asian!!! I hate asians!!! Bahahahahhaha!!! Jk! I am well on my way to getting fucked up!!! See you next year!!! Hahahahaha!!,1 +I hate you...,1 +I'm counting down the milliseconds til you OPEN THE DAMN BOX. if I have the patience of a saint you have the willpower of a GOD.,1 +totally loved Odo. But the Ferengi make my skin crawl. out of all the species they're the ones i hate the most. yuck!,1 +ahahahaha so right. Im fucking freezing my ass off here.,1 +Im so jealous. But I'll be eating that same rice pudding in 9 days. Enjoy the fuck out of your trip,1 +all the emo people will explode :o,1 +and biggest. That would be a bad-ass name too. At least his middle name.,1 +sweet. I'm too chicken to read it cuz I hate "spoilers"';),1 +hate "can'r do" atitude. can do works almosr all the time.,1 +Damn. Oh well I can't raise my hand for every question. ;-),1 +I'm laughing at your "Don't hate me please." Can you imagine a man ever saying that? Not to be gender specific but...,1 +damn I'm behind,1 +because i'm a dumb ass.,1 +because i'm a dumb ass.,1 +lol! hey stop being modest. you OFTEN are a hot bitch. :),1 +but they love me for it. none of them giggle. its a love/hate thing they got goin with me =),1 +"""I hear what you sayin gurl but you mean to tell me you caint have friends??"" *insert piss poor false sincerity here*",1 +Haha! I'm glad someone else will admit to seeing (multiple times clearly) Gummo! I let someone borrow mine... lost. Damn.,1 +damn iPhone that's SHITE. Learn English slang,1 +Oh Shit! I am a yoga loser. But not any other kind of loser. I have already showed up once with no class alas.,1 + yeah and I woulda gotten away with it if it wasnt for you damn kids...,1 +we're talking threatening your ability to do business in a professional not-over-the-top way. w/o being a cunt somehow.,1 +maybe you should go punch him in the dick.,1 +that sucks =/ you'll get into the other ones.,1 +damn clean plate and the cl;ean bones lol.,1 +you got niggaitus and watch baby come in there and fuck with you.,1 +i'm late but my damn pic mail ain't sending nowhere. they said i need to add the app? wtf?,1 +fuck andre! it's strippers lol you coming home to him!,1 +Fuck off.. I'm not ready!,1 +Yeah. I know he doesn't mean to be a douche and that I'm a huge bitch for being this upset over it. But it still upsets me.,1 +Damn!! I was hoping you were giving me good news otherwise!,1 +try putting lemon peels around the base of the tree; supposedly cats hate citrus smell,1 +I love New HAmpshire well the white Mounts.I'm from Maine and I know I hate cold also hence why I moved to Fla.,1 +dont bother with low fat brownies,1 + yes.. a she-wolf in love is it even possible? Which team do we root for now? I'm a faithless whore - struck by Amor,1 +don't you hate yogurt! When you do recover from hating yogurt go to Trader Joe's get the Greek style kind it's fantastic!,1 +Stop it! I keep thinking you're going to say he's here! Now I'm waiting vicariously through you! Dammit! I hate waiting for babies!,1 +ohhhh like that... well then shit girl u shud be pissed. AAAND... u needa tell the BF his own blood is using his ass!,1 +lol tell her to go sit her ass down somewhere lol,1 +I hate when I see people doing that. I am with you on that one. Why do people think that is okay?!,1 +I have no clue what I've stumbled upon but I laughed my ass off... you might too: http://is.gd/a8cz,1 +Oooh I'm so going there this weekend!! I just hate malls at Xmas time. Bah.,1 +oooh I wish I could! but then I have to shave my widow's peak to get them to hang right. And what a bitch to grow back! LOL,1 +ugh I KNOW -- there isn't one!! And I hate when I go into a post and click it -- it just opens the jpg! YUCK!,1 +I imagine. Another thing every time I open the Reader my subscription folders are ALL open. I hate that too.,1 +I jokingly remarked to my man that I was an "internet whore " he thought it meant that I was a porn star. LOL He doesn't get it.,1 +Agreed. Fuck Twitter Grader and all it's kin.,1 +The JVC (LCD) Reference Monitor I have is in a word awe-fucking-some. :) It's great accurate and as good as it gets. It's ~ $4k,1 +fat ol santa may eat a cookie but he will also touch the youngest while they sleep.,1 +Ew :( That sucks! I'm sorry.,1 +you said fuck everyone!,1 +okay. Fuck me. Way to start the new year.,1 +well if u looking for more sex watch the fat boy freaking his pillow thats now playing. Ewwwwwww!!!!,1 +some retarded oracle peoplesoft login thing keeps coming up on my enrolment cart page and i don't know what the fuck is going on!,1 +ripping off Emo Phillips + ba-dum-bum jokes wouldn't get my vote even if i was the web-voter type.,1 +that would be nice too. because i hate feeling violated every month with no payoff.,1 +I do? Damn! But it's FOUR hours! After an hour + of plane ride!,1 +I hate math really do!but will be happy as well when I finish university!,1 +"""don't hate me cuz i'm beautiful."" jk. you're probably too young to have seen that commercial. HA. what's wrong chippers??",1 + We're having a BAD ASS gathering in May you should come. Of course the best part is the hanging out downtown after. :),1 +kicks dons ass. *HUGS*,1 +ass balls... lmfao.,1 +It's not weird you hate that. Me too but sometiimes the list gets a little unwieldy.,1 +#Paypal sucks. Someone is using my identity there and they refuse to do ANYTHING about it.,1 +aw man that sucks!,1 +freak passing shower. was walking by then suddenly a few big drops came down. thought oh shit and ducked in just as it poured.,1 +omgomgomg those shoes with the little flower holy fuck i want them,1 +Ugh. Half the time people pick up "Free stuff" from Craigslist they're driving a luxury car. Heh. HATE them.,1 +damn i'm trying to watch a movie...the tweets are going off the huck. :P lol just kidding don't get pissed alright? ?:D:D:Dlololol,1 +damn you have really become an ordinary man... man that sucks ass!!! lol :P,1 +how fucking sad is the OVA of Samurai X...i didn't want to watch that.. fuck i almost cried.. lol :P jk,1 +I HATE rain..wud rather the snow..crazy I kno..lol,1 +got it .. and I have read that! Gonna re-read tho..Im stuck and have been for a while..sucks! Thx for help--love ur stuff.,1 +might install now that you've acted as my guinea pig :D,1 +any workplace where that isn't safe needs to harden the fuck up :p,1 +that sucks *hugs* :(,1 +probably not but who the fuck knows what's going on with this show anymore.,1 +k im hella boredddddddd hurry the fuck up i saw my bro playing it game looks sick,1 +omg me too! The holidays need to end now plz. Ppl are soo mean and nothing is jolly or holly! It sucks!,1 +Damn that's a lot of money for tickets! I guess her little girl only turns 16 once though. :-),1 +i am going to work on a grassroots gay rights project that will involve the communities of color.,1 +suntem dar ne gandem cum sa gasim o mascota care sa o putem scoate din dulap cand vrem sa acuzam pe cineva pt nenorocul nostru,1 +what do you use then? cuz I hate Itunes,1 +Have you heard any J-Fish songs. if you want a sneek peak I can send you a few songs =) I have all his CD's I'm a J-Fish freak lol,1 + haha exactly! And I love YOUR new picture! I was wondering when you were going to use this cute ass picture! I love it!,1 +I like to look at it as "meeting their needs" not necessarily "kissing ass"... although if you can do both - do!,1 +Damn iPhone made my Brad & Angelina pick blurry! http://twitpic.com/rddb,1 +in the lab...all damn day i had soooo much work to do:(,1 +well lady I'm all for u comin here from frisco to hunt my ass down;),1 +fuck 'em,1 +I just giggled out loud because my dyslexic ass just read "My fluffy ass was rubbing off",1 +whaha ja maar het is zon raar idee dat ze dat lezen xD en dat BOB FUCKING BRYAR iets tegen me 'gezegt' heeft xD je moet vragen o,1 +weekend ofzo? 3) I still hate twitter 4) I love Gerard he's writing umbrella academy but I still haven't read it yet -shame on me,1 +I bet we are freezing more than you are. The North sucks. Ugh!,1 +That sucks. I was actually a guest on there! My first time on the radio.,1 +That sucks. Are you alright?,1 +DAMN! I'll wait a month before I send mine for a critique! LOL,1 +@EightysBaby man..... fuck the lakers,1 +yeah most people just think i'm a bitch cuz i got that screwy sarcastic sense of humor that tends to tick people off? my username?,1 +Dude. That "Sleeps with Angels" song can straight up have my ass bawling. I also love the song "Hey Hey My My" and Harvest Moon,1 +...i love my job and would hate to miss it...I'm depended upon and especially this week I'm needed for our toddlers parties,1 +hahaha. once years ago when he was sleeping I applied some to his lips. I hate it when guys hve better lips 4 lipstick than me,1 +all that I know of is the Revenge vinyl. u? and sorry for delayed answer my internet sucks and trips out,1 +The 401 always sucks between Cobourg and Kingston. I'll be doing that joyous trek on Boxing Day to visit the relatives.,1 +HAPPY FUCKING BDAY YOU OLD MAN!!!!!! <3333333333 CELEBRATE TONIGHT WITH A TALL COLD ONE :) wooo!,1 +HAHAHHAHAAHHAHAHA LULZ @Mod_Alex your STILL a cunt!!!!! hahahahahahahah lulz lulz lulz lulz lulz,1 +UNNNGGGG if he used that fucking word i'm never saying Epic Fail ever again..ooo i'd like to give him a sock in th..NEVERMIND!!,1 +hahaha honestly i fucking CRACK up on shit like that ppl need to srsly LIGHTEN up <3333 ya,1 +i hope theirs LOTS of cursing in that video... oh wait we cant fucking curse ANYMORE baaaaahhhhh DAM THEM,1 +FUCK YOU!!!!! I'M DIVORCING UR FUCKING ASS!!!!! HMP!!!,1 +paaaaaaaarrrtttyyyy!!!!!!!! wait no... fuck it.... move over I'M MOVING IN!!!! HAHA!,1 +psshhh!! your on the WRONG side of SHUT THE FUCK UP!,1 +that video made me angry & want to PUNCH Shirley Phelps Roeper IN THE FUCKING FACE!!!! MAN I HOPE THEY DIE! SUCH HATE! UNG,1 +did he really???!!!! OH FUCK OK I TAKE BACK ON DAN MARINO IM SORRY!!!! OK I BLAME ROMO AGAIN! AND WHITTEN! i'm through with them!,1 +i SENT it!!!!!!!! u'll prob get it in like a billion years since cingular SUCKS!!!!,1 +guess who made a fucking surprise in my dreams last night you butthead!!! thanks to you Martha Stewert loves my dreams! baaah,1 +Coat Rack Contest in the Fab Lab. I hate winter but this would help channel emotions into something constructive.,1 +Santa Cycle Rampage Ride starts at 10:30 at the Fat Abbey Bier Cafe (Juneau and Water). Bring your best red and white costume.,1 +Are you trying to say the saran wrap bacon fat and rubber bands I currently use don't count as REAL gloves?,1 +nerd!,1 +omfgshz. i hate lemonbars with a DEEP passion too!,1 +Hate to say but John's dad was a major OB/GYN (Yeah nightmare for me ) and he holds out that there are no flu positives:),1 +damn! Putting my chocolate cake to shame.,1 +LOL! Lullabot is my employer. A group of fun nice people kicking major Drupal ass all over the world. :-),1 +gay man,1 + let me know if you want a co-pilot tonight to keep your ass awake!,1 + Josh needs medication. Stat. Can i kick his ass for you now?,1 + lets fucking go tonight... you know you want to! Or at least hang out. I fucking hate being alone sometimes too.,1 +you are welcome to spend the night any time... but next time you steal the covers I'm gonna cunt punt you. Not really. :),1 +just to clarify- not really to the cunt punting... but really to the you being welcome to come over anytime!,1 +I will kick that pirate's ass if he got married again. Just sayin',1 +That it's that rare of a sentence is sorta depressing. Especially in light of @mariannemancusi 's "Loser Cam" Xmas gift to me,1 +i hope singing along- i'd hate to think i'm torturing poor little Pixel!,1 +damn right it should be horrible stuff YUK!,1 +hate to tell you but it only gets worse we're at 1440 in the UK and all my office wants to jump out the window!,1 +so do i! especially rocket. I hate celery though,1 +I saw that. what's his name! In so far as the fat bastard - what?!,1 +Noooo this is not caffeine. This is IT! Let's kick ass and then CELEBRATE! C'MON girlie. We got it goin' ON!,1 +Don't you hate that? I *always* recognize commercial voices and am all like Gene Hackman? Lowe's? Really? OMG!,1 +And by no one I assume you are including me...damn.,1 +My sound is being persnickety so I can't catch up on the vlog until I reboot which I'm too damn lazy to do now. But tomorrow...,1 +I always thought of him as Hermy the wannabe dentist.,1 +Me too. Now I'm dragging my mature ass off to BED! G'night hawt girlie! Woot!,1 +fuck you merten.,1 +you should probably reattach your fucking ass for you have laughed it off.,1 +That sucks - at least I have my iPod. Still least I'm not alone! :D,1 +Hot damn champ right here! Had the old school TT shell helmet on for the whole trip. Backwards even! Huoooooooah!,1 +Piss off. ;),1 +Have you seen Bitch magazine's article about twilight? about "absitence porn" http://is.gd/d2pt,1 +thats what i am saying...they need to pay me.thats m*ttaf*cking free promotion. ungrateful ass people.,1 +heh! ping me if you do come down to gay paris. We can interview eachother on the red carpet :),1 +I'm with you man. Here I am on Twitter at 20 to 6 in the morn damn.,1 +Oh hey that's good! Makes much more sense than what I had floating around in my head. :) (1001 uses for goose fat...),1 +Sony Vegas = fucking amazing! :D,1 +stop stealing my schtick whore!,1 + Depends. Will you sit there and hate yourself? ;) Would you be able to do a half day?,1 +You tell them to Fuck Off. They'll listen,1 +I've noticed he can't spell much beyond NOM and BARK ... sucks for him there's only one K and two Bs in Scrabble.,1 +Neat. Damn PS3. Maybe I can convince mom that dad's ps2 needs an upgrade for Xmas.,1 +That doesn't sound nice at all. As somebody who was made redundant with one day to trade last year with Swatch I know it sucks!,1 +I dunno did you offer me any of that fuck-ton of beer in your fridge on Saturday? NO,1 +You're quite right. I withdraw my aggressive commenting. Fuck-ton should be more widely used.,1 +basically we agreed that you/http://lofistl.com are awesome/bad ass. Not gonna lie i brought you up! ;),1 +I *thought* you'd be preparing! Best of luck - what a bad ass opportunity for you.,1 +gav that just sucks! - u ok? i think the brakes would be best to stay on for now!!,1 +I don't know about that... Drew's ass is pretty tiny. :) Knees work too... except Drew's knees don't work...,1 +Uh... yeah. Joe and I have been wondering what all the fuss was about. Put your ass in it make sure it's tight.. done.,1 +ha ha loser :),1 +I can share my gay boyfriend. He just left. Its 1 in the morning. You totally coulda had him from 9 to 1! Ill keep first shift,1 +i update from my phone a lot you can add twitter as a contact. damn bsa is getting all high tech.,1 + & @karkar I hate Walmart anymore. I'm gonna have to start taking my own cart with spikes and barbed wire. Maybe flamethrowers.,1 +I hate being behind those slow as plows. In a storm it's nice to be on the plowed road but I hate going that slow. Ugh.,1 +or moonlight and dryness. Damn that 5am wakeup.,1 +welcome to my world: you're sick some people think you're funny others hate you nobody wants to suck your cock.,1 +I'm jealous - I get all emo when I lack the season of all natures sleep. :-),1 +Wait if I shut down my phone company who's going to sponsor you in the emo olympics?,1 +there's gonna be a nerd party in utah on new years!,1 +YOU? FAT? R U SERIOUS?!? Remind me to slap U when I c U Saturday mkay?,1 +Hey at leat you got SOMETHING. Know what we get at work as I found out 2day? NADDA! Bah hum bug! Damn scrooges!,1 +damn that was hard - my last attack: gnocchi! If you answer to this you'll win,1 +get out of my fucking brain! I am not yours!,1 +I hate trying to hear over loud music lol,1 +do you get one if someone sticks their boot up your ass?,1 +damn that is shady. Why would they put out a false report?,1 +I do but it sucks at scrabble.,1 +damn won't be going to that.,1 +This guy was that weird solid fat looking type with skinny legs. More funny than scary,1 +here's how to teach you phone to say fuck properly. Don't tell your parents. http://snipurl.com/9iryv,1 +wow r u serious? damn did that period of time skip over you? lol,1 +damn! i knew if i had said nobu that auto-tune would already be hummin,1 +ew u slut get on skype <333333,1 +Same with prospective clients. I'm returning YOUR call dumb ass.,1 +dude no offence you're awesome but currently I think I hate you. :0),1 +Figured tis the season to be fat. For a bit. And then start working properly on weight in the New Year-A is coming to gym with me!,1 +You have no idea how damn tempting that is. I've already procrastinated by drawing roads and zebra crossings ;),1 +whats the operating system on it? i have windows vista and vista sucks bad..it is full of bugs still. shuts down and freezing alot,1 +wow that sucks! well i wish you luck with all that :) i am going to crash so have a good night ok and stay warm.its freezing here,1 +you're gonna get fat!,1 +LOL! not bad for a gangsta bitch...wo pretends to be classy...LOL! I love the holidays. My fav... 2nd to my Bday!,1 +@lauriewrites OMG...Margeaux can reach this octave range that I swear makes me see red! and she knows it. grates my fucking nerves,1 +you can fuck right off about that hoodie thieving comment,1 +point taken. fuck.,1 +grrr I hate that. I have an ex-friend who only gets in touch when they have something great to tell me about themselves... o_0,1 +Oh yeah. That would be a good one. I still think they could kick ass doing "Got to Get You Into My Life.",1 +by a str8 terms technically no penetration means you still have ur vcard but in gay terms she isn't a virgin. sex is sex,1 +whiterabbit819 stFu u ass i care and thats all that matters!,1 +y'all are so fucking classy. miss you!,1 +says "ahaha thankss. my auntie kim always says it grassy ass=] she's amazing.",1 +but you know what i hate ? the comments that are anonymous that i can't figure out who they are.,1 +Fuck yeah. I noticed that too.,1 +Yep it's blocking the absurd hate ur preparing to throw my way in 5....4...3.....2......1,1 +I don't think gay rights groups could force churches into gay marriage just as churches can't force gays to become straight #tcot,1 +yeah apparently anytime you use the word "hate" on a tweet your ass gets retweeted and subsequently followed. Reminds me of ☭.,1 +Bitch! You weren't following me!,1 +Hey don't knock the Port+OJ until you've tried it.As cold remedies go you're still sick but no longer give a damn. ;),1 +Now THAT's an adventure that I will pass on. Oh damn I do have to take a present back. NO!!,1 +I don't use the touchpad(I hate them) I always use a USB mouse. We are a toshiba family.. we have four,1 +Damn Jim idk what to say:/ Sorry man.,1 +ahhh yur a slut for that stache!! damn gurl...tug it once for me too,1 +Totally. The ass end of my Jeep is not but no life forms were impacted.,1 +Bitch I was doing laundry first. haha jk. Or am I?,1 +Mind your own state politics. Joe Smith was a mammal before a prophet. Some mammals are gay and even heterosexuals have anal sex.,1 + I'd like to get a signed copy of 'Running Like a Fat Bastard'. Pleez. Only this will complete my fitness lit collection.,1 +Hopefully I'll be able to get the damn things on- he's ferocious when cornered hungry or just feeling rascally...,1 +The ole Cell Phone Yeller in the Elevator. That sucks.,1 +I love them too. Though I have to say that Sylar is my favorite villian in the show. I love to hate him. Hehe.,1 +Yeah! This blond gay guy came to audition. I almost fell out of my chair when I saw him. He looked identical to chris corner!,1 +- and btw I hate the new Pepsi logo/can. Maybe cause I didn't get one in the mail...ha j/k,1 +I nominate @benmack for a Shorty Award in #business because he is a bad ass who says it likes he means it.,1 +just found the email buried in inbox - count me **IN** i've been on the receiving end of foodbanks growing up. it SUCKS BIGTIME,1 +hate to rub it in but it says 70 on the thermometer here. May have to do my beach walk early today to aviod sprinkles.,1 +did you see Mike Huckabee on Daily Show earlier this week? It got pretty intense with gay marriage topic.,1 +Avocado is my FAVOURITE 'good fat'. Hahaha... I'm afraid I indulged 2day and had my avocado w homemade cheese nachos & black olives.,1 +Mine I seem to fuck it up all the time. I'm off ~30 bucks. I'll leave it that way for 2-3 months and finally put an entry (cont),1 +Fuck you and your snow! Or bring some of it down here? ;),1 +We've maybe had 1" total here across 3-4 different "snows" My first time with snow tires ever and I can't have any damn fun!,1 +man! and you're texting while driving? haha crazy! damn you're lucky. i wish my parents would let me go! 30% chance i'm going,1 +aw that sucks!,1 +oh that sucks! apply for targets/walmarts,1 +haha i don't really like walmart that much either. hmm yeah that sucks :( hope you find one,1 +Hey! Remember me? Lizzy from the David Cook forums. How've you been? (I'm guessing pretty damn awesome right now... =P),1 +Reid I made it! urghhh... I hate shopping. The trauma of it sent me hiding under the covers. Or maybe that was the cold.,1 +Damn you for seeing the season premire over a month ago!!,1 +You don't even know that half trust me sallie mae is the one bitch I wish I could divorce right now,1 +HATE.YOU.SO.MUCH.,1 +I hate you.,1 +Damn straight!,1 +Hey thx! I just hate to have Win XP crash anymore than necessary. That is why I have been so conservative. I'm gonna try Chrome.,1 +I hate when it happens to people that are nice. They don't deserve embarassment of that sort.,1 +ugh you know ro fucking reminded me about red bull. i told her when i wake up my bibingka's gonna be sore. )-: nightmares!!,1 +omg is he like 19? MUAHAHAHAHAAHAHAHAHAHAHAHAHAAHA you're such a fucking cradle snatcher bb.,1 +faka... update your twitter you fucking homo sapien.,1 +we r so fucking on for real. I might leave after Josh but i can't wait! >_<,1 +dropped off some old 3.5" floppies. A System Disk and Mac Paint. Retro Mac crap kicks ass! - Photo: http://bkite.com/02RHw,1 +I mean you hate it but you bought it doesn't that speak for itself,1 +Could be some accounts getting removed after suspicious behavior. Damn spammers...,1 +Damn what the hell is the deal with the Drama Queens coming out of the woodwork lately?,1 +There was a MAD ABOUT YOU/ DICK VAN DYKE crossover about a decade ago. Carl Reiner reprised his role as Alan Brady.,1 +wait until you have a final cut on your documentary before the sex change. You don't want to fuck up continuity.,1 +freak yeah i do,1 +Yea its got a heatsink bigger than a server lol. Its a great machine. I am loving it except for the leg is bent. DAMN COURIERS GRR,1 +sure I could use a lil snow here. The people would freak out here. LOL,1 +im sad there's only 15 more minutes left! i hate how it shows only once a week lol,1 +dude.. I just think the twinke or whateva you call it... It damn cool.. LOL,1 +SWEEET you've just become cooler in my book or as someone said earlier today.. kick ass... so 80's :),1 +Amen. Thrilled to see Brad Sucks on Rock Band 2. Congrats man I hope you get some of those 80 MS Points. @bradsucks FTW!,1 +happy for you sucks for me! this should have been SNOW!,1 +immortal? invincible privileged all-powerful above-da-law I-am-da-law da ends justify da means I don't give a fuck I'm IT...,1 +i hate how it never snows there... and you live IN CANADA! do you want some of ours? I hate snow.,1 +i was afraid people would think i meant actual buckeyes! i hate peanut butter but when its w/chocolate its ok lol yummm,1 +what the? how the? damn it,1 +do you under stand how much i give a fuck?,1 +you can take the girl out of the hood but you can't take the hood out of the girl. Detroit didn't make me a pussy that's forsure,1 +im horny god damn porn fuck eon now I need real cock. where's ashley!,1 +I would only fuck you if I was drunk... lulz.,1 +bitch better share this vivid alt shit isnt doing anything for my vagina and its moistness. fuck.... EON I WANT TOSEECOPULATION,1 +you cock juggling thundercunt!!!! I have the best childish insults ever.,1 +Yes! All of those twitters were directed at Frank Miller and his horrible screen play! DAMN YOU FRANK MILLER ILL KEEL YOU!,1 +ZOMGZ Fontfeed! I am such a Font Freak®. I used to have 5000 fonts on my puter. The poor thing nearly choked to death on them.,1 +..........I hate SUVs. They're a great big ugly road hazard as far as I'm concerned. And very few people really NEED them.,1 +your first time? you'll soon be sick of the damn thing...,1 +damn australians!,1 +Oh that sucks. Why I blew off my own appointment yesterday. I just couldn't face the wait.,1 +At the C's before I hit the hay. Still hate Boston?,1 +yeah it really sucks I need to manage my time better I guess or maybe I should party haha. Oh well. C'est la vie I guess.,1 +slap a bitch? What you want to do is CHOKE A BITCH like Wayne Brady!,1 +I got fuck all for Christmas babe. How about you?,1 +--well...i had to pee...and my stupid ass lifted the seat with the same hand i was holdin the phone in...then...PLOOP!!!,1 +damn straight! I say you me and danie have an epic rap party over break since we'll all be off. Yes?,1 +haha someone told me katie (?) was a bitch so I was like ehh. Death cab & JACKS MANNEQUIN FGHSDJ <3 hehe,1 +Your John Mayer = My Jacks Mannequin. Andrew McMahon is my LIFE SUPPORT. Not to sound emo or anything ahaha,1 +LIKE BITCH WUSSUP! Ahahaha,1 +I just needed an axcuse to share it. I hate oatmeal actually.,1 + Damn woman you don't know your own strength. LOL,1 +I don't always agree with you... but I do this time! Slow the hell down and stop getting so emo about it.,1 +no she didnt yet. maybe she does hate us now. *sad day*,1 +lol... I have ass too..,1 +he hasnt scored 82 but he's taken a team to the finals damn near by himself,1 +that's what you fucking get for that fucking video!,1 +ass.,1 +That show sucks. It always scares you. And Boo Danny. He is a fail!,1 +yes & i cant fucking wait! I can hardly bring myself to review - i must but dont want to.,1 +fuck no _ I'll be out there by myself. That's my ALONE time. Meditate if you will. Me the pipe & the stars rflecting & thnkng,1 + I couldn't agree more. And if I didn't feel like such a loser I would say I win for understanding!,1 +Damn those Mythbuster guys! Anyone who works or lives in Alameda must be crazy anyway!,1 +lmao i hate you. <3,1 +i hate you! i want to be in bed :(,1 +i bitch slapped my cousin once.,1 +.....I.Hate.Him. He's.... UGGG!,1 +oh i am fine. But she will not be if she doesn't shut her fat fucking mouth.,1 +violent ass...,1 +fuckery is always welcomed..only second to hate. Speaking of which...I haven't told you how much I hate you lately,1 +a fat boy sweet talker?,1 +Why do you kombat when I have to leave the computer!! DAMN YOU!!!,1 +I wanna get him a ring that means "ur a great kid to fuck",1 +haven't the Palestinians suffered enough without having to deal with that fat fool......heh,1 +AHHH I HATE THAT..,1 +lol you'd go gay for Zac Efron,1 +"""If they would have cremated that son bitch I'd be tale grabbing his ass right now""",1 +So you are right... reciprocity is a bitch (Just not in the way that Lauren Hill meant it),1 +Grammar nerd.,1 +There's a dfference? Damn.,1 +mark Ya! Dick head old man!,1 +i hate people who update their fb status more than once a day unless absolutely necessary...tweets-thats what they're for!,1 +damn.,1 +So people are just ignoring me. :-( That sucks big time. LOL. Especially when I thought we were better than that. I see...I see..,1 +Damn you to hell for getting my hopes up. I though you were talking about Daley.,1 +LMAO. I was very confused. What a bitch she is.,1 +I never said anything about lovin ya dick cheese just that I say your name alot probable with fuck in there somewhere,1 +not on your life dick-tongue,1 +crutches suck big time. i hate them lol. hope you get better soon! :P,1 +esp. if someone is working for an employer supportive of gay rights seems wrong for someone to then not show up to work.,1 +regarding you and your tea obsession you have become SO GAY break out the Thermite man!!!!! Shape up,1 +the only show more thug is the nigga who be in the woods eating beetles and drinking his piss! that niggas GANGSTA!,1 + :-) My line in the sand: watching shows on my computer screen. HATE it. w/42 inch plasma & groovy sound you can never go back.,1 +what a fucking bitch.,1 +As opposed to a non fucking fuck?,1 +attention whore.,1 +/emo damn you.,1 +Dick Clark looked sloshed last night? I was thinking animatronic.,1 +This bad gay works for a company that likes to write people up for sneezing.,1 +Fat Tire. Steak Taquitos. RocketTransfer.com. AJ's on Court in DSM.,1 +losing winter insulation is one of the horrific side effects of Biggest Loser that nobody warns you about. It's brutal!,1 +I hate "Rag and Bone" so much.,1 +emo-hair+hip hop-fitted hat,1 +I would not be proud of that. That just means you're a whore or a polygamist.,1 +if he's upset with Brandyn's work area I'd hate to see wha he thinks of mine :P,1 +Whoa. Marc Blucas' new hair is a fucking crime against humanity. The horror. From loveable goof to douchebag instantly.,1 +Unfortunately I can't take credit for that blog-- I found it while surfing the 'net at 4am and laughed my ass off!,1 +P.S. "Fuckitty fuck fuck" is def. worse to say in a Holy Place. Especially if you're Catholic.,1 +also let him know his Irish accent sucks in some of the podcasts,1 +I hate .... you .... zzzzzzzz,1 +Hey... Stop twitting and post a damn blog!,1 +http://twitpic.com/qtt0 - O.O bingo is waaaaay to hard for me. hate it. i wanna fuck it..wait thats didnt come out right,1 +xD! i know. hmm ....i wonder how it feels like to fuck bingo hard .....hmmmm i guss i'll never know D':,1 +oh youuuu little bitch. Just keep your winter gloves away from your zipper and i'm sure you'll be fine.,1 +not to sound amazingly astoundingly gay (not that that's bad) but you sound like a man in desperate need of a few pillow shams,1 +as much as i hate auto-DM's i also check out links if they're music related.,1 +I'm blocking you because you have no value. Go back to telemarketing or some other loser marketing scheme.,1 +If only Edward and Bella were slightly less emo :),1 +@scanman and @asthepumpturns. Yeah I am a mean mean person. Horribly judgemental towards one specific victim. Poor guy. Retard.,1 +damn it.,1 +NO. You're in BATH. You worked your ASS off for this. You're coming home to GREAT THINGS. Have FUN FUN FUN. NOW.,1 +your mother's a bitch.,1 +that sucks for your teacher. poor guy. isn't your class full of adults? do they act mature like adults are supposed to?,1 +fuck yeah!!! That is so far above just not failing!!,1 +FUCK.,1 +fuck yeah!!,1 +well it is gay hippie stoner music,1 +aw man that sucks!,1 +Oh no! Everyone ok? Damn you rain! Ruining my BFFOT's day!!!,1 +WHO CARES I HATE THEM! FTW! Knitting and crocheting before bed <3,1 +damn.,1 +*sigh* oh Karrine. You said the phrase "Sluts with Butts" on a site called MomLogic.com. You fuck'n rule! :) LMAO,1 +Rockets... damn. makes me wanna turn ne-yo's gay ass off my tv and just sit here.,1 +wow that really sucks. LOL.,1 +that sucks I know he was looking forward to that hook up...,1 +fuck yeah. swing by sometime (after the 17th) and i'll take you to rocco's. yeah think about that.,1 +i hate her in every movie. she has one look. you know the look haha,1 +Read your post "Sincerity Sucks." Thank you! I feel less guilty for holding certain "sincere" people accountable for actions,1 +Maybe they're looking for Carl!!! That damn Carl.,1 +Fat Baby drinkinggg and listening to Duffy's band,1 +p.s. i hate you :),1 +I should brush my bangs over my eyes and join you in emo grief.,1 +It sucks :(,1 +yeah I hate this bitch and I'm glad the chief killed that other dude!,1 +@Heylin1234 oooh shit i forgot what i was gonna tell y'all -_O UMMM oopsie...ugh i hate my short term memory,1 +With the departure of the Sonics I've adopted them as my squad. I still fuck w/ CP3 and the Hornets but I gotta go Pacific NW.,1 +Damn straight.,1 +Have you seen his ugly ass? he IS the phantom. Women wouldnt sleep with him if he didn't woo us with melodies and faux-mance,1 +DAMN HO You sick as FUCK!!!,1 +Jesus fucking h Christ!!!!,1 +fuck you change your name. Do you know who I am? (yeah neither does my mom.),1 +to be specific he didnt choke her (right?) he bit her on the back while banging her in the ass. (just to be clear)... :),1 +still got that ass whooped haha.,1 +go cowboys!!!! Yup I said it. Two tears in a bucket.. Fuck it lol,1 +go fuck yourself.,1 +cause i just need to get my mind away from all the bullshit out here..im bousta say fuck doin music...just promote others...,1 +i mean damn don can you get back to ya own brother?!?!?,1 +dick van dyke is way cooler too.,1 +You kidding I bloody hate anime and I liked Bleach.,1 +Not necessarily while I do not agree with hitlers actions he was a damn good general and got germany out of a depression that,1 +I'll love him in the biblical sense just as soon as they chop his emo hair off.,1 +u whore...,1 +Quit the gay ex and you wouldt sleep so much,1 +fuck you man I'm a vegetarian today! That just makes it harder.,1 +HAHAHA. tom cruise "I WILL FUCK YOU UP",1 +That album is the fucking shit.,1 +yes? Yes? Fucking YES?,1 +@folub i'm hammered and want you both at Hot Damn.,1 +Y'know it's very stereotyped emo.. I know plenty of older people who follow the trend / cult the whole way.,1 +DION WHAT THE FUCK YOU SAYIN? LOL.,1 +: Dude you're gonna hate me! Here... more T-shirts for da T-shirt lovers : - http://snurl.com/8fhdw : ),1 +- damn you and your constant banoffee pie mentions!! Very tempting LOL,1 +Fucking pallys. I learned to hate them playing Warcraft III. And fuck rogues too while we're at it.,1 +Hell yeah! With their invisible sneaking nonsense. I almost want to play as one some time to fuck with people though.,1 +I was belting out songs from "Fiddler On The Roof" and "Rocky Horror Picture Show". I might have been a gay Jewish man?,1 +evilbeet do u not feel that when u watch jon & kate plus 8 its fucking "in ur face" and purely advertisements?,1 +jia..that is dead ass wrong,1 +I should round house kick ur al qaeda lookin ass in the face with my flip flops!,1 +ok! where is it then? send that bitch to me!! haha!,1 +I freakin hate that! For me it's "Hi Rose" Rose is my last name you idiot! LOL,1 +your ass needs to be in NYC for that shit!,1 +Please do...anything from you my sexy bitch!,1 +so i said listen cunt.. i hope your year brings prosperity and happiness. and then i got my gun and blew her brains out.,1 +http://twitpic.com/t47m - Srsly I hate it.,1 +Turns out I hate shopping too. Way too many sounds and smells. I just want to pee on everything.,1 +Just had a big ass waffle breakfast and am catching up on games from 08,1 +I DARE DAT ASS 2 SAY SUMTHAN ELSE STUPID U DA STUPID BITCH!,1 +FUCK NO I AINT PARTYN LIK DAT JAYLA U STUPID,1 +JAYLA U TOK DAT DA WRN WAY MEANIN U WEAR PANTIES ASS ITS NOTHN SEXULA SO DNT BE THANKN DAT,1 +N HOW BOT BARBARA GOT ANGIE ASS GUH ME N TELA WAS LAUGHN 2 DAM HARD,1 +Judge Chevere at the Daley Center..she's hispanic and a bad ass! Too bad i'd never want to go to law school..,1 + you'll get through it and win in the end. FUCK THAT SHIT IN THE FACE (as ange sez)!,1 +you're a bitch.,1 +sucks to be you,1 +I hate you so much.,1 +and the beamer was underwhelming. had all kinds of issues with the on-board computer. nothing major. just enought to piss me off,1 +He's an asshole. I'd fucking bean him for love of the game. Not starring Kevin Costner.,1 +Damn dude...,1 +WOW YOUR A BAD ASS... HAHA,1 +Yeah and T-Mobile Germany offers unlimited Worldwide calling to other T-Mobile phones. USA only offers Nationwide. Sucks.,1 +Scars on my face? Are you threatening me? I don't like liars threats nor unexplained coincidences. Kindly fuck off!,1 +DAMN IT EDDIE!,1 +can u be a lamb & add a *gay* category to ur awards so I can nominate myself & others,1 +yes...and they are about to be fucking DISOWNED. *grumble*,1 +Well fuck yeah!!!! how about allston? @xdeartragedyo imma try the one in jersey @evry1 I got my 2day bamboozle tics today,1 +uh uh u fucking bitch. haha dont take any coats skinny jeans slippers gloves bomber hats or scarves.,1 +we gonna make bklyn see what's up! Hell fucking yeah!,1 +Savor my ass. ;-p,1 +I'll be a crab ass with you. BAH HUMBUG!,1 +damn damn damn James....,1 +ok I don't care what @cyandle says about being PC bc that is SO queer. And ftr my gay friends would say something worse! ;),1 +yes yes so gay.,1 +SON OF A .... bitch! hahahahahahaha,1 +i hate you.... you know why,1 +u lucky whore!!!!!,1 +A BAMF is a bad-ass mother f*cker.,1 +Fuck that! I feel awful for you having to wait out there!,1 +damn i hate Ed Hardy,1 +pig(s) !!! Wow - always thought you had plenty of space but how many did you eat ?,1 +was just joking...hate people who act that way,1 +I do but I picture the fat guy in the leotard,1 +damn that sucks,1 +damn right,1 +ur a huge loser did u know that? lol,1 +i hate sewing. Period.,1 +don't worry karma is a one mean ass bitch. They'll get what's coming to them...,1 +retard?,1 +haha no gay stuff is good! cuz i tend to be attracted to females! haha jus chillen getting ready for work!,1 +i hate u like miniature dogs hate people dressing them in t-shirts and little booties.,1 +fuck u BIATCH!!!,1 +I hate you.,1 +fuck off,1 +That was fucking hilarious... WIN,1 +omg that fat dude should not be in leotards idk they made them that big lmao,1 +damn u i wanted to see sexy lesbian porn lmao,1 +@TitanLineAudio lol BJ's blow ass :P,1 +Damn! This is deadly - keep em coming! :P,1 +check it on your wii whore.,1 +No....Always been happy....never quite gay...,1 +get them all out of the dome ....NOW damn it...,1 +You'd be television slut.,1 +I HATE that!,1 +GO GIVE YOUR GAY LADYBOY HUSBAND AN OILY BODY MASSAGE WHY DON'T YOU. AND @yourscenesucks yes its true.,1 +OMFG I HATE YOU IWANNA GO ON NEOPETS :'( WTFFFF. YOU HAVE EVERYTHING I WANT.,1 +hate you so much,1 +lmfao! See this why I can't fuck w u! U kno I'm dead offa that Al B Shep!....,1 +LIKE HOW U SAY WHAT THE FUCK AND CLEAN IT UP WITH HECK LOL,1 +Thai sucks too many peanuts,1 +Wow! That sucks.,1 +it was in reference to his gay suit,1 +I hate them. So much.,1 +i am just so behind now . . it sucks.,1 +Oh damn. Saw the trailer for Dark City… Looks gooood…,1 +I'm sick of Tinkerbell. that bitch is making my movie life hell.,1 +That really sucks. :(,1 +every one laugh at the sad gay clown,1 +fuck you man. you can pick on garden state but leave pushing daisies alone.,1 +I hear you can cook your ASS off!!! =),1 +damn your fat you even got a turkey as your profile pic for good measure....,1 +Tommy blows cock! lol,1 +ah damn ok,1 +Pah. Loser. ;) Haahaha. Well done fella. Very interested to chat to you about it sometime!,1 +i didnt call in gay either. but my company donated 100 g's to support No on prop 8. ::shrug:: squaresies i guess.,1 +I hate Juno. That movie blows!,1 +I don't care about his fucking kids.....I want JP's kids head on a plate.,1 +fucking jp losman,1 +Fuck you and your family.,1 +damn.,1 +@TheSoXRoXmAsTer aw shucks you guys...are gay.,1 +Ugh. That truly sucks :(,1 +A COMMUNIST FUCKING DICTATORSHIP! Fuck Che Guevara. And all the t-shirts with him on them and those that wear them.,1 +You won't miss much. Her husband is cheating she's pregnant he's an ax murderer her son is gay. That's pretty much the soaps,1 +ah shit that sucks!,1 +antlers. nah fuck that. they look stupid and extend the paradigm of happiness seasons fucking greetings etc etc,1 +that does sound gay. I never had that in year 12. And thanks!,1 +yea dani thats kind of gay sorry to tel u lol,1 +band nerd alert!! Lol,1 +LMFAOOOOO. and he looks emo now? i'd believe it.,1 +oh. yeah. no loving for nikki. poor nikki. she's too emo.,1 +ITS GROSS. AND NOT NEEDED. I HATE IT! LMFAOOO.,1 +FUCK AT&T!,1 +damn yo I did!,1 +Dick through brains,1 +then eat ass! Don't eat ass though just eat...you ass,1 +lol ur whale penis,1 +I know there's a bottle of bourbon in that house. Hit that shit! Tap dat ass!,1 +That is bad ass.,1 +nerd!,1 +DAMN.,1 +Ouch. That sucks!!,1 +good! i hate digg...it's way too gamed,1 +Hmm...gay marriage is a subset of gay rights but they are not different animals entirely.,1 +ouch that sucks..,1 +i saw you had this thing so i made one too. loser i know ha,1 +thanks. i know i hate it to but it also makes me happy to see ppl that care. you made me smile so good job :D,1 +sigh.. I can telw you because altho you'll laugh at me at least you won't think I'm a freak or tell anyone.,1 +dawns a Fucking twat and @occultclassic that is the best song on the album,1 +damn yeah,1 +why do you eat so much you fat bastard,1 +lol. I know she's a mess. But ya ass was not getting up.,1 +Then I would be gay and I would kill myself. Don't become a boy please.,1 +yeah those darn gay alarms at CVS.....,1 +yeah im pissed. liek my body is tired but my brain isnt or is it the other way around? fuck idk anymore,1 +Yea that is some BS! I HATE MESS LIKE THAT!,1 +OMG you fucking got them didnt you?!?!?! I'm so jealous!!!!,1 +oh yeah! Radios powered by pork fat!,1 +Go back to your pork fat radio!,1 +was it the Nigella coca cola ham? that pig rocks!,1 +Fuck that shit. I told people... "DON'T MAKE THAT ACCOUNT!" and someone had to do it. Fuck that shit.,1 +hey fuck you <3,1 +that song is so emo to me,1 +ikr? It's so fucking gross. GET ONLINE AND SAVE YOURSELF FROM THE 'TARDFULNESS.,1 +the punk ass pistons?,1 +ur smater than me then. last year i was out on nye sick as fuck. came home with pneumonia,1 +FUCK YEA! THX! Id like to thank all my influences from my grandma (rip) to Sam L. id also like to thank myself for being great!,1 +LMAO!! Hot sauce indeed! but sheeeeit. you can take a picture of @shaydechelle wrapped in ME! fuck the dumb lol,1 +yeah and its really cute that i filmed two weddings that need to be edited and I CANT because my uncle sucks hard.,1 +ARGH! I hate that too!,1 +gah! Damn you spoilers! I'm only on season threeeeee!,1 +Oh man...that sucks!,1 +whooo. did you have to choke a bitch?,1 +i hate u! Jk.. But u can keep it.,1 +she took $60 from me $50 from my sis 2 separate nights. She says her stuff was jacked too. Don't buy it. Betrayal sucks.,1 +You're still alive? Well damn I just lost a bet.,1 +way to not text me back DICK. :P,1 +fuck yeah they do!,1 +holy fuck.,1 +i got the whale too. :(,1 +damn.. maybe ur next twitmance will be whole ass..,1 +sucks 2 b washed up.. gangstas paradise was the shit,1 +aw dammit I meant to call @graemem a lame-duck Scotsman. Thanks for fixing my lame-ass miss of a joke!,1 +@hermanos @jamessime wow I totally know that fine line between love and hate! #dead_by_january_i_didnt_sign_up_for_this_shit,1 +I never watch those show or even read the lists because they invariably piss me off.,1 +he's a retard. shouldnt he be old enough to know to not be so damn nosy and butt in on peoples relationship.,1 +Just keep your head up...you kick so much ass...,1 +I didn't call her fat at all! Keep your fucking nose out of other peoples business!,1 +oooooooohhhhhhh sh*t! Damn where all the white women at! Come on! Hahaha (so is that why celebs "crossover" when they make it),1 +ah damn.,1 +I hate those fucking hash tags.,1 +some loser had already. He did Daniel by elton john,1 +A pussy on my cock on my pussy if you wanna take it further. ;),1 +I've been called a pig if that helps. Recently even,1 +damn you.,1 +Hahaha! Well take care then. We would hate to lose you to your homeland anyways. Come back safe!,1 +and you're a smug cunt so it must be true!,1 +fuck yo moustache you young ass nigga. Step yo beard game up,1 +I might get in a snowball fight out this bitch!,1 +what if it could be all 3 that would stink on 2 levels but I bet it is a fat bonus or ur picking up his backyard,1 +newegg.com.... once u know u new egg.... can get a 500 gig for fucking 30 bucks on there,1 +a semicolon sounds like some sort of gay sex act gone wrong,1 +I hate it when you get "blue" teeth. LOL,1 +hour meetings foe a job you're failing at because you hate it your bentley that you don't even drive cuz gas is so expensive in,1 + Damn :(,1 +...fuck jared leto. i forgot it was his bday. 25th HIS BIRTH 26th MY BIRTH ECHELON THROUGH THE BACK DOOOOR.,1 + damn 'reply' button ... -.-,1 +agreed. UGO sucks ass,1 +it's the damn music ugh terrible!,1 +Also you are not Canadian fuck.,1 +yeah... it sucks...,1 +i hate those DIY post office things here in #ALB. no matter what the lines are still insane.,1 +rogue. I hate you and your ability to spell correctly. though some of them were red but they were communist. not rouge.,1 +I hate chris,1 +u know what................. ima put jourdan on your ass.,1 +omg that so fucking sucks,1 +fuck. :( <3,1 +this sucks ass!,1 +fuck yo couch! In yo face!,1 +FIRE HIM!!!!!! lol lame ass mofo....,1 +get your ass here !!!,1 +Nuno Bettencourt ftw. Damn!,1 +Fat ass!,1 +and most of them are ugly and fat..lol,1 +i couldnt agree more. HATE sandra lee!,1 +i'm ok now darlin :) i just hate my body sometimes. it hurts me when it's most inconvenient. i'll be ok... :) thank youuu,1 +http://twitpic.com/taap - fat.,1 +http://twitpic.com/v2mo - lol.. hate u both..,1 +http://twitpic.com/vhtp - LOOOOOOL HATE!!!!!!,1 +awwwwz poor little emo girl,1 +Damn skippy.,1 +that sucks. People are stupid.,1 +hate you both!!,1 +hate u,1 +Injections don't work in Vista? I tried in XP didn't work there either crazy bug or something :(. Damn you C++ Win32 API!,1 +it is not only terrible... it really sucks.,1 +AND DAMN I JUST LOST /AGAIN/.,1 +dude that sucks!,1 +if anyone's a loser it's YOU.,1 +lol whore bath...funny.,1 +Fat Boys have a new song?!,1 +A gay couple getting married in NYC isn't going to change anyone's idea about marriage. Divorce has redefined marriage.,1 +Heores Season 2 sucked! Full of emo shit!,1 +I LOVE Pocoyo!...because I'm a freak!,1 +i hate you.,1 +i didn't laugh fag.,1 +Pretty sure it's CO2 and H2O produces sugar but damn that was a long time ago,1 +Well that sucks.,1 +lmfao! bad ass!,1 +wow. your dad looks like a total bad ass!,1 +You coming to work today E? I know it's Gay Day and all. I wasn't sure if you were gay or just running late.,1 +Damn if TJ doesn't like your music it must really suck. This guy will cosign anything,1 +old ass nigga!,1 +they stole my slogan!!! I hate them for that!,1 +That happens here in MD too. People totally freak!,1 +bitch... lol jk,1 +why would i accuse you im SUPER FUCKING JESLOUS OF YOU,1 +kiss my icecubes formerly known as my ass cheeks.,1 +that sucks balls!,1 +I hate that too!!,1 +NERD!,1 +YOU KNOW IT BITCH. :D,1 +No God no. Fuck no. Fucking fuck god no.,1 +Gypsy bitch!!!!!,1 +LMAO!! I seen that that dude was mad angry... then got his ass beat,1 +fuck you shane lol,1 +oooh that sucks. ibuprofin,1 +enak aja! nick carter ga gay!!,1 +ohlala dago ktny tmpt nongkrong gay :D,1 +@BikerSwag damn! No kidding!,1 +Man fuck Alton-Darby.,1 +Sigh. Fuck 4chan.,1 +haha I always say that! Girl or not I too can rock out with my cock out! Hah,1 +I hate em..,1 +He's so fucking annoying. I would just tell him fuck off and it's his fault he has an unverified address >:/,1 +yeah and I am the man in the relationship @kRockXP your my bitch.,1 +D:! That's horrible ;__; This sucks.,1 +fuck off dude don't waste my time damn spam users again ...,1 +fuck off dude don't waste my time...,1 +you own a gun? remind me not to piss you off anymore.,1 +FUCK FUCK FUCK FUCK BIIAAAATCH!,1 +damn straight :),1 +damn you hater! lol,1 +OMG your so MEAN .. really really mean +_+ i hate you .. hifftt,1 +cunt? Whore?? Lololol,1 +fuck u and ur fucking break =/,1 +wow that sucks.,1 +LIES! I HATE HIM!,1 +damn straight,1 +I hate you so much you stupid New York... douche. bagel.,1 +I wish I could punch you square in the face. that's how much I hate you right now.,1 +you are a twitter/last.fm whore! :P,1 +Doh! That sucks!,1 +i hate you for both those statements. lol,1 +fuck up foo.,1 +i REALLY hate you,1 +ur gay? me. u. mall. shopping!,1 +God damn it Louis!,1 +Nerd alert!,1 +SHUT THE FUCK UP! What?! Why does Micky Rouke have ur #?,1 +Freak.,1 +VTU SUCKS >.<,1 +8 fucking am.,1 +HOLY FUCK! GIRL YOU CANT DO STUFF LIKE THAT!,1 +i hate pret,1 +That sucks!,1 +jealousy makes me hate you now hahaha,1 +And I HATE gangsters >.>,1 +haha no I'm just trying to fuck with him,1 +i hate u,1 +i hate u. looooooool,1 +Lolol well i hate u. K thx <3,1 +I will super hero my ass out there and blow the tire up myself!!!,1 +that sucks big time.,1 +damn!! *goes off to call God*,1 +FOR REAL!!!! I NEED TO JUST STOP!!!! REALLY!!!! FUCK!!!!!,1 +gotta hate that shit,1 +So you were a geek and gay at a very young age ;),1 +You fucking rock =),1 +yeah it sucks :(,1 +Thats so fucking stupid for you to say,1 +That sucks:),1 +God damn. That's some stocking up.,1 +damn girl. that was fire!,1 +makes even gay men question their sexuality.,1 +OMG where? that sucks!!,1 +lawl @ fat bitchez.,1 +you're a fat bitch? I think you just called yourself one. Lmao... Well if you wanna out yourself in that category... Ha ha,1 +fuck yeah,1 +Eat twat you twitter whore.,1 +That sucks ...,1 +what happens when someone tells u gators suck ass lmao. U pull a gun or stab them to death???,1 +god damn you.,1 +nerd. :),1 +aw that sucks.,1 +I don't wanna sound gay or nuthin' but that sir... is an arousing pic.,1 +lady i wanna fuck your tumblr.,1 +that sucks!,1 +FUCKING ELLAS A RETARDED CUNT ALOT OF PEOPLE COULD DO A BETETER JOB THEN HERE SHES RACIST AGAINST BLACKS,1 +MOD_ELLA IS A FUCKING CUNT,1 +haha ugh this sucks :(,1 +ass get out its ur last day damn it!,1 +awe how gay :P,1 +oh no...he grew out of it (after a few ass whippings)....he just steals girls hearts now (he's 20). But yea he was a baby klepto,1 +damn that sux,1 +he's gay like u lmao. And the rest of the guys are alergic to fruits. *wink* lmao.,1 +U stupid bitch. I said Its in my car u always at work or chillin with then regis niggas. Don't piss me off.,1 +hey man! You =gay! Lol jk,1 +your a pale whore..,1 +after I kept getting caught I just said fuck it lifes too short and I wanna sing off key fools!,1 +you damn betcha,1 +ass.,1 +hot ass mess!!!! hahahaha,1 +omg! that really sucks! anything serious?,1 +@nightmaremyles fuck yes to both of you. <3,1 +dude. she's fugly. i think ur a desperate ass cam perv.,1 +hahah ass :P hehe,1 +BITCH...you got a working Zune and I don't like it! Yea you got one...BUT IT AINT ENUFF!,1 +closing now. some gay xmas thing,1 +Wow! That sucks.,1 +I hate FCC they are evil,1 +fuck you,1 +damn straight,1 +I'm late to the emo-ball.. I'm not even dressed. WHY un-follow you? What did you do now (pft- can't take him anywhere...),1 +i will but now the only problem is im realllyyyy not looking forward to seeing some gay show,1 +wash yo' ass!,1 +that sucks!,1 + you came up with angry gay guy...,1 + twitter whore!,1 +is officially too gay to function!,1 +... this is so post gay it hurts .... NSFW! http://tinyurl.com/6d9ew5,1 +I hate you,1 +hell yeah fucking losers lol,1 +Fuck yeah,1 +na just a bitch of a teacher!!!!,1 +it is. Hate that LOL,1 +aww I knoow I hate that! :-P,1 +you're so gay. I hate lonestar.,1 +shits gay!,1 +fuck you Devi. slit em'!,1 +well just go to the local whore house!,1 +no way. they REALLY hate you don't they?!,1 +@ryanruppe damn you...,1 +fat guys are immoral there should be a proposition to keep them from marrying VOTE YES,1 +you're a nerd fail,1 +fucking ayeeeeee,1 +SHUT THE FUCK UP BEFORE I PUT A HAMSTER UP YOUR ASS!!,1 +YOUR MOM SUCKS ASS. Don't be such a douche. It's obviously not done. I'll add the fucking parm when the noodles are done.,1 +I hate you so hard right now.,1 +http://twitpic.com/vme7 - that sucks!,1 +we talked four days ago!!!! emo cowboy fan :),1 +Especially the gay cowboys. Ha ha.,1 +i BET YOU WERE SILLY ASS! lol,1 +You're such a nerd. lol,1 +I hate you and your steelers.,1 +fuck betty she killed me...,1 +fuck yo life nigga,1 +@farwyde Cock your gun.,1 +@design_doll Cock and bull,1 +I hate them. I eat them for dessert. I will keep following you. I believe in your cause,1 +"""marinates penis"". That's gay dude.",1 +Male Chauvinist Pig. :P,1 +wow! You're a real cunt!,1 +OMG that is a total bitch! Those jerks play that game here too except they write big fine$ with the confiscations!,1 +His ass needs to be put on blast so now his wife can see wtf he's doing.,1 +payment schedule...been there...sucks ass,1 +fuck em then! heh,1 +That sucks.,1 +That sounds like Charter. I hate Charter.,1 +YOUR INSANE BABBLE HAVE YOU LOST YO DAMN MIND?,1 +You know all about some interpretive gay dancing.,1 +hate you...,1 +hahahhaha I hate that!,1 +fuck you.,1 +fuck you haha,1 +whatever about the Gay Byrne voiceover shame on Eason's for running Christmas ads in early November!..,1 +Son of a bitch!,1 +Drupal sucks.,1 +Rooster is my bitch!,1 +Rooster is LARRY'S bitch!,1 +oh man that sucks!! LOL,1 +That really sucks.,1 +that sucks.,1 +ha! Go fuck a chickhen!,1 +fat bastard,1 +gay + high on crack + Razor sharp vagina? sounds like @andymn to me,1 +you mean we chatted about how I wish I were a gay man??,1 +faa lalala gay apparel daa da da daaa yuletide carol la la lala laaaa....,1 +Ok is it gay day today? or are those some cute azn girl socks u sexed,1 +Fuck yea it's the bomb,1 +WTF emo ass lookin bitch >< *sigh*,1 +suck my cock bitch. i am allowed to be scared of whatever i want. *z snap*,1 +Fuck.,1 +YOU ARE FUCKING BR00T4L,1 +ewww hate it hate it hate it!,1 +I hate it SO SO SO MUCH.,1 +hate. you.,1 +Son. Of. A. Bitch. :-p,1 +fuck you,1 +I hate it too.,1 +ha! sucks for u!!,1 +oh wow that really sucks. :/,1 +i hate you,1 +Oh that sucks!,1 +aww that sucks :/,1 +That's gay. Poor MCR.,1 +everything but you. Everything but you sucks.,1 +That sucks dude!,1 +Oh my fucking ~*gawd. *eye roll*,1 +aww that soo sucks D:,1 +GA has finally let out is inner ass and now everyone hates him :D,1 +Fuck you,1 +emo!lol j/k,1 +Damn girl ... Your house was dirty.,1 +I noticed that and you are not a bitch. The other thing that she also doesn't have is class.,1 +damn kenny u need emotional condoms and shit son.,1 +Kick ass!,1 +ha! my ass be bowling lol,1 +to get fat?,1 +i would hate that too. :(,1 +i hate you all,1 +/nerd *laugh*,1 +Ah. Gay!,1 +I hate you so much I just want to smash your face.,1 +Yes you are a loser... I could have told you that a long time ago...,1 +. . . HE'S FUCKING HIMSELF!,1 + Do you lick dick?,1 + On a 1 to 10 how mad would you be at me if I were to rape you?,1 + dudde ima fuuck you til you bleed:),1 + haha keep saying shit ill kill you,1 + Tabi isn&;t fake in anyways so go suck a fat one. SERIOUSLY. I will beat your ass. I love you Tabi<3 ((:,1 + Your picture looks shopped...,1 + Hey suck it hoe.,1 + im better tthan youu :),1 + i dont givafuck. ur friendless previously stated in one of my other comments. except for firey bitch,1 + Your face is such a mess why don&;t you get your dog something different to chew on?,1 + stop acting like you know everything. your fat. get over yourself you mouthy slag :L and no your not better then everyone else! (:,1 + Learn how to spell? Learn how to tell apart a typo from a spelling error. And learn how to be a proper fake.,1 + your mad ugly. true talk.,1 + Your so fucking immature I&;m sorry you have no friends so you have to be rude to everyone,1 + Answer your questions biatchh!! :L,1 + u2584u2588u2580 u2588u2584 u2588u2584u2588 u2580u2588u2580,1 + r u retarded ? :P jking,1 + Just admit ur a lesbian drug addict who flirts with guys it's okay(:,1 + r u a drty slut?,1 + y is the sky blue?,1 + wtf is up wit ur cheeks?? chipmunk much??,1 + Wait Nevermind I Am Signed In,1 + i never said that i&;m 16 or that i&;m sexy. dumbasssssss,1 + ugly.,1 + heyyy your an ugly fucking bitch you think your sexy? haha you ain&;t shit besides an ugly bitch. & beware of what? ill fucking put your shit on blast. fucking stupid ass cunt. fuck off & stop hatein on peoples pages before i go off on your ugly ass.,1 + your a fuckin ugly bitch you look like a man in the face :),1 + Is it ok if I've jizzed to pics of you before?,1 + You and frances gross me out nastiest couple ive ever freakin seen. Your way out of her league like no joke.,1 + yuu kno yuu so lame? ndd yuu caint tlkk to that muchh qurls hav yuu seen yurselff hahahahahah noooo,1 + Hoe,1 + i want you dead.,1 + Do you want me to rain on their parade? Sure hate ignorant Texans who believe that being from Texas gives them the right to act like low level scum suckers. The need to live in the real world and pull their head out of that dark place they have it shoved.,1 + Why r u such a bitchh??? I hate u I&;m gonna kick ur ass whore!!,1 + Aww you&;ll have some beat my ass? Your not "badass" enough to do it yourself? Exactly what imeant by pussssssyss<33333,1 + Uhm you did right down there vvvvvvv. You&;re the &;dumbfuck&;. Stop starting shit with everyone kcoolbye.,1 + I see (:,1 + your a fagggggg,1 + You&;re Lame As Fuck .,1 + Ugly piece of shit,1 + I&;m not a creepy stalker. Just everyone fucking hates you so everyone knows what you fucking do. You remind me of Harmony Flashpink but uglier and alittle more pathetic. Everyone knows you fake yourself and other girls and you want attention. Dumbfuck.,1 + who did you last go out with? cameren loomen?,1 + y do u have a big nose seriously no girl have a big nose ?,1 + How&;s having like no friend&;s ?,1 + I do too know you like that motherfucker.,1 + Hey aujala r,1 + hey everyone this is the girl that fakes ta,1 + :] you are fake though :D ? that makes no sense lolol why would you keep faking all these formsprings your stuuupid :p we all know the real ashlee girls formspring already soo fuck off may you?,1 + Dumb bitch! Fuchkkk you and your stupid friends! Your all pussies! None of you can handle on your own! You always need your friends to get in everything!,1 + but i want your hairy ass then after i lick it i can fuck it you know you want it,1 + ew i wuld never be jelous of ur life. coke yup thats a drug to but u still seem to handle with it a lot. no one gives a flying fuck about ur life and leave andrew the fuck alone bc u only hate him for the firey cunt,1 + SMILE4MEXXX IS TRAILER TRASH. A RACIST FAT COW. A BIMBO FUCKING SLUT. AND WORTHLESS AS HELL. ALL SHE&;S GOOD FOR IS SOMEONE USING HE BODY FOR SEX AND DUMPING HER ON THE STREET WHEN THEY&;RE DONE USING HER ;),1 + BITCH STFU AT LEAST I RECOGNIZE MYSELF NOT LYK U,1 + oh frances hunny dont try and talk all ghetto your white ass doesnt fucking scare me i will break you in fucking half.,1 + ASSHOLE,1 + Ur gunna get jumped. U stupid bitch.,1 + 13?r you&;re at the perfect age to learn how to suck dick and give hand jobs.,1 + Leave Texas bitch!! No one here wants you!! Quit hating on Texas and Brock we were perfectly fine without you BITCH! ... sooo LEAVE!,1 + XoxoAshleyxo and I are okay now though. No more threats so your back up will not be needed.,1 + you are stupid and ugly.,1 + no. I hate taylor she used to b firey until she dyed her hair,1 + FUCK YOU YOU SON ,1 + Your probably the one faking KAI! HUH! FUCKING BITCH!,1 + B!+(h !M@ B3 PUMP!N D!S$Z D!(k !N Y0 3@R S0 H@RD DAM BRUH I BUST3D A L0@D 0F CUM !N MA M0MMASZ HA!R SH3 MO!STURIZIN IT DO3. I P!CTURE Y0 VA@GIN@ T0 BE3 ALL H@!RY N $$H!ZZZZ W@!T T!L ! MUNCH ON DAT N@PPY BROWN H@!RY H@!T!@N PUZZIE,1 + AJULA NO DONT FUKIN TALK TU HERRR ! VVV,1 + dayumm stupid fuckin cunts stop talking your shit get a fuckin life go suck your moms dick and chock on it dayumm lil pussys take it of anonamis or watever -stephanie iloveyou alexis :),1 + Here&;s an idea how about stop trying o get hook up with Tabitha and actually find someone who can suck you 3inches dick hahaha doubt that will ever happen. No girl likes a pevert and a douche(:,1 + get a life you twisted bitch!,1 + im gnna fxk u up!!!!!! ur a dum hoe,1 + Is it true you kissed that ugly Cody kid!?!,1 + too late i hate you,1 + fake fake fake fake fake fake fake fake fake fake fake fake fake fake fake fake fake fake fake fake fake fake fake fake fake fake fake fake fake fake fake fake fake fake fake fake fake fake fake fake fake fake fake fake fake fake fake fake fake fake fake,1 + fuck no im not jealous of the ugly ass freak.,1 + NIGGGAH ISZ YUH CIRCUMSIZED,1 + Hey bitch don&;t get mad at people who write on here cause YOU ask people to write to you.,1 + DUDE ARE YOU SERIOUS YOUR SO STUPIDDDD >.> STFU!:) and btw if your tired of people talking shit on your form spring delete this accountt >.> and be yourself are you that bad?,1 + hello mr gay fuck,1 + Don&;t call her a bitch vv,1 + u know u care that betty is way better looking than u,1 + aye dhis daddy pelt,1 + y does u talk shit about peyton ?,1 + oh well aren't you just the shiiit for hanging out with older people? get friends your own age you dumb bitch.,1 + shit talkin bitch,1 + when they mean fake they mean your attitude is fake and your personality not if shes dead or alive..um just saying ppl.,1 + im a big fan of betty and u is ugler than her so fuck up bitch u ugly shit head,1 + i hate ur fucking guts. u & lindsey? grossest thing ive ever seen,1 + :3 wow ashleeee your fakes amuse me lmao okay you are retarded to keep this page upp :],1 + I fucking hope you move you bitch!!!!,1 + brittany is from MAYODAN abbie aint from ellisboro either.dumbass....and the lst 2 aintchur girls they dont evn lik u.,1 + You are such a faggot for going to EDC god damn it. Almost as much of a bitch as Thad but no where near Zach at least.,1 + Hahaha ohmyGod you are an actual jerk,1 + she sucks. she can go fuck herself. xD,1 + gahaha. xD i will whip your ass. lmfaoo.,1 + fuck the lakers! GO CELETICS,1 + you sure as hell look like a dog. don&;t fucking call me &;hun&;. got it.,1 + haha lifeless cunt stop writing on my wall you shit faced slut,1 + and you called me fat why?,1 + who tha fuck is "Krista" r this is not "Krista",1 + fuck yo shit homie!,1 + does it look like i give a flying fuck? ;],1 + Wow you&;re fucking stupid. You told a girl whoo had her info showing "Show your face anonymus" and your comebacks fucking suck. "Fighting over the Internet is like being in the special olympics even when you win you&;re still retarded.",1 + "I have one for your information" WTF. That&;s MY LIFE NOT YOURS. You best think twice before you try to steal my stuff bitch.,1 + who decided to take a shit on your face?,1 + i would watch out for rachel just sayinnnnn' she is a fake person.....,1 + Did you know that you remind me of an old man?,1 + whyy aree youu suchh aa faggottt(:,1 + i guarantee you guys wont be going out by the end of summer..,1 + Did you know you smell like an old man?,1 + Hey my names harry beaver;) <3,1 + No. Stop fucking lying. You used to smoke. We ARE NOT STTUPPPIDDDDDDD!! I myself have smoked with yuu before.,1 + HEY BETCH. wanna not be a lil slut?! &please oh lordy STOP CUTTIN EYES AT ME!r cus she want me dead (;,1 + exactly. ur not hard get the fuck over urself,1 + Your 44 years old? :O! Dumbass Pedifile. :D,1 + no body likes yuuuuuuu!,1 + U A HOE.!,1 + why are you so gay,1 + Besides the chick who&;s starting shit won&;t back it up and isn&;t even saying who SHE is.,1 + Oh ISSS THAT FAGGOT ISAYAH GOIN TO BEE DER???,1 + ]=,1 + fuckin hate your ass.,1 + **bitch*** lol VVV,1 + Hi you smelly rotten poo. You smell like pigs vomit! Did you just go to the toilet? I wondered what that smell was you missed the toilet and it fell on your ugly clothes are you poor? You stink like hamster poo. I&;d love to ram a metal pole up your ass.,1 + WHORE!,1 + Sleepin around is for whores. LOL,1 + Bitchezz beloww me I would say ur name but yeww put it on anonymus pussy ass bitchez talkin shit on Alexis she ckan show Herr fuken boobs if she wants don&;t be jealous cuz yeww prolly don&;t gawt any it&;s ok tho and bitch wen she sayz write to her she,1 + eat a dick you complain about texas all day shove it it! you just got told your suck a dick! so eat one,1 + I have my shit straight she wears like the same T-shirts.. her little pink and white stripped shirt or the plaid blue and red or pink shirt or whatever and maybe some random ones.. with jeans or shorts and vans. OWNED.,1 + i like how everyone writes you just to insult you. seriously all your questions are dissing you! HAHAH.,1 + austins new girllfriend is not uglly && she is way way better than your nasty asss willll ever be. Ha evven youur so callled bestfriend "katellyn" aggress that kristens pretty tighht.,1 + I am NOT a baby you jerk off!,1 + that stupid bitch amber that went to our school tries to act like she ran our fucking school! we should put that bitchx back in her fucking place!,1 + Your bio is quite interesting it says "booo you whore." Are you talking about yourself? I am very confused.,1 + i hope your asswhole gets sniffed by aids,1 + Hi my name is Andrew and I want to fuck your brains out you hoe,1 + this is a place for QUESTIONS try asking some.r will you do me?r what color of condom?r kidding. but really.,1 + How many times did you and that douche have sex,1 + I DO know you on a personal level. Bitch.,1 + Grosss! Your face is nasty,1 + yoo im telling yall dnt mess wit my kuszinn kus she DO NOT PLAY repeat DOOOOO NOTTT.!,1 + I don't like you ugly ass hoe. I bet your LESBAIN. You look like it. I bet when you older I'll see you in a anonymous porn ad. BTW I heard you stuff your bra...Hahahhaaaa No boobs!r,1 + your ugly.,1 + Meanzz to ask her questions and stuff nawt talk shit on anonymus pussy ass bitchez watever tho yew guyz don&;t mean shitt to her and don&;t affect her so be a bitch to Someone who cares pussy ass fuken ugly bitchez fukk youu!!!!! Love alwyz marissa <3 ily a,1 + um da gurl dat hangs wit evelyn her name is katiana..cause i alwayz be hearing u talk about her do u like her?,1 + yous a bitch nd hoe !,1 + NIGGERS NIGGERS NIGGERS BALLS BALLS TITTIES DICK SUCKING FAGGOT SHIT NIGGER ASSFUCK TITTIES FUCK NIGGERS,1 + I wouldn&;t say being gay was cool :L,1 + STFU YOU HOE. you piece of shiit.,1 + SARAH STANFORD TAKES IT UP THE BUTTHOLE.,1 + caan you go get me some maccas?,1 + fake doesn&;t mean you look pretty?,1 + why are you such a bitch/whore cunt?r i hate ur guts,1 + i h3rd yUh sU(k3D @L!X&;s D!(K n y@LL cUM3D !N 3@(H 0+3RszZ 3Y3sz N m0@n3D @ll n!qH+ l0Nq,1 + Everyone Look This Girl Was Using Missy Lockes Pictures And I Told Her She Was Fake Then She Was Like Im Not Fake Then She Took Bettys Pictures. SHES DUMB! http://www.formspring.me/LMT23,1 + your LAME ass . oviously iloveyouhh moree. (;,1 + Youu need to answer your questions you gay ;),1 + kaydoll is bettaa than rhubinathy cuss she will suck my dick and the othe fat hoe wont and i luv it my sluts,1 + i dont know you but you seem like a bitch,1 + Leave Tabi alone I know for a FACT she hasn&;t done anything to you. Pretty sure it&;s pathetic you&;re saying this shit anomalously because you don&;t have the balls to say it to her face. Who&;s fake now? Grow a pair and shut the hell up. We don&;t CARE.,1 + You didn&;t get a brain that day either. They were only handing them out to people who would use them.,1 + ur not that pretty... and u think that ur the prettiest girl..wow its stupid..,1 + `` im very sexy `` My fucking ass. duuude that made me laugh so fucking hardd(: thank&;s for making my day ;D,1 + dude you are such a fucken fagget ahahaha,1 + you guys SHES NOT FAKE! got it? good. when she still went to my school she was out there with the fact shes a hoe. im glad shes staying in texas they can have her,1 + did alix suk yu up,1 + Excuse me but whoever the fuck that is under me can shut their fucking mouth you don't tell someone to go kill themselves motherfucker you go kill your self seeing as you have nothing better to do then lurk her formspring.,1 + i&;m not fake (:r sorry.,1 + Stop making fakes of yourself. You are ugly as fuck. You&;re not actually 16 bitch. And you&;re deff not a cyrus. Get a mother fucking life cunt.,1 + your not FUCKING pretty stop hating on grace and all these pretty girls your just jealous. omg,1 + You suck dick.,1 + YOU&;RE RETARDED NEVER MIND.,1 + Seee im makin u famous dese girls crazi dawg,1 + dearest babydoll vv Stop trying to start shit && grow the fuck up. I mean really? Is this what you do for a living is ask people if they&;re fake && ruin peoples lives? Grow some balls grow up && stop starting stuff(:,1 + Nope. I actually have a life. *COUGHCOUGH* unlike you the lonely pathetic ugly lowlife man/woman who&;s life events are: staying on formspring creating fakes and starting shit. Seriously I&;m not the bitch you are. END OF STORY. KCOOLBYE.,1 + cj is gay,1 + ...If you want to go back to Idaho so bad why dont you??? ... Texas doesnt want you here anymore than you want to be soo .. just leave!!!,1 + what am i going to do? hahaha what am i going to do? haha what im going to do is get some bitchess to kick the living shit out of your ugly fake wanna be bitch made ass.,1 + .. STFU TABI ... you may not be fake .... but your a bitch annd need to go back to Idaho .. HOEEE ... orr just go to W&;ford.. your better off ther anyways (: .. you have like 1 maybe 2 friends in brock soooo leave,1 + Ballfuck she&;s real. Get over it. vv,1 + Grosss! Your face is nasty,1 + (; hehe that&;s funny I want to fuck your tight ass,1 + i have been the one who has been calling you a hoe and shit cuz bitch justin has a fucking girl friend so back the fuck off and quit throwing your self at him. your a whore.,1 + YOURR SUCHH A SLUUTTT,1 + ass face -_-,1 + YOU DONT EVEN FUCKING HAVE FAKES STOP THE FUCKING BULLSHIT AND GET A LIFE JEZUSS. HOW OLD ARE YOU KID? LIFELESS BITCH YOU NEED HELP.,1 + Oh bitch you can&;t hide cus I&;m gonna find you and we gon have a problem hoe,1 + "Show your face Anonymous" WTF?! You make no sense you fake ugly bitch,1 + WHATEVER. Im gunna leave before you guys cry & get yourselves hurt i mean your begging me to leave bye pussys!!!!!!!!!!!!!,1 + dont talk to rubinathy15 she is stupid,1 + The beach is fucking shit you&;re my daddy and soccer is for faggots.,1 + You are a beautiful girl and i dont think that you shoul do all the things that you do cause you are fucking up your life! Sorry to say but you should to better with your life then just throw it away.....,1 + hey why dont you go kill yourself alot of ppl would be really happy :),1 + Frances seriously stop trying to make people feel bad for you ugly bitch.,1 + you're not cool suck my dick,1 + ..are you? all you can say lmfaoo. well your fake everyone knows it no need to go on about it(: sayoonarra<3,1 + bryans uglyyy!! dum hoe 5/19/10 aha yu guys make a ugly couple!,1 + lmao.. "yurr reall funny skinny ass bitchh".. hm.. that isn&;t really much of an insult now is it? what if i was fat? lol u suck at talkn shit :] later white trash skank :] ur super ugly nd that guy u like really isnt gonna come back around for u. laterrrr,1 + say it to my face trick ass nigga i will fxckin murder you i aint tryna make no body feel bad so you can hush that you got something to say then please step up && show a namee fuckinn bitch. whuss up?!,1 + Please stop harassing me on my formspring :(,1 + why are you soo fat :L,1 + BETTY IS LIKE ADORABLE. YOU LOOK LIKE A CRACK HEADS SHIT IN A TOILET MY DEAR,1 + ok this is tatum krista&;s friend this is her profile thing and i wanted to go on hers cuz she told me she had ?s on herer she didnt answer cuz there stupid and i wanted t oread them so i did but she told me about you and she is not obsesed with you,1 + When caught early the embryo isn&;t much different than a guy blowing his load & killing all those sperm that could have been innocent babies. It&;s not a life embryos are not human. Although many innocent lives are taken through war it&;s sickening.,1 + So would you rather fuck/suck/touch my dick? if its all of the above lets go out,1 + why are you still alive?,1 + you&;re the bitch :) fuck off.,1 + dude it seems like everyone hates you. you should just delete all your socialing sites. (:,1 + lol how cute u have friends that back u up :] doesnt matter. ur still a fake bitch :] go find a real bf. not someone out of ur league. lol ugly ass,1 + hey sugar tits! wanna meet at night? i'll be racing my evo..metallic blue with white stripe on top...i got tinted front windows too. look for me!,1 + i hope you know i hate you. frances is one of my best friends! ass hole!,1 + hey do you have a hairy ass i would love to put my tounge deep in you,1 + not even michaela?,1 + Kikk her ass?? VVV haha wtf try her bitch i dare yuh!!!! ily alexis,1 + your my bitch and ill kill you nigga,1 + guess what you should do? GET A LIFE. I don&;t even know you so why would you even start shit with me?! Seriously you must be a bit messed up in the head. Pathetic.,1 + your still gay and a bitch haha,1 + YOU SHOULD DIE,1 + I want to fuck you. Are you a blondie?,1 + your ugly as fuuuuck ( : betty is 10000% prettier than youuu so stopp being a bitchhh.,1 + bitch i can rap beta den yo ugly ass,1 + YHUUU READY TO GET YHUR A$$ BEat THIS SATuRDAYY?!?!?!?!?!??!?!?!?!?!?!!?!??!?!?!?!?!?!!?!?!?!?!?!??!?!?!!!??!?!????!?!?!?!?!?!!??!!??!!??!?!?!!?!??!?!?!?!?!?!???!?!?!?!??!?!?!?,1 + ya i know cuz i am letting you know who this is. r my name is Tatum Not "krista",1 + your come backs are fucking horrible you dumb bitch. wtf are you like fucking five? you&;re like. &;i know you are but what am i?&; yeahhhh. no. bitch get a fucking life.,1 + Your the one talkin shit back.. fuckstick? i mean seriously how 5th grade can you get?,1 + your ugly,1 + you&;re fucking pathetic,1 + Faaaaake. :D,1 + will you blow me now?,1 + ur mad ugly.,1 + your a fake. your a fake for calling the REAL hailey fake on her formspring. what a lame bitch :),1 + LMFAO you&;re fucking creepy & must have no friends nor life if you have to create muliple formsprings of yourself saying theyre fakes. Quit thinking everyone wants to be you & they copy you. No one would fake you. I&;m sorry your such a pathetic poser.,1 + stop leaving stuff like "fake" on your own formsrping. dead give away dumbass. SUCK A CUNT,1 + not telling. you will have to just find out on your own. it probably won&;t be too hard though.,1 + Did u now tht ur ugli,1 + andrew once again stop talking to MY friends. nobody likes you. you think your hot shit and thats whats annoying. bye failed rapist :),1 + Am not! Youz a hoe & a baybay.,1 + you&;re one of the ugliest bitches I&;ve ever fucking seen,1 + Fanny or dick?,1 + see i told u tht u r a playa. stop playing girls u cunt..,1 + because you're stupid.,1 + Your ugly x)!,1 + okay i added some people who want sexual spam i dont do that over mass spam. if you want sexual spam ask me to spam you individually and i will(: thank you!,1 + 2 weeks? WOW i totally change my mind!! thats like sooooo long! im sorry i ever said anything.....NOT your too young for makeup. especially the amount you were,1 + I think your gay sorry.,1 + whyy dose rubinathy15 ask stoopid questions? erase the dum betch,1 + she ot me right by her side bitch! an at least i can show my dam info pussyyy ass V,1 + I wanna fuck you.,1 + You&;re a bushwhacking alchy piece of shit scrub.,1 + Stop stealing my man ):,1 + why are you soo dumb :L,1 + Hey smexy wanna fuck?? How bout we do some 69 all night long? Sounds good k I&;ll be in your bed waiting sexy bitch! ;D,1 + ew VVVVVVV,1 + WHORE,1 + wtf you got 2 b the freakiest bitch.,1 + ill fight you bitch,1 + Hey bitch boobs don&;t count when the only reason you have them is because your FAT!!!,1 + If you won a million dollars what would you do with it?,1 + ohh look the girl who fakes herself....,1 + Okae then bitch you dont got any quick comebacks now do you you fucking FAKE!!!/,1 + your so fack go suck a VAG!,1 + i bet you are a .............................NEMO........................STAR.............................SHIT >>..................................COW FAGGET lol,1 + To the question below when you said: im not fat? Arent you suppose to say I&;m not fat PERIOD? Cause if you put a question mark your saying your fat. DUMMY.,1 + Fuck Justin bieber. He&;s a fucking fag,1 + Remember that gurl u fight last year?,1 + heey. how many other formsprings do u have? like 50? damn. get a life.,1 + hehehehe(:,1 + your so stupid you say your not pretty to people so they can be like oh your so pretty blah-blah-blah!! so can you stop?? i mean i totally agree with you your ugly as shit no worse than ugly as shit so go die.,1 + wow you&;re a fucking fake. if you&;re tired of everyone talking shit on you formspring either stop talking shit to them first or delete the damn thing. gosh you&;re fucking retarded. I forgot how stupid people are these days and that would be you.,1 + Stop Calling Tabi "Fake" Obviously Your The Fake Bitch That Don&;t Have A Life I Don&;t Know Tabi But She Seems Like A Nice Person.,1 + Hey. Why you such a bitch?,1 + still a bitch :],1 + KUM ON DEN WIT DAT BIG DICK,1 + Tootsy is eww,1 + Do you want me to cave in "curly tops" head????!?!?!?!?!,1 + whatever your a fake and have nothing good to do with your life.,1 + Your to young what love is bitch so do you use it!!! Dumb whore put your boobs away!!!,1 + why r u suchho a hoe.?,1 + niggers,1 + I hope yhu dnt thinkkk yhur prety casue yhur not!,1 + ew you&;re gross. ugly. BITCH,1 + why not? and all you have to say is "nope". oh and leave people alone(: delete this you fucking fake :),1 + jerrrk.,1 + Why do u follow the bandwagon? Formspring. Twitter. What&;s next gay Justin beiber.,1 + go 2 hell,1 + No. Im not. But thanks for throwing that out there ;),1 + Naw nee naw nee naww neee,1 + yeah go ahead and play victim i do know you nico. thats how i know your a player.,1 + Ur facebook is a fake cos I saw 5other facebook with the same but diff last name and same pics and 1 has proof,1 + Do you stroke your pussyr r r r r r r r r r r r r r r r r r r r r r r r r r r r r r r r r r r r r r r r r r r r r r r r r r r r r r CAT?,1 + Bitchh really yur saying shez fat now bitch yur probly the fat lonely ass flat chested bitch who ckant get none so stop hating AND PLEASE BITCH TAKE YUR SHIT OFF ANONYMUS DUMM ASS BITCH !!!!!!,1 + This is not "Krista" for the last time I have no flippen idea who "krista" is,1 + im not Jewish im catholic so suck a dick,1 + ahaha my mom is dead :) but thanks ugly ass bitch that NO BODY knows and has no life and has to talk shit on formspring to pretty girls that she is jelouse of :) alright bitch.,1 + Aw see even nico does nott want too go near you. I like that you try and typeall ghetto. YOU dont fucking scare me you bitch. Ill fucking kill you if we faught. You&;d probably bring your "ghetto friends" Bahahaha. Who would that be? Bella and kendall? Pff,1 + Your face is nastyy,1 + GO TO HELL xD,1 + baha actually im going to go on now :) BITCH ARE YOU FUCKING STUPID? >.> the REAL ashlee has a proof video your dumb your probably just some old man behind a computer screen<3 go fuck yourself<3,1 + i swear to fucking god bitch. i hate you so much. you think you can add people and just talk shit on there pages? haha naaa. yuuu must got us fucked up. im going to hunt your ass down and beat the shit out of youu with my own to hands. kbitchhhh?,1 + What lip did u get pierced O.o?? ;),1 + uhmm bestie... y dnt u evr get da braces?? ya teeth are fcked up???,1 + lol ok now ur just straight up lying. faggot.,1 + yu a dam lyee mikey yu kno ya mom behh tearn ya asz up.,1 + Why did you fake yourself? That&;s lameeee you know there is like a lot of hate groups on myspace of you?,1 + :] im sorry im not the one being a fake of some lady lol comeon now >.> be your damn self (: and im not fucking mental i know what js means. i think you need to stfu and get a damn life instead of beng on here and faking some girl ; btw NICE COMEBACK!,1 + stupid bitchhh and hop of ashlie&;s formspring,1 + If you think i care about what you think of me then you've highly over estimated my opinion of you! bitch/,1 + DID YOU JUST FUCKING SAY MY NAME,1 + No honestly your really immature :),1 + lets see it then ? ( : && i was born in th ghetto si wtfuhh you know bout tht cuhh? ahaha not a damn thing! get on my level trickk. show a name & catchh ahh fade lil homiee. & no you know what dont stay away from me come find me bxtch ;D<33,1 + Get fucking real dude.,1 + She is as dirty as they come and that crook Rengel the Dems are so fucking corrupt it's a joke. Make Republicans look like ...,1 + why did you fuck it up. I could do it all day too. Let's do it when you have an hour. Ping me later to sched writing a book here.,1 + Dude they dont finish enclosing the fucking showers. I hate half assed jobs. Whats the reasononing behind it? Makes no sense.,1 + WTF are you talking about Men? No men thats not a menage that's just gay.,1 +Ill save you the trouble sister. Here comes a big ol fuck France block coming your way here on the twitter.,1 + Im dead serious.Real athletes never cheat don't even have the appearance of at his level. Fuck him dude seriously I think he did,1 +...go absolutely insane.hate to be the bearer of bad news..LoL..dont shoot the messenger (cause we all know you bought that pistol,1 +Lmao im watching the same thing ahaha. The gay guy is hilarious! "Dede having a good day and I dont want anyone to mess it up.",1 +LOL no he said What do you call a jail cell to a gay guy? Paradise! ahaha.,1 +truth on both counts that guy is an ass and their product is sub par. I tell people try Dalesandros orJim's,1 +Shakespeare nerd!,1 +you are SUCH a fucking dork,1 +Heh. Fuck 'em WHERE?!?,1 +damn it i totally forgot that one!,1 +wow damn I would have been pissed @ that...,1 +nigga u geigh lmao! fuck yo finals beeeeeitch,1 +that sucks :(,1 +read that this morning. my fav is how they just straight up say "cum shots",1 +Unibroue 17 !!!! Another damn good Unibroue,1 +damn your evil 60 minute IPA beckoning me from the fridge right now...,1 +It did then my fucking dad turned it off. I just don't think it likes your movies. I was tryin to watch Nanny Diaries.,1 +it pretty much is a fuck you card..,1 +that karma is a bitch HUH,1 +don't get too fat or you'll turn into a boomer,1 +the hormones are worse for guys. I cant tell you how much I truly hate the thoughts that go through my head.,1 +except for joe jonas the ass munch who broke up w/our tyler via phone..kinda like doing via text - what kind of a-hole does that?,1 +man that rly sucks. I for 1 am positive that all will work out. You're a bright dude... pretty cool 2 if I don't say so myself.,1 +hard to kick ass yourself with slippers on? On it.,1 +Thats pretty damn awesome! Very smart :) @Aaronage Sure!,1 +freak'n awesome. so far loving 4.5. the browser is fantastic. and finally video pretty cool,1 +Damn that sounds good...,1 +they should have a wii loser..that way you can compete with your wii friends.,1 +@markmancao haha. i love it! gay nights for all!,1 +that's awesome! you're pretty damn good!,1 +Faggoty fag fag. Gay secks man blowjob. Settle down.,1 +Right. That wouldn't be creepy as fuck.,1 +HOLY SHIT. Fuck that band.,1 +Gay fag.,1 +oh ok it's the dick-in-a-box guys that explains the timberlake appearance,1 +*falls off of bed laughing fabulous ass off* Dude I think that made me BLUSH. WTF? LOL?,1 +and @justlikeanovel: *raises hand rather gaily* One real gay man right here darlings! HOLLA! #supergay,1 + oh man. the malls are a mess it grosses me out. ohhh capitalist dogma how i hate you,1 +where'd ya put it? o btw: "kick ass quote Copyright© 2009 @abcd91 All Rights Reserved",1 +It sucks to be done with exams n still be @ Mayag.,1 +Epic WINS for Fuck City<3,1 +Has it snowed where you are?? I miss the damn snow. I haven't seen any in forever. Everyone has some snow but me :( lol,1 + aren't you just super special. I will not know the sweetness of sleep until about 9 tonight. I hate grad school. I want out!,1 +fuck yes. I hate them at work...,1 +Holy ass hell balls!!! $260 for premium???? Fuck upgrading. I will fucking cope with Basic,1 +but seriously... WHY THE HELL ARE YOU STILL ONLINE???? Were you injured in god damn 'NAM or something??? GO!!!,1 +damn. Don't want to visit a country that doesn't allow passport smile. Just want to go to Cabo soon.,1 +I've never been to New York and Peyton was an ass when the Chargers wanted to draft him but I do love to win.,1 +damn. did you buy bitchy too?,1 +then by all means bitch away! haha.,1 +sucks that ppl will do anything to make a buck. i just love how your fans are calling them out. and i'm glad your iphone is safe.,1 +Let that pussy freeze. Rotten bitey little bastard.,1 +Dood! You just justified your MBA. I pity the sorry ass of that downtrodden employee whose manager you'll soon become.,1 +hehehe. mine pleasure. Btw I too so loves it when people be presumptous pricksy wicksies! feel jolly nice for me ass to rub on.,1 +I've only lived a quarter of my life and no crisis so far... loser experience yeah...couple of kinky pinky stuff-yeah. But crisis? Naa,1 +imagine a building. not any building...a fucking 300 acre building full of weed....not any weed...but Caucasian Monkey-fuck Weed!,1 +Ugh twitter stop it you fucking slut.,1 +HAHAHAHAHAHAHAHAHAHAHAHAHA (eww now thats fucking gross!) HAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAAHAHAHAHAHAHAHAHAHAAHAHAAHAHAAH,1 +cute video lexi u hve some of the of the weridest & cutest little toys i know wht u'll say (shut the fuck up ACH) haha,1 +Fuck the pics! @giove_dea WE WANT VIDS!!,1 +Hard to play because it is damn fucking awful,1 +you got that right! People stealing others' generators & other stuff inside the homes when they know no one's home..sucks big time,1 +no grown man should include DIP in his sentence....lol...I know I'm hatin but fuck it I'm lookin @ snow..lol,1 +oh god we have an icp display in our window and weve been getting so many fucking juggalos and they smell sooo bad.,1 +you should have her talk to @junsten about that. Similarly he once told me completely out of the blue "I'd hate to be a bird.",1 +I nominate @PRsarahevans for a Shorty Award in #socialmedia because... Shes damn good at everything to do with Social Media.,1 +Captain Jean Luc Pic-card of the USS Enter-prize Captain Jean Luc Pic-Y'KNOW WHAT? FUCK YOU TEMPLESMITH!,1 +FUCK YOU RIGHT IN THE FILTHY PUCKERING SPHINCTER YOU CALL A SOUL!,1 +another downside to living in DSM but working in Indianola: lunch meetups are usually not possible. :( damn isolation!!!,1 +there's nothing better than listening to music on shuffle and hearing you say "you bitch!" randomly in the middle of it.,1 +I got it. How many damn websites do u have homie! Sheesh!,1 +U know they all the same dame spot! I bet ya'll got the same damn middle eastern type of cats cooking that crack up too!,1 + kno I check ur blog out! Alpha females vs being a bitch.....damn u be analyzing!,1 +haris i m trying to control my fat tummy did'nt eat from 2 days :D,1 +700. you glutinous bitch!,1 +Ok you're starting to sell me on these vinyl toys (damn that sounds bad),1 +So true so true. Lame ass people are now officially off my radar!!!! Bu-bye!,1 +lo thankyou.. will see you soon :) and i hav to send a mail to u damn!,1 +Have you tried 'fuck' and 'Fuck'? (yes they are different),1 +Well not unless he wants some hot Vulcan action. It only happens once every seven years but damn is it worth it.,1 +damn i was hoping for some cash out of this... how bout 5 for pain and suffering lol,1 +that sucks... she should prolly just change her major lol,1 +that sucks... so are there plans to get back together? or are they done?,1 +you are a fatty fat fat,1 +you never posted your blog. and today is guest blog day. get with the program my slut pink zebra. LOL loveee you anyway!,1 +they're not gross. U shaddup u fat ass HATER!!! & yes I made them for mark & my son.,1 +no one likes every fat snack u do bitch! so shaddup ahahahahaha,1 +stop the hateration bitch! it's only gonna make that mohawk stand up rotf!!!,1 +ask him why he's jumping out of the window. And ask him hows he gonna do it in those tight ass jeans???,1 +'Night Guy' is ALL motivated @ 11pm but he knows 'Morning Guy' is gonna hate him when Miss Emily arrives at 5:30am ;-) Night Tweets!,1 +OK but I'm telling you it's going to be hard for me to fight my inner grammar nerd. I'll do it for the cause though ;),1 +mythbusters is a great and nerdy show. Embrace your inner nerd..no suprise they were on the launch of youtube live ha NERDZ ROOL,1 +lol @ "the bitch". damn.,1 +damn. thats crazy early. i wont hit the city til 9:30 but i will be a few blocks from the spot.,1 +Slurpees are awesome. Damn now I really really want one O.o,1 +I can see it now. "Listen you cow-loving yahoos just put all of the slurpee in this bag! What? Cups? I don't need fucking cups!,1 +i loved it i laughed my ass off,1 +ahh you might be on to something...damn techies,1 +The pig of shame? Lol! Is that like the aardvark of discontent?,1 +Still - it's damn moronic that media people can't access media - particularly media made by their own company!,1 +if anyone said Arial I'm gonna beat their ass.,1 +well find him and kick his butt too! I hate it when people take advantage of the mentally challenged.,1 +Tell her she says Bitch like it's a bad thing,1 +I did have a moment of seriously considering that. I mean... my Dirt Devil sucks. But I didn't plan on buying a new one soon,1 +Ugh! I hate when I get spam followers... They shouldn't count against our talley of actual followers... :-p,1 +You know what you are? You're like a big bear with claws and with fangs... big fucking teeth man.,1 +Damn you're totally geeking out on us tonite.,1 +the eagle w/ @leahsairy ... Decided 2 not do power lesbian night @ mecca & hang out w/ our real queer ppl 2night. gr8 indy band. Emo punk.,1 +we are so silly and pathetic and so fucking cool! You tellin me you choking made me choke! And I am sitting next to some girl w ...,1 +Let your hate for Gambit grow. Embrace it. Spread it.,1 +dig deep and find that special Christmas hate!,1 +I tried to rickroll my office christmas party last night but the damn band didn't know it!,1 +even though I was at the same lunch as you we missed you at our end of the table! Need a damn smart phone! Coulda tweeted back.,1 +Smack a bitch? :-D,1 +rock not the. He gives the emo populists limp wrist rocker throw.,1 +Already on the coffee. I love her but hate the whole spite thing. Climbed right on top of me to do it!,1 +i feel fucking great get me another drink,1 +You've got 5" of snow? Damn. I'm jealous.,1 +It just sucks that so many use it as a crutch.,1 +They say I have the best ass this side of fourteenth street.,1 +yes i love the pillows livejournal jrock rotations (get an lj they're sick) and uhh fuck i dunno twitter?? just the site,1 +ha not that creepy. because it's week 10 and I'm fucking stressed out as hell. I wish I could take a trip down there x.x,1 +Fuck amen to that,1 +Aww... Dnt hate the weather rain can be so soothing sometimes!^^ I still have one more test DD:,1 +I knw!!!!! I hate that! D:,1 +Aww. Thanks dear. And I hate my gradeschool friends for ditching me. They forgot about me when we are suppose to be at her wake.=(,1 +yeah. i had to beg the stupid teacher. it was so gay.,1 +yeah we all call her a whore and shes all don't call me that! So i called her a slut. And she said im a tease! And i told her ...,1 +told ya she was fat! she's loyal tho she has this goin for her...,1 +if you tweet about that damn song one more time.... And its on the Scion double disc promo cd,1 +I have all th nerd at home and I'm a smart ass too. So I answered you,1 +u got me lemming for some laneige whitening shit! ive been breakin out lately n i need somethin to whiten my damn acne scars bleh,1 +you're not a twitter slut until you show us full frontal nudity... so until then you're just a tease =P,1 +haha... so you want to be a twitter slut... alright fine... i'll be waiting for the moment you mature from a tease to a slut!,1 +and there were only 5 of us.. it was a night that i've already forgotten... damn the alcohol,1 +I like the verses to the song....just not that lame ass auto tuning nigga on the hook,1 +hold up nigga..u cant hate Jay-Z...might have to beat yo ass like that nigga did when that other guy said F Tupac...lmao,1 +way to damn hard,1 +the explosion of social media into mainstream business. We will see everyone joining Twitter its the "year of the nerd",1 +but...but...to hate them is sin!!! just give me the ones you get angry with...i'll take care of them! hahaha,1 +DOGS LICK THEIR ASS...NEED I SAY MORE? DOG.,1 +No I HATE those commercials! Just GROSS. *gag* Okay okay you've got an hour before showtime. hehehe ♥,1 +it was a joke haha. i figured id be emo too since everyone is complaining on here,1 +It sucks though when you have nothing to do at 4AM and your roommate wants to sleep.,1 +o so the rumors are true i am OBESE! yea fat!,1 +girlfriend where the fuck did u find that photo! lmao!,1 +ur a damn fool lmao,1 +They're not my preference but the app is so damn fast and thorough that I let it slide.,1 + Ha! Yeah that caught my attention too. Now wait & watch for Red Wings fans to freak. I'm gonna make popcorn for that show :),1 +Tell them you want YouTube to quit fucking with things that no one wants fucked with.,1 +No you just piss out anything your body won't absorb.,1 +Doh! dont you hate it when that happens I keep meaning to take a backup myself,1 +Damn he's doing sneeks for Nike and Louis Vuitton? Dude's gonna be rolling in dollar...,1 +Mate it is. In Newcastle it was -1 down Bath -6 it's fucking brassic cold,1 +"""",1 +: And whilst on the subject all Aussie drivers should be reminded KEEP LEFT UNLESS OVERTAKING. Damn middle lane owners club!,1 +less #damn-fridays more #bad_wookie_pun,1 +women are fucking disgusting.,1 +you bet your sweet ass you will!,1 +dating a 4 year old? Damn. You're faster than me. I only caught 3 year olds name.,1 + will do when i get home only time i heard it was warped though fuck life!,1 +Man why u live in NYC in that crazy ass weather. Move out to LA. It's nice EVERYDAY. NYC is soo over-rated! lol,1 +i got ur ticks but yo ass ain't gonna come! lol,1 +Ugh ok... I hate NYC also. Hmmm. thinking...We are having a Screening on the FOX Lot that week. Maybe u can roll through?,1 +stuff like building the forums is what I do when writing is kicking my ass that's how I do it ;),1 +Also I caught that "Gai-damn" earlier and I support it 100% ;),1 +gee i'd hate to see what you say about the family ;),1 +dude dont tell me what to do thats not your place. i do what i want. just chill the fuck out and worry about yourself.,1 +damn fine! The snow is gone thank god!,1 +That sucks. Life can't really be that bad right? Chocolate does always help.,1 +i hate you :P happy birthday dude good to know your enjoying it,1 +thats a good question. most lawyers HATE that stuff.,1 +YOU STUPID WHORE I HOPE YOU ARE IN YOUR HOUSE WHEN I BURN DOWN YOUR HOUSE YOU STUPID WHORE WHY WOULDN'T YOU GO TO PROM WITH ME,1 +oh guess who got an australian shephard puppy today. note: NOT ME. the other roommate. yeah. another. fucking. dog.,1 +ummm. Ya. That's pretty damn pimp.,1 +as much as I hate the winter those pics are beautiful. We've had insane-o storms like that in MO. Sucks so bad esp sans power,1 +got delayed. your ass kicking will have to wait.,1 +I know it sucks but I'm actually envious of you. Though I have orientation for a tutoring program on the 14th. Did I tell you?,1 +it was just a joke man..i wasnt taking the piss out of anything.,1 +i hate your face sounds EXACTLY like something i would say.also reminds me of a drunk girl trying to fight me and,1 +i was spanked but do not only because it makes my kid behave worse so doesn't work. not a lot does work-kinda sucks too.,1 +I've been messing around with some of the beta releases. It murders every other WP version (widget panel still sucks though).,1 +Are you laughing your ass off with all these "juicy" twits?,1 +yeah we do... damn this time difference *HUGS*,1 +OMG bundesliga and brasilian bossanova. This was worse than seeing your loved family dog licking his ass. I'm scarred,1 +hmm so thats suk your soul hate and reinvent you to get my dry cleaning hate?,1 +yep. I didn't think to go online and check calorie/fat count until AFTER dinner. Bummer.,1 +wow - mommy's little cheerleader! *must... not... take... the...piss......*,1 +lol.. that sucks..it's so nice in miami... catching that ocean breeze from the balcony....don't want to rub it in...lol,1 +oh hot damn!,1 +He can't hear you his head's too far up his own ass.,1 +Prison Bitch is a sparkling addition to any resume.,1 +a constant receiver does not a giver make. Prepare to be Prison Bitch Blagojevich (new campaign slogan it rhymes),1 +that sucks that you're sick. Sorry to hear that.,1 +No thanks. I don't want cable. I hate most TV shows. I really hate commercials. I get my news online. I'm good. :),1 +try telling your parents that you don't want to see them. see how well that fucking works out for you yeah?,1 +Football. I hate it. It’s official I’m bad luck.,1 +I fucking love Haunted.,1 +I didn't know you were an avid football watcher. Is that even football? I think it is. Fuck sports.,1 +lol kevin bought me damn near nothing and we dated for over 10 months. my life sucks.,1 +Yea it sucks!!,1 +Indeed. But the Collier conversation relationship head up your gleeful ass kumbaya stuff needs to be put out with the trash.,1 +yeah i am glad i have the next 2 days off.. I just have to get through xmas eve and the weekend afterwards. damn gift cards,1 +hot damn! did you get an iPhone too?,1 +aw thanks. it's going better than yesterday that's for damn sure. :-D,1 +no. i must have missed that one. damn. ;-),1 +have a safe flight.....damn now you make me want some jamba juice,1 +I got it for Wii when I get back from my dad's we're gonna play and it will be so kick-ass.,1 +http://twitpic.com/xm6u - You have an inbox folder for CYA - Covering Your Ass?,1 +him and his damn tech stuff bwahaha,1 +i'm not emo. I'm fucking happy!,1 +well now I have to edit myself and you know how I hate that!,1 +if u get a stye is it from seeing a dog shitting or fucking? And what do I do with my fingers? Consult H if u need to.,1 +what does that say about me that I was laughing my ass of when I heard that. Rapping the word titties is just damn funny,1 +& I was there helping your ass pack to get on the plane. A tru friend - helping you track a sub sized weiner like fucking GPS,1 +you have officially been put on my bread stick mailing list. Fuck those rock republics and eat something already.,1 +i get that ha ha smart ass :p,1 +i feel pretty oh so pretty...i feel pretty and witty and gAY! Ha ha good times,1 +Yeah I mean I know the plan and the creative are kick-ass. But sometimes clients have a warped view.,1 +Oh man that sucks. @Vincentdooly can you help @dsmoore out?,1 +yea the weather sucks. At least you missed the 8 degree weather though lol.,1 +I do but I'm an American. Hence I'm a pussy.,1 +God.. that commute has to be a bitch dealing with.. driving back and forth from Raleigh to Fayetteville...,1 +I take full pride in being a nerd. Hahah.,1 +THAT'S AN UGLY ASS PICTURE!,1 +Pretty much but now there will be less AIM errors! Weeeee you can see that I don't type like a retard!,1 +My grandmother is a big bitch and my father's a fraking arsehole.,1 +you must be bored...you are a twitter whore today. ;),1 +man i'm jealous of your day! i'm also hooked on twitter. damn arv. like i needed another procrastinating tool like this.,1 +just don't eat a meal replacement bar.. I fucking threw up!!,1 +fuck duke!,1 +what if their "you" really sucks? like why be a wack person when you can be an imitation of a more cool person? i think this,1 +2 weeks? how am I gonna live without money for 2 fucking weeks?,1 +Well get your ass busy!,1 +Hi new friend! I like your personality.super cool:) Yeah I forgot it is like 9 am there..that sucks!,1 +damn that sucks..I hope you are ok now,1 +haha! No. We have a new stand up board at work and we have barstools to sit on. I hate them!,1 +Excited that yr friends get to see yr show. I hate them. ;) No rly I do. .....Sad that tonite is last show. Hard to say goodbye?,1 +Thanks. Nothing just watching "Jack ass". Are you having fun doing nothing over there?,1 +Well that's upsetting. We can party it up over here. Jack's ass is quite enjoyable thank you,1 +Fuck. Well you can for a low cost of 19.99 with shipping and handling. But that's only if you really want to.,1 +Fuck again. Call 1800QZAK. Then your problems will be solved. I might even get you a discount,1 +If you stay home to twitter and have a martini on NYE does that make you a loser? don't answer that... I don't want to know,1 +you're a fucking maniac.,1 +its ok decided not to go to fam party. going back to bed. wtf moon i hate you. wtf life. dead.,1 +HAHA WHYYYYY do you hate my school!? NOOOOOO :(:(:,1 +FUCK SUNDAY im super bummed.,1 +whelchers fuckin suck ass!,1 +some peoples drama just sucks!,1 +well that sux donkey dick. No interwebs is kinda a pain for ur work.,1 +Then she changed roles and she is a little less bitch from hell but still her sting has too much barb.,1 +today feels like sunday.....damn lol,1 +Damn didnt even see that lol : /,1 +HATE THAT...happened to me today i was like...YOUR WELCOME *cut eye* and walked back out lol,1 +i hate hate hate it with a passion!! lol...i know the calls are recorded i talk mad shyt down the phone LOL!!!,1 +don't you hate that? Though I have so much product to make by the weekend I wish it was Tuesday.,1 +i think its a cultural fad.. starbucks coffee sucks and its wayy overpriced.,1 +i just deleted all the people that i have on my facebook off myspace Damn if everyone switched i could just delete the account,1 +no! I think UofA's navy jerseys on white pants rule. And all red sucks. But seeing BYUs colors I guess all red makes sense.,1 +here 2!Another big storm is blowing our way. I hope it waits until I'm home from work b4 it starts snowing. Hate driving in it!,1 +no i think you will hate it. Its a bunch of dirty work.,1 +the iced media party. Long ass day at the office time for a drink or 3,1 +easy! keyshia sucks. It's pathetic when an actor makes a better album in his 3rd profession (act stand up) than you do in your first,1 +@TheflyGIRL Done! But I must tell you that negro got a hard ass head. My elbow hurts...,1 +LOL at the Razor Ramon shit. I surely was gonna Ultimate Warrior his ass. Shaking the ropes and the whole 9!,1 +You done started something! Got me all nostalgic and shit KNOWING good and damn well I got work to do...LOL,1 +@mekdot yo...heroes sucks!!! I loved season 1 despised 2 and feel like season 3 is a lousy high school special. BOO HISS BOO!!,1 +That sucks they owe you much?,1 +Boo to be fair they shouldn't give away your room. Kick their ass!,1 +Wow that's bad-ass. You're like Stanley now. Well even more so...,1 +lol figured. So anyway anna is still being a bitch(sorry for the language) She doesnt want to go on the trip. So now onto plan B,1 +anna just has to ruin the holidays for me just like every year. Damn you anna!,1 +rock out with ur cock out dude!!!,1 +that's a shame I hate having to unfollow someone! :-P,1 +BIG FAT HARD HAWAIIAN DICK. Too much?,1 + i hate that too - i have blocked a few of stalker / serial networkers on fb too. maybe they should tweet first?,1 +LOL - nah that's just what we tell the loser guests that we usually toss down in the newsroom!! oh wait...,1 +Israelis to Spanish FM ... Kiss my ass.,1 +No but I'm saying that money that has gone into Gaza SHOULD be feeding people not waging war and breding hate.,1 +I had a dream involving a rhino chasing me because of my polo cologne. Everyone says it represents a fat woman. My life sucks.,1 +Taking the piss = talking trash perhaps,1 +& @babysinead that dude is a fucking PSYCHO. i turned down working for him and he told ppl that I DID and that i was TROUBLE.,1 +& @babysinead i've never even met him in person. he's a fucking douche.,1 +I get that too! It sucks!,1 +hey fag why you gotta ask the whole world!? j/k your awesome,1 +gotta love the gay kid who was drumming trying to get his head in the pic tho HAHA,1 +Sheeyat....Freezing rain is no punk. Hope you didn't fall & bust your ass in the parking lot.... I almost did.,1 +Damn skippy. I should be dead 10 times over......,1 +Its foggy as hell here too. Looks like damn Seattle.,1 +lol penelope died?? thats so depressive i have a compaq it sucks i dont have a name for my computer tho : ),1 +Do you really have a big man ass?,1 +i don't know that bambi's ass is a nice place. LOL,1 +attention whore!,1 +I laughed so hard when I first heard because my gay husband (good friend lol) says code 3 when he has an emergency,1 +http://twitpic.com/xipq - this only makes me hate having a verizon contract even more. erg.,1 +no guarantees. hate the place. I'm ust going there to make sure my parents are still alive.,1 +AWWWW I HATE THAT!!!! I had to buy that gadget you can stick your hard drive into to pull them off. SO SUCKS! Sorry. :0(,1 +Praying for your grandmother and your momma. I hate that they are facing so much.,1 +bitch please your gorgeous,1 +i fucking hate that word hahaha.,1 +i know haha. 1408 is so gay. i don't even know why i'm watching it.,1 +omg - that sucks arse! I am so sorry =/,1 +Sounds like good times. I'm in the office until 7:00 and then I'll probably go for a run. I'm a fat boy getting fatter.,1 +Ye Olde Cock looks nice.,1 +sure you can I'll hide the flashlight. go emo go!,1 +emang lagu2nya emo? bukannya mellow? :D,1 +gitu emo jaman dulu ya :D,1 +Listen RayRay I gave you the lowdown as soon as I got it. I hadn't heard it b4 and I was shocked. She seems to hate his guts.,1 +I thinks you meant to say that TWILIGHT was epic fail not your mistake. I hate stephanie meyer and I've never even met her.,1 +lawl. Sucks to be THEM then.,1 +I'd die first. Damn fareway.,1 +LMAO! He's horrible. The Beatles changed the fucking WORLD! And are still an icon to this day. Who the fuck are you?!?!?,1 +I need to see how this ravin rabids game works first. It'd all have to be in the ass moving. Maybe not moving enough = bad oral?,1 +holy fucking jesus mother gad damnit WTF? wow.,1 +really? Thank fucking god for sleeping pills!,1 +dude that pic of you in the Gold 2009 flyer looks like a friggen glamour shot fag. hearts!,1 +Eff yeah! give @jeffreyparadise and @richiepanic a slap on the ass for me,1 +you are fucking killing me. Please come to a party at my house next time yer in LA. Rice pilaf will be ready,1 +I hate to open the flue after a long fall. We get birds or dead squirrels...totally scary!!!!!,1 +depends on how much you hate fighting w/your light. I read in the car a lot while hub drives so very worth it to me.,1 +he won't wanna pet the guinea pig?,1 +i'd love to visit (or live) in san diego cause of yr round warm weather. i hate cold so bad. crowds n traf would b my probs there,1 +no prob but watch out it's fucking addictive!,1 +re:fuck the creative industries blog post (at squares of wheat):I say:Waaaay too much empty rhetoric there. Be the Change ?,1 +Did...I mention that among my new disciplines are Dementation Dominate Presence and Obtenebration? I am fucking AWESOME.,1 +I *really* hate housework! Then again it was great waking up to a clean LR & kitchen! Maybe I should do it more often... :-),1 +I've been wondering that myself. Its been down for quite a damn long time... @tqbf any comment on that?,1 +well damn we should have had a tweet up. I was at Kona last night as well.,1 +ouch! Hope your alright! :S I hate Black Ice Almost broke my arm on it the other week :P,1 +eeeeew I wanna cum ;),1 + AAYE!!! richard gre is NOT gay-re :P,1 +fuck yeah bra,1 +nope can't deny that sweet face or lil schnauzer w/ ears~always wished Hildie had her pig tails~how is cropping still happening?,1 +Hey~~Happy New Year new friend !! enjoy the movie~ think of me when the crazy proff shows up..damn...can't remember his name,1 +#NAME?,1 + GOOD! Now u can bring ur happy lil' ass over here & help me finish hanging this garland. ;-),1 +Guess there wont be much skidding then. As is said hope you're on the ground floor or everyone will hate Green Grass and High Tides.,1 +The FA50 is a low key ultra here in ATL. It stands for Fat Ass 50K. Loop course so you could do 25K...Half Ass.,1 + me too!!! I also hate closing then opening then closing shifts that gets me all out of wack.,1 +says "no more pizzas for the situation room! or else we will be fat when the war is over...",1 +hangs longer than u while u lay there on ur ass! 1 day u gonna look back @ these days & ask urself where did ur life go?,1 +I slept horribly. Kepted waking up every hour. Kept tossing and turning. Argh I hate having to work today! Time for cardio!,1 +if you can get me a signed copy of Jordan's book....we'll pull some qoutes during shows. That guy kicks ass muchos muchos wow,1 +wErd... you pick out (2) kick ass hip hop songs and we'll doit yo~,1 +hola! Orli ... we are www.LuckyStartups.com looking to interview some kick ass peeps in Israel... you up to it?,1 +yeah I did that a few months ago. How's your show doing man?? looks kick ass!,1 +Thinking about response/actions. Have decided its not going 2b ideal 4 anyone. Its sticky bc its family. Theres love/hate/dislike,1 +Not talking about incident but more so the attitude that I'm gonna bitch & make a comp do something on a subjective matter.,1 +she doesnt want to scar you for life like i could. cant talk her into sending you the video of they guy with the jar in his ass.,1 +when can I meet your uncle??? Maybe he could give a wiki demo to our loser peeps!?,1 +what a coincidence! I'm wearing my fat jeans today and it felt like they were my skinny jeans!,1 +sucks don't it?,1 +doc's a dick.. ill manage without injuring myself.. self inflicted pain would be desperate..which I think I am.. Siiigghhh!!,1 +Agreed! Twitter showed the way with the whale ;),1 +No- shopping isn't what sucks! It's the crowds that cause the trouble. haha! Love your website btw!!,1 +FUCK YEAH BIOSHOCK! Tell me how the apartment hunt goes!,1 +Merry Christmas to you too Casey. For tomorrow. Er or today. Grrr damn time zones....,1 +Are we going to see an appearance of the 'fuck me' boots? :P,1 +Sounds more reasonable. I hate having to buy 8+ presents for my very small family alone. Soulless Myer gift cards FTW,1 +Wtf. Fuck you,1 +Lawlz. yr a bitch. hoe.,1 +Sorry you bitch punched TEO.,1 +oh no I always try to make my desk look neat. Fail whale. There are always newspapers piling up cables are worse!,1 +Funny I always thought Job Security is dependent to how much ass you can kiss? (wait I guess they are one of the same if you think..),1 +Oh I know. It doesn't hurt to have one of the richest woman in the world actually hate you. Elvis had the Memphis Mafia. Oprah...,1 +Lol I'm not enough of a LOTR nerd to need to install Tolkien fonts. :),1 +it was a good show...dude! Did you call in gay rotfl,1 +hmmm....or do they hate you because you didn't let them join in the parranda? Nah probably the corp council thing,1 +LOL Hon I have been saying for a while now that this boy will be gay. It really bothers the hubs when I do so Im tryin 2b good,1 +lol exactly. "Hey guys how about a 13-sided paralellogram? THAT'LL fuck em up!,1 +Yeh but every nerd like to think he/she is devastatingly good-looking as revenge on those who snubbed them. Trust me I kno,1 +Gee i might if the person running this hadn't been such a bitch to me. I'll focus my efforts elsewhere thanks.,1 +haha you'd think so right? I AM giving something away though i'm just surprised cause it's that high..my sqz pg honestly sucks lol,1 +heh i'm a thunking (friggin hate that word - 'thunking' how daft - anyway) - is it a CON?,1 + i just fucking beat you!,1 +HOLY FUCK! that was one tough fucking cow!,1 +yeah i know but its also too bad about the children ya know BECAUsE I FUCKING WON!,1 +Heh his name's Jeremy (stupid little nerd but he's up for any challenge.) And he's about to break anyway.,1 +hippies hate that stuff... too chemical-y. This is true when used in ENORMOUS amounts.,1 +i have to go inside of you tomorrow. i hate myself every time i am in you. i feel cheap and dirty.,1 +#NAME?,1 +(RT) Fat Bastard (my beagle) is writing his "tail-all" confessional diary about online dating...,1 +- Fat Bastard sends hugs for retweet on Austin Girl blog: http://austingirlblog.wordpress.com (need feedback on writing),1 +jizz in my pants is old news nigga. Keep up LOL. instead of doing it locally just come over early and do it here. Fuck local shit,1 +@lastlee...that movie was good...not boring...very gay....but equally good,1 +fuck u and ur early screenings...jealous...prepare for tuesday mash...im coming with woody to freebirds/mash,1 +cant wait to get FUCKED THE FUCK UP,1 +well if they hate you are they still considered a fan?,1 +I'm kinda meh on it--It wouldn't even be a contest as Madonna would kick his ass while he was running around screaming.,1 +ok I take you off of my hate list and send you hugs I am in business..this is my alter ego. mwahahah,1 +http://twitpic.com/rt32 - omg :/ sucks to be u. hope u got some good tunes going makes it more delightful to sit through.,1 +it's one thing if it's my friends using it on me but I hate when 23 year olds message me on OKC and call me that or Older woman,1 +that would be one shocking pussy lol,1 + Totally agree with you. Fuck Prop 8. very cool that apple came out publicly against 8 on the website.,1 +u know that's what I hate about Ohio seeing grown up idiots in shorts when it's freezing outside :0),1 +fuck yes,1 +:) if she is a dumb hoe why'd he put his cock in her?,1 +still nothing. Lucky for you I have the free time to hop on twitter and remind you that you still fucking owe me.,1 +charter sucks as is nothing but trouble - att needs to roll out uverse faster!,1 +did Santa cum n visit u huny?,1 +nice voicemail... i didn't enjoy it cuz i am a bitch.,1 +summer workout tape? How you gonna workout to Kanyes depressing ass album ok maybe 2 songs,1 +Well I I said some words about Pollgod that i didnt mean because a SP member was being a fuck head lol,1 +i'm with you on the new yrs res! i'm 10lbs chubbier than i was 8 mos ago and i ALSO thought i was completely immune to fat! :(,1 +Oh you bastard. You couldn't wait until I'm not busy. I'll probably catch the tail end again. Damn it all.,1 +How is the Loser episode? Lotsa crying??,1 +I am Dutch ;) Over here there's a difference between the fat ho-ho santa and st. nicolas (sinterklaas).,1 +fuck off!!!,1 +ducking ducking ducking. Stupid ass autocorrect,1 +DAMN TJ You getting called out in songs now??!!,1 +LMAO!! I aint gonna front shit did look kinda moist! Ol Duncan Hines Ass!!! LOL!!,1 +my programs is telling me the same damn thing. WTH!?!,1 +I wanna see her tall lanky ass playin tennis lol,1 +The guy who runs it is a major dick underpays or doesn't pay models. He's harassed me and belittled me.,1 +Yeah it was four years ago but I have a long memory. I also still hate the Avalanche even though they've sucked for years. :},1 +Grew up a Habs fan which meant I had to hate the Leafs when I moved to Toronto which meant embracing the Wings.,1 +Wilt fresh spinach with hot bacon fat and top with bacon!,1 + Graphic novel class? I hate you but I love you but still I hate you and oh yesh Hows ya boy JImmy?,1 +usually if I am at the point where I'm ready to say something mean I will click away. I hate mean people. hate them.,1 +yes it's winter time and i'd hate for her ears to get cold out there on the ocean city boardwalk.,1 +Now I know you're really are GAY!,1 +Me?? Hairy ass??? WTF?!?! I would laser that shit...,1 +which keyboard do u hate? I hate iPhone keyboard. Yes touchscreen is cool but I WISH I had actual buttons 2 push! Less typo's,1 +write more books sccessful new venture with me &bring fat fat 2 L.A. so we can hang out and buy our sons a bunch of cute clothes,1 +Fuck you McGaffigan. I WANT TO GO. NAO!,1 +You can stop voting now. Holy fuck. If only McCain had you on his side and you were 18.,1 +You bash Nickelback but you listen to Staind? WTF?! I hate both btw.,1 +I nominate @Badhorse_ for a Shorty Award in #green because... Why the fuck not?,1 +Joanne Angel? You know how much I hate you right now :p <3 XXXorcist,1 +I also lost my wallet over the weekend! its sucks in my case I was just dumb and appear to have dropped it somewhere...,1 +dunno I just saw her go at the top of stairs; It seemed like an ass slide.,1 +It's just crazy. This boy is fucking up my sleep schedule. Probably why I don't mind too much. ;),1 +RE: Hugh's daughter. I just hate to see when a female CEO step down and says it's so "company can evolve" AAARRRG!,1 +like tha new 50 shit fire. finally sum club gangsta shit i neede that!!! hook is catchy as fuck and 50 whas rappin good.,1 +i fuck wit u. u got skillz homie.,1 +-- damn fool. you're a 247 workhorse!,1 +#NAME?,1 +-- damn homie ... in highschool you was the man homie. fuck happened to you?,1 +--- that shit right there fool ... is FUCKING TIGHT!!!! --- http://tinyurl.com/6fro26,1 +no. ur 13 get the fuck off the internet and get back to playing with ur easy bake oven. stupid parents buyin brats iphones.,1 +if Q is there tell him he sucks. He's dark and plays suspect lol,1 +thats the only set back and its a bitch to send ish back,1 +blocked. What a fucking load of old shit.,1 +lol the fuck what concert was that,1 +because I hate you. The last one I rewrote cuz there was a typo and it was bothering me,1 +oops but you're forgiven. Hope they win. I Never had a good exp. with a shelter they hate us military types. Glad you did though!,1 +fuck yo couch,1 +ground her now and she'll kick your ass lol,1 +can't make up my mind. Go out w my girl vip style and leave the dog home alone till morn stay in or go to a gay pj party,1 +Oh Hannah I am so so sorry for your loss. I've done the deathbed vigil and it sucks. I hope your pain eases with time. Love,1 +Happy birthday you damn sexy hobo!,1 +I'm celebrating and drinking to the fact you're an annoying fuck :),1 +I'm doing nothing. I was thinking about going to the Flaming Lips concert but hate going alone.,1 +dude the talk about universe at #LeWeb is awesome. As a nerd guy you have to watch it,1 +Jerry IS Cowboy's problem. He won't hire real coach 'cuz then the credit wouldn't go to him. He's poster child for attn whore.,1 +u r pussy. lulz.,1 +don't you just hate that?! Especially when it is over the most irrelevant crap,1 +yes. Freakin 17 and in college since i was 16 ugh! It sucks. Hah,1 +Then why u cryn? Hate'n on me.,1 +If it wasn't for AT&T's spotty network I'd switch in a heartbeat. That's where Verizon kicks some serious ass.,1 +you fart like a fucking bass drum lol,1 +what da drilly wit dat do! ...oh and i STILL got distribution in Japan...damn that chick was the worst that night,1 +yeah but w/ that running time u'll be there 2morrow. that mmovie is long as fuck.,1 +damn bossman let find out u got 2 jobs. what are u a single parent or somethin'?,1 +no-sign. i dont fuck with "rats",1 +http://twitpic.com/s13a - omg i hate scottiethehottie!! he is a retarded spammer!! he is photographer08 (it got deleted ...,1 +no fuck you,1 +I don't bother arguing that about Bush anymore because people who admire him have damn near no power post-2008 elections.,1 +do you think you are nudging me to change my update...WHORE NAILS!,1 +thats what you get for being a fat ass....FAT ASS...,1 +I HATE YOU!,1 +i've been on twitter 1 week and am about 20 shy of 500. does that make me a loser? LOL LOL LOL,1 +well either wy thy like dick wayyy to much.,1 +omg son i JUST figured out how to reply to youuuuuuu. i hate this lmao,1 +fail whale?,1 +cluster fuck indeed.,1 +- you can trust me to do my part to help @adam_callender win his "biggest loser" contest. ;),1 +Dang I hate the little buttons. GO BACK ONE TWEET!,1 +ironic - I normally hate plastic 4 environmental reasons- this time it actually saved some of the patterns from the wet grass,1 +God Damn !! Ok ... How about Peter Duncan then ?,1 +damn you overload issues! :(,1 +that's killer. Wish it was even cool here. But it's been damn near 80 most of the week. No where near festive temps.,1 +ugh yes. I am a consumer whore... "and how!",1 +SHUT THE FUCK UP!,1 +i hear ya. iPods can get annoying with that damn clicking noise!,1 +dude...if u didnt tell me how 2 do this fucking thing(twittr) i wud prob still b lyk nowhere with it!,1 +Don't you just hate deciding on things.,1 +eddie izzard says the brits pronounce "herb" with the h "because there's a fucking h in it.",1 +I feel like such a nerd watching this! I LOVE IT!!!!!!!!!,1 +#NAME?,1 +wtf? That is so gay.,1 +Would you believe the same article said eating less helps us live longer too? Damn those scientists!,1 +YOU"RE A GAY!? .... =) I <3 you,1 +There's some dude at this bar that totally looks like you. Should I kick his ass for impersonating?,1 +all these awesome people just flock to me. Guess I'm about cool as fuck.,1 +@KitchenGirlJo what's the fail whale?,1 +oh LOL I use a client so I never get the fail whale :-p,1 +could be that I'm not typing hard enough? happened a lot more when I first got this laptop about 3 weeks ago. Sucks ass,1 +you're a fucking bully man.,1 +damn son,1 +fuck the world? Or for the win,1 +http://is.gd/brVS (iTunes) or http://is.gd/b4yp Antrel Rolle previewed today's MIN game on the Best Damn Sports Show Podcast.,1 +oh come on. I mean we all love to hate MyZou but it's one thing to hate MyZou and another to take a time machine to the 70s.,1 +no i dont! He does. I hate his guts!!!,1 +this makes mme smile lol. I hate him. But we still dont bring him up bc to us he is dead and non-existant.,1 +i hope so that way i can fuck him over continuously.,1 +your a effin cunt! Ihu!,1 +dude that sucks man!,1 +Im glad to meet someone with similar FREAK gifts to me. haha,1 +read the emacs-rails codebase and then see why emacs is just damn cool,1 +omg omg omg! finally the shoes r coming out yay yay I want them so so so SO BAD! =) fuck cancer! =) this literary made my day,1 +god a free cure show! damn! I didn't know about this & I live close! ugh lucky lucky how was it??,1 +Girl talked to Black Milk on the phn for an hour. Watching "Big Bang Theory" drunk as fuck eating cereal & its cold in the D.,1 +Are you out celebrating your birthday? If so a birthday drink is ok! But don't forget the marathon. I hate being such a stickler.,1 +Damnit. I've started a new short story. About a dentist. Fuck.,1 +All of my friends are married gay or have been burned so badly they don't want 2 even think about another relationship :o( I've,1 +Well if he's a pussy he surely isn't that man of "substance" your looking for lol...Don't settle when you know you want more.,1 +the fail whale?,1 +Damn you've had more jobs than um er well you're just always employed! lol,1 +lol maaan-fuck this!! I almost busted my shit like 5 times tryna walk on this damn ice!!,1 +burger in each hand? Wut a fat ass!! Lol,1 +yo I only peeped the last 30mins-and I saw here and THOUGHT it was her but figured "naaah this bitch looks way broker" lol yikes,1 +Yeah! id do her like my nigga did them white chicks at the club on Knocked Up...I fuck the shit out u old bitch but no clubin,1 +yeah she pretty cool but she got moments where i be like ehhhh idk! now id fuck but the ass lick wud depend on the nite,1 +Son i just got finished watchin Big Mommas House...WOW!!! She damn sure can...and she a MILF so thats a bonus,1 +yep ur an uber nerd now,1 +and @rapperbigpooh. Was that Sheila easton? Nah...it was that chick that used to fuck with Prince right?,1 +Damn fucking skippy. I'm onthe same shit,1 +Oldest son just turned 19 months and youngest is 5 weeks old. Damn dude u look too young to have a 17 year old! :),1 +Bill Donahue? Seriously? Ask him why he uses hate speech against gays women and Jews and maybe I'd listen to his complaints,1 +I used to do the shopping but when my wife stopped worked a few years back she took over. It is just damn cold until April,1 +I just got done busting my ass for the day. I need Booze!,1 +I nominate @IgortheTroll cuz he's thee Best Damn Troll we gots!! ;)),1 +thats why I hate megavideo. I'll see if I can get someone to update the episodes with an offshore video hoster.,1 +What a cunt!,1 +that sucks loxy. I wish there was smtg I could do! Is chury back in cgy as well?,1 +and the arabs pussy count reaches 250 million. There I said it we're all a bunch of pussies. No offence to the pussies,1 + yeah its seems like most of the time unexplained highs are related to a bad site or fat delays,1 +duh! fat fish and winning the lottery go hand in hand,1 +#NAME?,1 +-politicians should have to pass an ethics exam 2x yearly. I wonder if that's a piss test for them?,1 +I think that's another one that I haven't seen that makes me eligible for gay card revocation,1 +LOOOOL TA PHOTO =D !tu as aimé silvester ou pas ? :S jamais bourré ensemble -_-' mais trop chèr là-bas LOL et le GAY MDR ! lieb dich,1 +Alors NERD s'était bien ? vous avez du être folles pendant lapdance XD à SAMEDIIII <3,1 +np you are happy with the service? do you have anything to compare to? I hate 3 not working out of cities. and whirlpool likes exe,1 +lmmfao! Shuddup! Any grown ass man that let's other grownass men call him Timmy is gaaaaay!,1 +both think I liked the first one better. They both beat Harry Potter though that damn rubbish.,1 +look im sitting at home twittering my ass off on a friday night. I should know better then anyone lol,1 +lmao damn right but we aint talkin bout me here,1 +I fuck wit the lows if there dope...but I know y'all got me fam I ain't trippin,1 +lol britt just said it look like a big ass pillow fight outside,1 +Wow that sucks.Merry Christmas to you and your honey (wow we are both celebrating 'firsts' on that one) -The Bs,1 +Damn skippy. I demand to see you before I leave. You going to come meet BlendMom?,1 +Arsclan would freak on u. Tower Def. is build series of midieval like towers (upgradable) near a pathway of continual attacks.,1 +Some liberal gay atheists or Republican fund raisers should jump on that. ;),1 +what are you gonna stab a bitch with? scissors? knife? spear? sword? cock? pencil? dildo? cattle prod? broken glass?,1 +I once let a Delta Chi fuck me in the ass in Raleigh NC. He took me to Bahama Breeze and that sealed the deal- doesn't take much.,1 +are you sure they weren't looking for my blog w/ "wine bottle in ass"??,1 +i like to fuck when i tweetup.,1 +$10 for water is better than the throat fucking i got for free the last time i was there.,1 +better give @dochobbes the #nerd prize. he's the nicest nerd i know.,1 +dude the ep is sick..Pussy and Tween Me & U are my Jams..,1 +LOL I did zackly same thing! BTW thanks for leading me to @ChipEFT Just reqd Born Loser's Guide to Abundance! http://rurl.org/18kr,1 +damn those Jets! Hears hoping for happier fucks in the future. *blinks*,1 + My pussy is still sadly missing. *blinks* Do you think this will affect my popularity. *evil grin*,1 + *shakes head @ you for calling Kitty a pussy* He's a BOY you know! lol,1 + I work with a very limited bankroll. When I'm running bad I HAVE to go for broke. Now up for the night. Also fuck poker.,1 +I hate those backgrounds because you can't click on any of those listed links. I find it frustrating.,1 +Yes there is definitely an element of Bush fatigue in all this. Can't wait 'til we can ship his ass back to Texas.,1 +dat bitch left u lol,1 +no fucking crazy josh!!!!,1 +no!!!! Ahhh he is fucking crazy hes been killing himself since yesterday still nothing!,1 +call me emo again and i'll cut myself,1 +i hate that i know some french...and the french you used was the french i know,1 +@Dncr1804 i don't even know what i did or said that was "emo-esque",1 +*twitch* I. Hate. You. J/k.,1 +oh man that sucks. I'm sorry. Sucks to live with people who are dirty..trust me I can relate.,1 +I felt the same way 3 weeks ago. And then proceeded to watch the whole. damn. thing. lol,1 +Well you can send me two and get fat on the rest :),1 +you were right the uv filter that came with that kit sucks. freakin glare spots all over my shots,1 +a party bored as fuck. God I need a grown man party,1 +it's like gay people using the f word. somehow allowed.,1 +Damn that is so unfair. Where is the version of Firefox for white slightly balding men.,1 +Can he seriously help me out or are you taking the piss of him :),1 +home now. Misses wont let me drink beer tonight cus I gotta do shit tomorow morning.Sucks.,1 +man it sucks dont it.On the plane home yesterday i was in agony with the cabin pressure.My ears still are not right now :(,1 +So if lifes a bitch and sleep is the cousin of death that whole dam family needs help!!!!!,1 +tell them to fuck off give it a few years then laugh at how much better you are then them.,1 +depends on your plan. if you pay out the ass for it no.,1 + That's a very interesting point and one I hadn't heard before. Copper for elec motors? Damn I love twitter.,1 +agree entirely. I'd hate to see a graph for my twitter input this week.,1 +guy walks in to a bar with a duck on his head. The bartender says can I help you. The duck says yeah get this guy off my ass.,1 +- Nazi and Facist... I could you call you a commie pig but that's not very gentleman-like #Gaza,1 +I miss being here...wish they had corporations here instead of a damn AQUARIUM! I miss Jimmies hotdogs...that dog food be JUMPIN! LOL,1 +dupa cum vezi eu mai putin cu excelurile mai mult cu povestile ;o],1 +I nominate @yiyinglu for a Shorty Award in #design because...he designed the fail whale :-),1 +Lol why do you do this?! I hate your guts :-p,1 +But now I really want one damn you! i hadn't even realised I NEEDED one til you told me they existed!,1 +niiice likewise...sure the boricua gave that away. ah yes we boricuas have good taste (Rob Pattinson) hehe damn sexy brits lol,1 +i hate having to wait till jan. for the big game lol tedious i tell ya,1 +would be at least 4gb at a guess. I ain't using it ATM if you don't leech ur ass off you're welcome to lend it,1 +meh. All year round baby. They're actually growing like fuck at the moment except for the caterpillar incident yesterday.,1 +don't hate on ghajini. It was an awesome movie.,1 +If you're hard at work or just leisurely reading you're not a poser.,1 +God Ashley is a bitch but still congrats! :),1 +I cry but then I'm just like that fucking woman is a bitch. God I hate her!!! (Yolanda) I'm getting mad just thinking lol,1 +lulz. fat chance! good news is no bacn from friends adding you :D,1 +Looks like lobby card for "Ocean's 21: On the Half-Ass",1 +Check @ replies from hahlo twhirl tweetdeck et. al. they reply to the user not specific ID. Makes following convos. a bitch.,1 +unless Adobe gets their head out of their ass Flash will die because mobile will be the dominant platform.,1 +Lobsters and ligatures? Are you a Portland-area type nerd then?,1 + touche (i hate getting SHUT DOWN. I guess that's what I get when I pray for humility.) at least I am a better student t ...,1 +So it seems you are an attn whore.....no comment. ;-),1 +posted the fat man version to the beyonce song.,1 + Bitch you wish. Keep dreamin... =],1 +ahah! and i'll say exactly what i'd say to him: "bitch make your own!" i kid:P,1 +lol i think she's a huge bitch BUT she's good at what she does and is entertaining at times :),1 +AH! i was too! I hated that bitch. I want Bob or Sugar to win:),1 +I prefer women to be fat in other places anyway. Fat toes and earlobes are so cute.,1 +nigella is a bit of a tease I reckon imagine how fat you'd be stayin at hers,1 +twinface it's ATCQ...your drunk ass can't type lol,1 +there only a few shows i really look forward to seeing. i hate when they put a reality show on instead with no warning.,1 +Compared to Eeyore and that stupid bear and that demented pig? I think he’s fine.,1 +"""See I had to google """"cloved lemon SCA"""" to figure that out. ",1 +Who owns one - I just fix 'em! Hate it when electricals go to Hades.,1 +unnecessary. pain in the ass. too much effort.,1 +damn ecoterrorists! he shoulda just rented a helicopter better for the enviroment anyways.,1 +Yeah i'm with ya...I hate to see guys get hurt but it's a little easier when it's Roth..if only it had been Ward or Polamalu,1 +Yeah especially if they're those big-ass soft pretzels. Those things are the bomb-diggity.,1 +just read the archive artile on your old site. love the jones comparison. how much hate mail did you get?,1 +i forgot 2 call in gay 2day too! blast!,1 +We miss you back. My Haiku: Famous Dickenson Exactly Why - I'm not sure. Her poetry sucks.,1 +He was just being a dick in H CoT4 his attitude caused wipes which made him a bigger dick. It was a vicious circle.,1 +How you gonna call me a hater? I'm entitled to an opinion and that opinion is SB sucks hog ass. Don't give a f!@k about it,1 +heard there were 2do fairies tht come & do ur 2do list if u put a list by the freplce (kinda like leaving cookies 4 the fat guy),1 +i got the 8330 bigger keyboard I got fat thumbs,1 +yo... you should have another show tomorrow cuz we had to record the past two days... damn albums...,1 +ok i can't believe i just told the haters on Momlogic to kiss your million dollar ass.,1 +oh gdnss jus saw vlog. WOW I met that fool yrs ago @ MJ restaurant DC. What a loser!,1 +I was trying 2 use it the other day also & had the hardest time. I said fuck it &just called the person. It wasn't working.,1 +Yeah I was just saying that. Why did CNN decide he would be a good move? He sucks!! I try to support but I can't.......,1 +We loovveee chicken. Damn i do also so I really shouldn't complain. And since I found the chicken i am in a better mood.,1 +social network whore!,1 +why do i hate DMs? so many reasons... one is: you can't send them to someone if they're aren't following you. what a pain that is! :),1 +another reason I hate DMs is: they ring in on my SMS even though they are often lame ads and not urgent for the sender nor myself!,1 +I responded and asked you but yes it does vary. Some think gay marriage is immoral. I think those people are bigots.,1 +I hate you with the hate of a thousand hates. ;),1 +Now wait a second mr fanboy. You cant judge it without seeing it. You already think it sucks and its not even out.,1 +Clearly manufacturers rarely use common sense to make customers happy when they can easily just piss you off and make $$$$,1 +That really sucks I'm sorry. I'd get shitfaced with you but I'm stuck up here on the plateau.,1 +Fuck no I don't feel silly. I worked hard for that.,1 +wow bang bros was the ish...haven't watched it for a while tho! :). damn now I wanna see that! LOL,1 +damn prolly not! Now I wanna know! LOL,1 +Well DAMN...Thanx For NOTHING!,1 +listen to u...who's the FREAK now? LOL,1 +hmmm...I had a feeling bout u! but Damn No Label?? wow,1 +you COULD be jobless! Praise God for it! despite how much ya hate HOW it comes at least it's coming IN rather than OUT. LOL,1 +Ohhhh jeez. That sucks... I hope she gets well!,1 +I don't have a damn clue what you're talking about. I'm just now on Better Halves.,1 +pussy!? :),1 +dang...i need to stop eatting cheese. Damn you kraft!,1 +Oh jeez I had mercifully forgotten about fatman. Should have been "assholeman-who-will-piss-everyone-completely-the-fuck-off.",1 +Sorry man hope you stop ass bleeding soon. (wow that was awkward just thinking about it),1 +http://twitpic.com/t9za - Hahaha! that looks so emo...poor guy thats y i prefer drums,1 +I guess that song represents Bono's "dark" period. Fuck saving them. Be happy with your wealth.,1 +I always respond to that use of gay by asking if the subject really is "fag-o-licious".,1 +I hate nearly everything about the first two HP movies.,1 +George Lucas' Guide to Sucking Cock?,1 +Yah after more tries than I want to cop to. Damn static in my place is making the laptop jump all over the fookin' place. AUGH!!,1 +Yah you'd think I'd lose some FAT doing' all this shovelin'. But I guess eating brownies when I'm done negates something! Hah,1 +I had no clue...Damn Homie!!!,1 +Damn! Break me off some bread!,1 +damn Dame lil Magic need some signings... He love Boobie,1 +Man!!! You got out that garage hit them stairs so damn fast!!!!! lmao!!! Im like look at this nicca... lol..,1 +Seriously! 'Oh Great a giant American flag! WTF are we supposed to do with it? Fuck it send it to Price is Right',1 +@nakedbard I always hated when people bought practical things like carpet or knife set. BUY THE FUCKING DALMATIAN PEOPLE!,1 +You know damn well your boss is going to leave early. When the mouse is away . . .,1 +"""It was not fun",1 +I hate you,1 +im not sure if i should taunt you with how awesome it is or say im surprised it took this long to get snow hate twitters,1 +omg i would shop my ass off but that's because i have like zero long term goals :(,1 +Better than that shit ass falafel box you eat once a week I'm sure ,1 +thank you she's such a big baby. lol But such an incredible dog. hate to think of life without her pain in the butt self,1 +it really depends on the situation but when I get mad I just call old girl up and get the freak on,1 +Take Ur ass home,1 +HAHA...emo lawn. I dig that!,1 +lol...i disagree...Dick in a Box got too built up for me. It's funnier now...but it wasn't when I saw it. :-( jiz in my pants rocks!,1 +on dude......a whale remember,1 +i am doing no such thing fuck you,1 +You didn't imagine it. It was the "get away from her you bitch" climax scene being parodied.,1 +we could call it nerd land and charge ppl 2bits a gander :),1 +yeah fucking predictive text,1 +omg I know everyone tells me I'm a twitter whore lol,1 +Yeah she did this huge ass rant to me about how i'm going to die alone and how i'm going to regret ever breaking up with her.,1 + doll you know i'm fucking feelingggggg you! thank god you'recoming this weekend so it forces these fuckers to get on it.,1 +"""",1 +"""",1 +Yeah they seemed to have fixed most of the fail whale problems.,1 +Hell yeah the drunker the better...is drunker a word..more drunk? I think its more drunk? Fuck it our show is hood. drunkener,1 +fuck no I don't want to be PM or even a politician. I'm just tired of getting anally raped without any lube.,1 +seriously. We're fucking SOFT in this country. The French wouldn't put up with this shit.,1 + pissed off? I'm ready to go Mumbai on their fucking asses. We're too soft. We need to start blowing shit up.,1 +ROFL! You got me. Monkey would totally kick Bruce Lee's ass. I bow down to your superior wisdom.,1 +I wonder if can write "Kevin Rudd Is A Cunt" for the next 30?,1 +they won't let us live anywhere without coming up our ass. I want to move now ):A,1 +great :P that lady is a cunt that serves me right for getting excited over something,1 +FUCK YEAH RYAN ROSS. il his lyrics way more than wbeckett's tbh i donut care if they make no sense. BTW rolling stone FAILS.,1 +fuck u asshole we aint even watchin the game shyt we slda goten closer so i cn c betr.how r those cheerleaders 4 ya,1 +ud lyk it if they suxd ur dick.bt id kill them rit b4 i killed u.,1 +hes goin dwn!we cld kick his ass n dominate him,1 +maybe he sldnt cum out in his mofo boxers n dance around hes guna b jumpin around n his junk fall out,1 +yeah..what is it that u called me? "ass clown" LMAO..i was like uhhhh welllll then hahahaah,1 +Ohhh I hate snow days because then we have to make them up later.,1 +WOOT!! 8 pounds is AWESOME! YES you can! 1 pound at a time... I need to get my ass in gear ;),1 +damn why don't all harem leads shout that kouhai~? would be interesting the resulting chaos,1 +@icystorm I think the thing to note here is that everyone has an emo phrase re: romance in high school and eventually it blows over,1 +What happened in '93? (Also I would have accepted "29-5-4 bitch"),1 +Sure glad you found something better to listen to. Would hate to hear you make the news "that" way,1 +Awesome...Love it or Hate it...An Atmospher of Change...is HERE,1 +Top three tips: 1) scan updates 2) pay more attention to @ replies and 3) set time limits before it sucks your day! ;),1 +I find the exact opposite to be true. I can review a book I hate in fifteen minutes. Good books take hours.,1 +that's the coolest damn thing yet! Have you put it on your own website yet? Its a pretty simple ap just don't use huge pics,1 +Yeah I was teasing Dad he got a new snow blower and I said as much as I hate rain I don't have to shovel it get home and SNOW!!,1 + OH AND! that guy in dark knight totally was wearing guy liner... he's gay!,1 + Because they are FUCKING DUMB and annoying,1 +Damn how u burn spaghetti?,1 +- Oh yikes! I hate that. Will she willingly use the toilet for it? My boys won't.,1 +She says i have gubgivits? teeth thingies and she stole more blood. every six months with the blood stealing it sucks.,1 +will ferrell can suck my dick. go on yim!!!,1 +church can also suck my dick.,1 +seriously. so precious. I laugh every time i think of Nate rocking out to that shitty ass band.,1 +I may hate you a lot right now. Please die? :D,1 +hahahahahahjdshgskdg I hate you. So much.,1 +my job has made me feel like a tool so i am trying to change how i consume things. fucking cvs.,1 +holy fuck. i would just make pasta or something if i were you that is ridiculous.,1 +if you're going to have to spend that much for a fucking pizza at least go to mellow mushroom or somewhere not disgusting.,1 +Frankly I'm shocked that they use coal at all around here... HELLO!!! Hydro anyone? There's a fucking OCEAN right there!,1 +work on this glorous sat. with this crazy ass shoppers,1 +what happens when you run out of Word of the Gay words. :),1 +THAT WAS FUCKING EPIC.,1 +I nominate @PhillyD for a Shorty Award in #entertainment because he's emo.,1 +admit it. You're secretly in training for RSA. @beaker who? I can see it now: Cigar red-bull and can of whoop-ass. Nice.,1 +lol yeah I coulda told you that cuz I'm a big fucking dorkass about that movie as wel all very well know :) I actually had a dream,1 +meeting friend for lunch/coffee. Getting hair cut (although I hate that bit) and my works do in the evening!,1 +yea..brang yo ass down son :) I'll be @ Essence again...Staying @ the W! (thanxxxxxx Sony woop woop n da poop poop),1 +I hate weddings.. u shud be grateful for being male not worrying about what u got to wear.,1 +Dick Whittington's Lolcat: I WAS DOIN CAPS FOR LOLSPEAK SORRY FER CONFYUSHION :( #twitpanto,1 +http://twitpic.com/vk9k - Dick Whittington's Lolcat: NICE SPACE TROUSRS BOSS #twitpanto,1 +twins! we've been watching this one guy he sucks with a hammer,1 +PETA is an ass in the article D. Big time.,1 +canadians always make me think shut your fucking face uncle fucker! http://kenny.smoovenet.com/grabpics/terrance.gif,1 +oh in that case. WTF thats some ugly ass shit to do.,1 +"""midget w/a hookhand hangin off your collar"" IM FUCKING DEAD. BURY ME. D-E-A-D DEAD.",1 +i hate people sometimes-today is one of those more than usual days,1 +YES. the thing is big enough for my ass plus another half. its like my parents couch.,1 +well shit then I know I'll catch on ... who the fuck wouldn't be interested in what I have to say.. LOL!,1 +lmfao HURRY AND GET THE FUCKING LYRICS.,1 +ill settle that bitch down real quick ,1 +you work in cape cod. why the fuck am i up so early. argh stupid cousin &brother.,1 +damn! twitpic that shizzle!,1 +Exactly! Damn cops disagree though,1 +dont hate ur life! =_=,1 +dont hate!,1 +I hate ism's as much as the next guy but when the shoe fits...,1 +Oh conservation you mean! That is a good point. I admire many socialists but hate their ideals socialism brings with it.,1 +can you tell loser tudds to turn his fucking phone on...,1 +whoever created chocolate pecan pie thank. thank you for my big fat ass.,1 +if you hate sprint. try jogging. and stop once and while for eggnog.,1 +cont. and you must RT EVERY LITTLE THING someone says then DAMN do I feel SORRY for you and your friends.,1 + RT this then GO fuck yourself stay the FUCL out of lives and HOPEFULLY you'll die a Horrendous DEATH for all to WATCH ,1 +Do you realize your comment on parents dying comes off as a tad insensitive? like a "sucks to be you" comment,1 +you won't die in Queens we're civilized here in Queens hell there's a Starbucks & McDonald's on damn near every corner have fun,1 +What? Yours WORKS? I hate you.,1 +"""hey've just proved how fucking irrelevant they are"" ..By making you go and read them?",1 + sometimes I hate how contagious US culture is,1 +The eyes followng me are creepy. Damn creepy. And that smile makes it worse.,1 +cock flavored seasoning?!?!? wtf,1 +That depends on if you are dealing with a pain slut or not.,1 +You're going to find a woman and tease her to make her have to cum silently at work?,1 +Exactly. Poor kids. That damn thing has me watching weird videos on YouTube now. Argh.,1 +She's probably saying all kinds of phony shit and giggling like she's 13 years old. God I hate her.,1 +She makes me sick. She thinks she's cool and youthful cuz she watches that show. Phony bitch.,1 + LOL FAT NIGGAZ UNITE FATRON!!! HAHAHAHA,1 +let's be gay together!,1 +THE NEW FUCKING GENERAL OF THE WORLD THAT'S WHAT.,1 +hahah word ! their set was off the fucking hezay,1 +damn straight you do,1 +well mine are double flared so they are a fucking homo bitch cunt to get out. aggrivation!,1 +i hate you,1 +Kurt you're on the most watched tv station in central Ohio your ass should be #1 already LOL. I'm just cooler than you!,1 +a) JTP is a douchebag b) Stewart kicks ass!,1 +I cunt wait for u to start shitting out the gifts I sent jew.,1 +what is this dick suck moment? lol. HAPPY NEW YEAR,1 +WPMU can go fuck itself,1 +there you go denying stuff again. until Maury clears you on TV w/ an "i aint yo daddy test " your ass is suspect.,1 +This week in fuck?,1 +I did ur mom last night? Naww I don't like old fat white bitches! ,1 +damn we got BWNT - where you headed tonight?,1 +Frickin turnovers! Dang flags. SD's gonna beat our ass and Denver is going to blow a 3 game lead. They don't deserve to win.,1 +I meant boo YOU whore!,1 +you are such a whore LOL,1 +- yep I'm a real ass. Everybody knows that.,1 + Wow...so you bought what's fashionable at...gay biker bars!!! Congrats!!! :-),1 +yeah u are!! Asian ass embrace it,1 +so when he laughs & comes down the chimney does he say "Whore! Whore! Whore!" and shake like a bowl full of jelly???,1 +How would you fancy being Jeff's resident bitch? Just his pet he can take you out for walk and stuff. Straighten your hair...,1 +You clearly said "Would I have to fuck anyone",1 +Lol. Ur a bitch. I've done Hondurans and Chileans and I don't need some closet gay Peruvian dressing better than I do!,1 +2008 is over? Damn what'd I miss! I quit keeping track of years after 'Buffy' went of the air...,1 +that's why I hate them. "Oooops why don't I go this way and destroy your whole story. Or maybe ill refuse to say anything.",1 +Damn cat. She snuck into Aidan's CRIB (1st time) he woke screaming - went in - he was squeezing her & she was kicking his tummy.,1 +(cont) I say the whole sheet costs $8.40... buy one of each and get the fuck out of my way!,1 +yes you remember me trying to keep *MY* lashes on for the awards this year- never fucking wearing those damn things AGAIN,1 +Called in gay? LMAO!,1 +this isn't hate this is survival for the eagles. stompin the giants alone won't get us in the playoffs. the cowgurls gotta lose,1 +the lox "f**k you " "keep it thoro" prodigy "we run this" fat joe "i come thru" styles and nore "broken language" smooth,1 +you sir are an ass. ;),1 +I never really thought about it but I nearly always eat a big-ass plate of spaghetti and watch Goodfellas on Christmas eve,1 + ARE YOU KIDDING ME?! Quick! Forget the prenup! Get lo-jack implanted in the new wife instead! I think he's an ass.,1 +that's weird because I hate them the second time I see them. First time is ok but they get old quick.,1 +because the sandman is being a punk ass ho...,1 +We just call that "whiskey dick.",1 +lol just rhyming gay i know,1 +i'm glad someone is teaching that 3-year-old how to "slap dat ass" :),1 +yeah but zro rly is the eMo city don,1 +Then you should make fun of her for not looking at your ass.,1 +i second that. i hate banks,1 +She can bust her ass on stage and GAIN fans You gotta love her.,1 + @Dave_Malby acting as Colfax Chick's agent! After 100 followers I will make sure to get her ass down here and tweet with everyone,1 +The fail whale was shown when twitter went down. It was a whale being lifted by birds.,1 +dont hate too hard! it hasn't been very warm here lately!,1 +fuck right,1 +omg! what are you in the mood for.. i crock pot my ass off!,1 +ooh im sorry my non celibate ass mourns for ur celibacy and it sorry demise my condolences http://twurl.nl/a16z8c,1 +damn kid...condolences homie http://twurl.nl/i3pwps,1 +I never took you for a sore (at least for the players getting kicked in the goolies) loser LOL,1 +@derekbender It takes a real scumbag to steal from a community. Whoever stole the foosball table can bet I will fuck you up.,1 +did you come up with the "server-hugger" moniker or what some other wise-ass?,1 +Pains in the ass cause that twitch!!! I am telling ya,1 +horrified mum can squlor (he hasnt been gone long enough) Im a chiness pig its what we do riding this till the end of 2008,1 +"""Big Ass"" was this past weekend and went well #2 (Last Minute Maul) is this weekend.",1 +you need some sort of ... ass whoopin...,1 +im not that crippled in gym we were laying on our stomachs and some fat kid landed on my upright foot and it hurts like a mofo,1 +that and "I'm not gay" aw I miss bonez. I hope he's not in prison.,1 +- you are a man of action. great work Daniel. don't forget to record your fat loss seminar!,1 +not really; i think i named all of them which kind of sucks.,1 +I thought Emo's don't "squeeee". I thought it was more of moan,1 +18 fuckin children. damn....,1 +he was given one extra ticket from a coworker so henceforth my ass stays here.,1 +I'm sick of this bitch. He's wrecked enough of my life and I want him gone.,1 +I STILL HATE YOU.,1 +sucks for you,1 +yeah cuz his show was on some wack ass arsenio for sports type shit they need him in a jim rome type setting,1 +was that a racial comment? on it's going down!! bitch!,1 +your mom/dad hate my monroe :(!!!!,1 +yeah dat bitch stabbed me in my eye when I was trying to hit the snooze buttone this morning,1 +Damn Danica! I know BK went hard but shiit...we evoke tears too? Lol,1 +I hate 2 sound like a nigga but...will there be food? Lol,1 +:(( @ tweet tweet you cookie crumble ass nigga,1 +his haircut look like them fast ass Black Beetles on Super Mario Bros.,1 +WHAT THE FUCK?! WHY?! Do they have fucking brains?!,1 +I would have done it by now tbh. I have no words except just WHAT THE SHITTING FUCK ARE THEY THINKING!,1 +in time for when I travel and the train company still refused to let me travel. The fucking wankers.,1 +i fucking hate when free 70$ cheques just up and think they can walk away,1 +Get Shit Done Day is almost over fuck it you should come,1 +fuck em!,1 +Thats what my aunt says. Still TMI. lol What are u watchin wit fat folks on it?,1 +*throws all 52 dollars in my pocket at you* Let me hit the MAC. Ill be RIGHT back. Hold that pose *forgets pin number* FUCK!,1 +"""loser""?",1 +ok I had to say cock-blocked cuz you know it's a rooster. But apparently favrd doesn't like me,1 +there was no fucking egg nog at the store i got a low fat chocolate milk fuck this bullshit,1 +Retard. Section E is?,1 +you need to work in that department so you can clean your smelly ass.,1 +I can guess smelly slut.,1 +bitch you wanna go? Ill kick your ass,1 +whoa be nice guys.. Whats all this FOOL and LOSER talk?,1 +wow.. Thats how people get fat haha,1 +I'm keeping it now *just* to piss you off. hehehe,1 +Or he's just sick of hearing me bitch about the cold and doesn't know what else to get me. I like your theory better lol.,1 +oic but what do you want sir? Did I get you a book on conspiracies and shit already? Yes I did hmmmm fuck thinks,1 +I would be saying the same damn thing about you. LMAO idc if I know you I'd be like see that ridiculous bitch? RI-DIC-U-LOUS,1 +wristband is shipping can they put those assclowns in the mail next to be delivered to an ass whoopin?,1 +the day after christmas and not yet :/ so I will be there early sigh fuck my life,1 +And I want a mansion in the countryside a motorcycle two cars wife kid dog and a big fat wallet that says bad motherfucker.,1 +fuck Dreamhost. that is all.,1 +Ooh You mean Whooty's = "Wht grls w/ bootys". LOL! my lil bro put me on to that corny ass saying.,1 +dude fucking seriously you watched hella now pay or wait an hour. bull shit. I want Stage 6 back!,1 +Gay!,1 +grab that... It's yours bitch!,1 +Okay now we've established that would you go gay for $7?,1 +gay people have just as much of a right to be as miserable as straight people! ;),1 +In Ala-God-Damn-Bama that would be Bidness Skool right?,1 +att is run by the devil i hate them,1 +#NAME?,1 +Damn............I guess he has a life :( hahahahahha,1 +Did you just call me a bitch? You're still upset because @CatalinaLoves is moving in on your bitch.,1 +you should start obsessing over him it might freak the delivery guy out.,1 +"""HOLY FUCKING SHIT THIS IS A RIP OFF OF ""foolin'"" BY DEF LEPPARD HAHAHAHAHAHAHhaahahhahaa fucking gay""",1 +lots of ppl i know hate the song. was spreading it around & most ppl ask me whats wrong with me hehe. i think its so fantastic.,1 +Fuck dude you manage to do this every week!,1 +yes.. flickr upload photo its sucks on eventbox.. huhuhu *tooos* gw juga gak make digg sama pownce,1 +I almost punched her vagina into the new year... grrr she was a cunt bag. How is your trip going?,1 +lets just hope i dont kick any ass. im in a violent mood.,1 +yey for drunkenness! fuck drunk dialing or drunk texting! its all about the drunk tweeting!,1 +hehe its all good. my drunken ass is moving off of twirl and to the crack...berry that is. :) feel free to txt me yo. 3204694136,1 +I hate when I text somebody and they immediately call me. Hey fuckface if I wanted to hear your ugly voice I would have called you!,1 +did i jus get a reply from an emo asian!? CRAZY!,1 +and yes. true life "i have tourettes" is genius. so is "i went to fat camp". lmaooooooo,1 +aliea you better stay away from jesse james joplin the third!!!!!!!! i don't give a fuck bitch,1 +get on messenger already whore.,1 +I just assumed when you said "meet" you mean suck his dick cuz that's what you do when you go to "meet" people.,1 +no im just fucking pissed at shit,1 +Fuck that shit. She wasn't even right about the older men I was hitting on.,1 +LIKE YOU HATE A HUNDRED DOLLAR TIP. the other strippers must be SO JELLY. JAAAAY KAAAAAYYYYYY,1 +OMFG. I JUST FIGURED OUT THAT @SHIT. AND MY FIRM'S IT GUY TRIED TO GET ME INTO CHUCK. IT'S REALLY NERD-O.,1 +I wouldn't with ur dick! Now u owe me one!,1 +like I said I wouldn't even do it with your dick!,1 +my dad started all this bullshit with my fam. He's such a fucking dumbass.,1 +why do i imagine gouthami in police dress kannu adchifying and asking u for a lift! damn i must stop these perverted thoughts!!!,1 +lock it yank his rights on both his accounts. He's been a little bitch lately and I'm sick of it.,1 +Then Clive is a total pussy and after reading his Dominion shit I do not believe that. Oh Clive so many missteps.,1 +fuck you,1 +Maybe you should get your dick out of your ear next time I'm explaining them to you!!,1 +Nerd.,1 +congrats on the Entrepreneur.com plug for Your Pitch Sucks http://bit.ly/pS0M !,1 +yo I will nerd out on this shit all day!,1 +dude ur wack ass better be playin at medium or above cuz u need to step up ur game if u wanna challenge a rock god such as myself,1 +fuck outta here - for reals?,1 +I LOVE how that statement was misconstrued as GAY!!!!,1 +LOL!!! VIOLATOR IS THE TRUTH!!! HATE THEM AND U MUST HATE URSELF!!!,1 +You're soft...Dude ran our country into the ground with no shame whatsoever...People need to be throwing boots fuck a shoe...,1 +Damn homie...I've got a comfy ass couch at my spot & zimbabwe that puts NYC to shame...You should have hit me up...,1 +Fuck that boo the DJs who don't play Che..Dude has at least 5 songs every DJ should be playin HEAVILY...DJs need to stop slackin.,1 +Fuck a serato record I was worried about my windows crackin..lol..I can live w/o a serato record I don't have a backup window.,1 +I think Bangladesh did "What's Your Fantasy" and fuck what anyone says that song is a JAM...can't front on it...,1 +grown ass kid lol,1 +hate it all you want but its a hit record. And Jumpin Out the Window is by Ron Browz. I know its gotta be hot in NY.,1 +women lie too. I know a bitch who was pimping herself out on craigslist. Yes craigslist. I didn't believe it till that email.,1 +Bitch I will cut you! @strong_bow Whatever happened to just smoking weed? @inject Because it makes us feel so good.,1 +beat that bitch with a bat,1 +biiiiiishop! - fuck u want? - yo ass punk...,1 +yo Zee you keep your hair tighter than frog ass.,1 +if you don't know who i am why follow me? get a fucking life and stop bitching about the past,1 +NOONONOONONNNOONONNONONONOONON cock mongler..... you didn't eve nstraighten it...,1 +I think i done bounced half my ass off LOL,1 +yo freak "sarath freak",1 +I nominate @jcroft for a Shorty Award in #down-ass-bitches because she totally is one.,1 +sucks man.,1 +totally agree dude. Pushed carts at Safeway for 2yrs in hs people are fucking retarded,1 +Love hate?,1 +Reminds me of another apt metaphor (Northerners say "fuck you" to mean "how nice"; Southerners say "how nice" to mean "fuck you").,1 +That's just one of many examples of Superman being a dick. http://tinyurl.com/5sgv8c,1 +"""run over my a Hyundai and ass raped by Clay Aiken."" I would so prefer it the other way around.",1 +well... the giant carts slamming into your ass isn't SOOO bad. But the sample hogs are pretty gross.,1 +@alwaysgayalways You both need to watch/rewatch it. But more to sate your nerd jones than your gay-wadishness.,1 +you'll be a a monit-whore.,1 +i hate you,1 +ohh damn bummer,1 +ohh everytime I see that nasty ass husband wants me to beat the shit outta him,1 +lmao!!! seriously and I live in the middle of BFE!! Will you combat being a glow stick or let winter be a bitch?,1 +haha naw pink fuck that! You just know what you want and I feel you. whoo-hoo! lmao!!,1 +no flash? how good is the "low light setting" on cameraphones these days? it pretty much sucks on my Tilt.,1 +They beeped out "cock" .. eh gad! What do they do with vera on corination street with here "Coming to the rovers cock?",1 +Loser! Are you back for Chrimbo or staying out there?,1 +you need to get rid of that game"COCK" you have running the team. Guy is a worthless crybaby just like all UF staff/players,1 +Holy shit just looking at that list pisses me off. Why the fuck are the Jonas Brothers on there?,1 +trade secret ... it's an animated gif. Woke up REALLY early couldn't sleep. My mind said let's freak out @CalamityJen more.,1 +I promise it'll go away as soon as @CalamityJen wakes up and kicks my ass.,1 +I know... I would like to find out if I am right... wow... I need to shut the fuck up...,1 +No can do Maria. I'm going out alone. Don't stress about your shitty wombat friend. He sounds like a loser. Get some sleep.,1 +haha. word. i'm having a glass of wine and retooling my erotica blog project. if i'm gonna be all emo i may as well channel it,1 +booooooo! i have some hot- ass mushroom stock if you wanna come get it after work,1 +amazingly i have yet to hit the one down the street with a molotov & scream "fuck the police" while doing so.,1 +My sis made me think @ your "Femmes & Fags" blog..she is a total boi but so extra that you would think she was a fag. lol,1 +Damn you mean I could have been rescued last night? Well fuck.,1 +lmao ikr. I knew you would hate it. I couldn't watch it without laughing hysterically,1 +@nannon_x who the fuck is charles? yoooooooooouuuuuuuuuuuu,1 +coz it is attended by a lot of FAT people. You don't want me to show you the pics do you? Oh you were in it too!,1 +No but "Listening to Deathcab for Cutie while missing Burning man staff party...etc" would have been way emo.,1 +you can have my dick. Its delicious,1 +Dig him up? Fuck that - I'm picturing next years Halloween costume already!,1 +I hate stupid people.,1 +Is like putting Lipstick on a Pig! You were perogued! LIVE WITH IT! #canadawest,1 +lol :-) I just hate that designers alwaysthink THEY know best and likewise other people are clueless. It's insulting,1 +yo i can kick yall ass for that synth in the begining..GOOD SHIT!!!,1 +Lemme make fun of you for crying at a dog movie for Pete's sake. Nerd.,1 +damn that is pimp!,1 +heh and then u yell "HOLY SHIT IM FAT",1 +HOLY FUCK!,1 +cuz montana sucks?,1 +your mom sucks BITACH!,1 +TWITTER SLUT!,1 +fine! i'll stop!! Quit stompin' my cock!,1 +my bleeping employment agency f***ed up my pay *again*. Didn't come on 24 Dec. Now have to wait until 2 Jan. I hate temping,1 +Well at least a swift kick in the ass. But yeah I take issue with some of these retarded names parents give their kids.,1 +Oh come ON... 1/10? That is fucking ridiculous... that's what you give a movie like Love Guru or one shot on a fucking celphone.,1 +Why does CHUD hate kids so much? 10 years from now they're your readers!,1 +i think that means ur gay. or a child predator.,1 +art IS easy. who the fuck gives A+s?,1 +bitch hurry up!,1 +lick on these nuts and suck the dick.,1 +Drake. He knows his mother was a bitch.,1 +whatever you do just don't roll your eyes. they hate that. those peaceful scenes fly out their heads and they WILL b-slap you!,1 +It's gay as fuck? I wasn't aware fuck could be gay? Why are you cussing?,1 +the cock is just a figure head on favrd,1 +what's gay about a sausage squirting at you?,1 +Fake ass Left Eye.,1 +Is "heavy hitler" sort of like "fat elvis"?,1 +get drumk bitch!,1 +I really hate bailing these guys out! They treat everyone like crap!,1 +didja punch a bitch?,1 +oh...and I wasn't just calling you a poser either :) http://is.gd/ed5v,1 +don't get all emo about that ;),1 +Fucking tell me about it... So much for protecting the investors eh?,1 +this pastor is a homophobic racist person who compares gay people to pedophiles. THIS IS NOT THE 1900S,1 +OMG! cute emo cow! that would be acceptable! and the cow wouldn't mind the blood drinking...,1 +I totally forgot Affliction!!!' fuck outta here!! I got ur tribal tattoo right here!!!!!!!!,1 +U can be a freak and not like girls.,1 +I'm more into shows like Dave Chapelle...I fuckin can't believe he flipped out and didn't do anymore..fuckin sucks.,1 +i had to... i deleted the annoying bitch. she kept making me puke in my mouth,1 +bitch what ? hahaha. j/k.,1 +a recovering emo blogger...in the voice of andre 3000 "don't do it reconsider read some liter ature on the subject",1 +uh bitch wtf is that suppose to mean?,1 + yea you'll fuck around and get that ASS tapped tomorrow u keep talking reckless like you are doing,1 +"""'Cause I hate that you breathe I see you duck you little punk you little fucking disease."" -- all of my favorite words...",1 +Reminds me of this Turkish guy I went to school with. A-hole. Everyone thought it was cultural. It wasn't. He was just a dick.,1 +Two nerds enter one nerd leaves!,1 +no wonder you laughin' i'm supposed to stay away from yo' ass.,1 +goddamn it kj...fuck you 74 times http://tinyurl.com/6q8olq,1 +goddamn it kj...fuck you 49 times http://tinyurl.com/5mq4sq,1 +goddamn it kj...fuck you 58 times http://tinyurl.com/59blcl,1 +goddamn it kj...fuck you 29 times http://tinyurl.com/6pey6r,1 +goddamn it kj...fuck you 10 times http://tinyurl.com/5nv2tl,1 +no fucking lie lol everywhere i go...twitter myspace i see you... you were on 1 of my homies page!,1 +ah yeah but i was referring to the knives in your hand and the "holes' in the knife block YOU PERV! Damn Lawyers !,1 +that's happened to me twice in the past 4 months. Pain in the ass. Much.,1 +Aw I know I was just being emo haha. It's been a LONG week on a lot of levels. ha. Let's do something fun tonight!,1 +who the fuck is bur`li?,1 +Holy fuck. That was amazing! I'm retweeting that sucker now!,1 +fuck apparently i 4got that no homo part guess i said that with a lot of homo,1 +Clearly. Decepticonian bitch. Or at least incomprehensible. We shall steal her bras!,1 +maybe he just has a dig cock to match the free weaponry he got to attack the defenceless...oops I mean 'defend' his country,1 +fuck you dom,1 +*watches than throws up* Man that's was sick as fuck! A glass jar?!?,1 +THINK??? You THINK they are gay??? REALLY???? Have you watched the show???? and you THINK????,1 +just use water loser.,1 +don't fuck with Fiat,1 +oh well yeah I hate the elderly too.,1 +I don't care about leakage. Fuck the person sitting next to me in coach. (actually I do care),1 +I hate to point this out but didn't you call Death Race awesome? DR will make my bottom 10 list w/o a doubt.,1 +you are GAY!!!!!,1 +DOG... ONE OF THEM WILL SOON CATCH YOU SLIPPING! THEY'LL PULL A GEORGE CASTANZA ON YOUR ASS THEN NEXT THING YOU KNOW UR MARIED,1 +way to fuck up a perfect opportunity to call yourself Z-Co!!!!,1 +i've yet to be impressed with anything from his mouth. He was pissed I wouldn't drive from coweta to pick his drunk ass up,1 +the fuck shit is this? people died for less. lol,1 +am deleting all that bell-end Pineapples comments - so he keeps posting more. Cunt.,1 +thanks the nerd in me is overjoyed,1 +want me to cut a bitch for ya?,1 +it totally sucks!!! i had to call the stores with the fraudulent charges filed a police report sign a notarized affidavit,1 +shut your ass up I did....they got me though,1 +don't hate pussy ass nigga....u suck dick n balls n ur on the bottom of the MSFB list,1 +leave u with this....at least my dick still on my body unlike your stacy bump STD ass,1 +omg srsy?? I loved ami kat would always piss me off. She was always mad for no reason.,1 +aww that's awful!! XD I loved the art and watching them all freak out. I hated the asian dude he was a dmbass.,1 +wow emo... Ik ben benieuwd...,1 +There are two types of people in the world: those using "lol" ironically and those that are fucking twats who deserve to die.,1 +A Snuggie to be burned? What kind of sick traditional blanket-loving freak are you?,1 +Because "Oh for fuck's sake!" has so much more impact. And our generation likes to offend old people as deeply as possible.,1 +And you didn't even make it a dick joke? I feel like I don't know you.,1 +katrinaneufeld Does a French whore smell better or worse than ur down home Blackstone variety?,1 +Fuck you! Learn to surf NA!,1 +Online nakedness amuses me. 'Oh my god he has nipples! And skin! He's a freak!'.,1 +damn...wish I knew how to write script. I just did 9 and have 7 more to upgrade.,1 +i dont care if its him or his ppl ... i care if its authorized or a poser squatting,1 +I wanna butt fuck you. Cuz im a horny gremlin,1 +Keep your damn hands off my @jgarber. We claimed him first!,1 +He can be a nice guy but he is such a dick when it comes to fabsubbing that it is ridiculous.,1 +I'm going to watch him kick Count Adamar's ass and then it's off to feed the beast.,1 +how so? It's more reasonable cause of the smaller age difference...plus Mikey's always sex deprived so he's a fucking animal.,1 +I hate you.,1 +Way to be a dick.,1 +I'm giving you fair warning to hate; high of 73 on wednesday 78 on thurs,1 +bitch ass hot sounds pretty crappy.,1 +it's called shitty ass fuck shit sir,1 +how about "bitchling pig suckas!",1 +DEAD ASS?!?!?!?!?!,1 +What shall we call this gang? Initiation rights must begin with downing a Fail Whale.,1 +Yeah those same ugly guys that do gay-for-pay. That's why I demand hot girl on girl action in my porn. Oh oh. Yeah.,1 +What a fab site! I didn't see the cozy *snort* but I want the mermaid gloves! Damn I wish I'd paid attention to my Nana... xxx ooo,1 +GOD. You HATE US don't you George?! ::runs away crying::,1 +& @kmellon: I'm 500 pages in AND at the day job. Eat that dick.,1 +motherfucker stop drinking Red Bull ADDICT! watch ulcers eat at your stomach lining bitch!,1 +pffft you mean maybe you'll suck ass for her,1 +are you off bitch? I want BM it's my best friend! Damn it....hey don't forget FullMoon Getogether tonight,1 +Blow it out your rank ass cunt face cock-choking bonsai whore beast. LET IT SNOW LET IT SNOW LETITSNOW.,1 +you seem like a hater. or maybe you do it to piss people off. either way fact is always good.,1 +HUJIKHJKUILJKKJ Lmaoooooo. I cannot stand y'all asian ass ho's.,1 +whats wrong with a monkey fuck? Lol i got my zippo fueled so no need of monkey fucks now lol,1 +UR a Chicken Cyber Punk! When a French Man came to kick your Ass U put your Hands in your pockets and Cry like a Pussy! LMAO,1 +FAT WHALE U still Floating Did not SINK Yet?,1 +don't be all emo like that xD.,1 +LOL! The out-of-town revelers are arriving early for NYE...Damn tourists,1 +why would u say fat people are dumb?,1 +damn I wish it was 1 here so my day would almost be over; btw that Wiley track is my fucking anthem...good looks,1 +I AM SO UPSET RIGHT NOW IRL GODDAMN YOU. I AM KEEPING HIM TIED TO THE BED AT NIGHT FROM NOW ON FUCK YOU AND DAVROS.,1 +damn homie where did you get that stat??,1 +if you were black that last one would be so damn racist,1 +fuck you dude. it is more than amazing.,1 +oh word? Back to the old photo? You green ass backdrop mother fucker!,1 +"""If you not on twitter you're a fucking moron"" I agree",1 +I will cut you in the mouth bitch!,1 +I'm a shoe slut; Gee's a jacket slut; we're just all a bunch of sluts xD,1 +he's a total loser spending his last howard stern money on internet sex,1 +whos? ima slap the bitch.,1 +too late I am skipping town bitch! (gets on express train),1 +Bey going to get her ass whipped!,1 +mate u know there are french umbracians out there cg09 u may get ur ass whupped :-},1 +are you just acting like a dick now?,1 +bitch you wish.,1 +you left me for a slut named kasumi.,1 +WTF! Why did you not pick up your phone yet a mother fuckin gain! Are you trying to tell me something? I called you twice damn it,1 +Fuck them!,1 +You ruin fucking everything.,1 +hehe "fucking shift" ... never heard of it in six months..... u get to fuck in da shift?,1 +i used to have night shift @ IBM..... but alas without fucking.....,1 +Finally made it out.I hate being a procrastinator.,1 +dam..she cold and she cold in live..by any means necessary you gotta do what you gotta do except for hate of course..lol,1 +i really hate that song but thats like equivalent to "fuck them other niggas" to the 40 and up crowd,1 +i give up fuck aim. ill ttyl.,1 +Fuck off naturally as opposed to artificially?,1 +nigga fuck put a Lil gin in it a drink dat shit son fuck 08,1 +Dam Right. Fuck em,1 +fucking stupid chat people are fucking idiots! Read what I said so I don't have to repeat myself five fucking times!,1 +I'M THE JUGGERNAUT BITCH!,1 +yooozers 20 442 damn homie!!!,1 + apologizing for overactive hormones SUCKS.,1 +Ya know you can take full credit for memeing @evo_terra's cock-measuring fetish. I won't argue.,1 +I brought Prussia back bitch.,1 +dude.. That idea is upgrade as fuck. (btw my phone finally added "fuck" to the vocab list.. THAT is upgrade as fuck.),1 +I hate the fucking CTA. Fuckin' idiots.,1 +QuantumOfSuck is a wannabe Transporter 3...,1 +haha nah he didn't do anything I was talking about guys in general particularly a guy friend though and he was being a dick to ...,1 +awz cum ova,1 +You did not come off as a bitch. At least you definitely weren't as bitchy as I thought I was being. I've gotten upset now too,1 +argh fucking motherfuckers!!!!='(((( I can't believe it dude the place is legendary...how dare they..,1 +yuck... that is going to take a long ass time...,1 +shut the fuck up LOL. I wanted to take a pic so bad but it would have been obvious. My mom wanted the hat. I just tried it on haha,1 +my trainer likes to play games when I'm on the treadmill. He'll move the speed up and down up and down just to fuck with me,1 +LOL well it's funny as hell they got two fat asses trying to fit threw some small holes.,1 +big mistake. we gotta even it out. who da fuck else is in!,1 +shut ur ass up! u woulda been wondering the same thing lol. done rehearsing 4da night & planning 2knock out...right about.....now,1 +shut ur bitch ass up! OBVIOUSLY its not the same but its not like her name is spelt out as Eveyln dumbass.,1 +YOUR A WHORE!,1 +@petie_martin...shondor shabbos that's what...shut the fuck up donnie,1 +Hell I'm upset they allow him to get near a fucking camcorder let alone direct anything. He'd fuck up a 3rd grade play.,1 + i can see the revolting illegal avatar now :) tempted to make my pussy misbehave in sympathy,1 +fuck that!,1 +he is a HUGE POSER! I want Toyboy back!,1 +YAY OR NAY OR GAY?,1 +a pussy snow,1 +epic fail meaning it sucks? Hopefully,1 +wat a fag....,1 +wat a fag....,1 + pig 100% pig,1 +how did you meet dad BITCH!,1 +do you use the term fuck on a stick,1 +DAMN I wish I wasn't in college!,1 +This holiday is to celebrate a man nailed to a board. I want you to be MERRY about it. Why are you crying? DON"T FUCKING CRY!,1 +Yeah me too. If this damn twitter wasn't around I'd be much more productive.,1 +damn iPhone keyboard. I find it astonishing that even in this era of social networking you can still be alone on a crowd,1 +last nights Top Gear had V8 powered rocking chair = Fail. And Jeremy is gay.,1 +sadly true - mens lifestyle walks a fine line between britneys bits and articles about pectoral development for gay guys...,1 +Why would gay marriage "change the basic structures" of your family life? It neither picks your pocket not breaks your leg,1 +Would it piss off Bill O'Reilly if I wished you a Merry Xmas and Happy Holidays? I'm willing to give it a shot!,1 +i was excited about seeing that until i remembered itv have the fa cup rights. god i hate itv,1 +Yeah... sucks.. But yo I tried to go to your webpage link but it dont work? And wut school u go to? Howard?,1 +- hahaha .. you're silly! but dayum it's 10:22AM and i'm still kinda limping from my hip hurting THAT badly .. it sucks!,1 +i know you got some bama ass shit on your ipod somewhere... some Pastor Troy or something lol.,1 +It is totally rad I assure you. But being a loser with no life outside the internet few people ought to see you in it. ^__^,1 +Wow that sucks!,1 +cool. But that fireplace looks totaly gay.,1 +What!? Oh that sucks!,1 +I hate that just finished round 4 of rough revisions for a client... can't they just be clear and concise at the get go?,1 +How would they define failure anyway? People giving up and going back to reruns of The Biggest Loser?,1 +I ran a 300 customer hosting company for years on Apache. I know how to set it up. It still sucks ass.,1 +the early word is the spirit sucks... hard. i'm a big fan of the eisner comics but frank miller's take looks a little... meh.,1 +damn that's fucked up Hawthorne is out of the way,1 +And boycott that fucking bar if they don't carry it!,1 +ugh fuck the chargers!,1 +haha that's ghey. Tell them it sucks balls and they need a real designer.,1 +Well good god damn.,1 +i hate when i miss mac chats! grrr,1 +there should be pictures of him at fucking otaku's cosplay section,1 +all i heard for the last 2 hours was WHORE WHORE WHORE SLUT WHORE WHORE OH MY GOD WHORE WHORE,1 +I heard it sucks... What do you think so far?,1 +All those people who hate Hillary are the same ones who voted for her husband and loved her before Obama. Just seems strange.,1 +enjoyed reading your article ! shame I have such a bitch for a boss ;-),1 +you dear sister are a freak. this heat sucks.,1 +I hate that entire area of new york.,1 +I've been getting a lot of that Which sucks cause I really need a job.I did get a random check from an old job for 100$ today though,1 +aye it sucks when you end up in that situation where you don't know what to do book learnin' is anti fucked. imo.,1 +bitch you love me!,1 +bitch better save me one!,1 +OKAY... HE'S GAY ;),1 +Damn. Didn't see that one coming. I must be getting old. <3 U 2 btw.,1 +beast my pussy bitch. LMAO...that's creepy.,1 +follow me you jackass. i hate you sometimes.,1 +ahh damn it: Action 12.1.5.0 of Microsoft.SharePoint.Upgrade.SPSearchDatabaseSequence failed. and i didn't snap shot my VM DOH!,1 +dude that sucks. On NYE nonetheless. Got a sore throat myself hoping it's not strep. :-(,1 +I remember when being snippy just meant I was trying to piss someone off... am I showing my age? :),1 +pls do....i was gon call molly maids up in this piece. i hate cleanin with a passion so early spring cleanin is some mf'in bull,1 +hotel town whore is in the bed riding ol boy that treated her like shit and the freaky cop walks in the room,1 +awww damn yeah....that really sucks!,1 +lmao damn! thats all I can muster...,1 +stop hating on the tube...its this damn censorship thats pissing me off more,1 +bitch was craaaaaaaazzzzzzzzzzy!,1 +Cuz u wanna fuck ricky martin,1 +nasty ass bishes,1 +u in a good mood souljaboy why u in a good mood oh n i luv ur new song 'damn ' like it hit me bac,1 +id die if he was super antsy i wanna request vacation and know when my shows r damn it first series anyway,1 +I hate you .. why can't I go to Vegas ?,1 +Ech! LOL....if it was me I would wash the sweats at least twice...then again I hate bugs!,1 +is het -5?! fuck..,1 +THANK YOU! Beautifully worded. I'm so fucking sick of people just hating for hating. Everyone think they're so deep these days.,1 +now who's the fucking hipster?As if you not dig Kanye! @dianor heyyy how you doin' @noarmsjames the man has great beats+lyrics,1 +they don't use Euros yet? damn lol,1 +It could be pig's lips from a garbage bag! Perk up buttercup!,1 +if you actually are a vicious ass koala bear better to find out now than later. or else you might get confused.,1 +Considering half of my fucking company has been laid off this morning "MY BAD DAWG" might be appropriate,1 +this job would be great if it wasnt for the fucking customers,1 +HOLY FUCKING SHIT!!!!!!!!!!,1 +I hate having to work ALL the time :),1 +I would have laughed so damn hard.,1 +Damn! I need 2 get my pole game where that chicks is....um but 1st Ima need SOME pole game 2 start with! LMAO!,1 + i kicked ur ass on balloono A.K.A the bommer man thing i was lameguest(bunch of numbers),1 +aww damn now u know how much your Christmas present was *sobs*,1 +I like some of the features it has over Twitteriffic. But it takes up way too much screen real estate. And AIR sucks.,1 +fuck... lemme know if you'd like to work at criagslist,1 +and leave ur ass hardly call until they want to re up on your ass. Sometimes they dont even stay 15 min & out!,1 +ditto bitch!,1 +Fuck mod_Ella.....http://tinyurl.com/5hdbje,1 +who are you? oh uhmmmm HAPPY BIRTHDAY YOU FRENCH WHORE! @ClarissssssA Bed time last time im telling you <33333333 gots thats ...,1 +I read WP as WordPress but damn that is hilarious.,1 +Ah so it was tough to hear about over and over... That sucks man. Sure its been tough.,1 +um coz you're awesome? and on another note...yo gabba gabba is fucking disturbing,1 +*giggles and cuddles* Its some kids show...that is disturbing as FUCK.,1 +Isn't any way you file taxes the gay way?,1 +My problem is that bankers and investors have taken risks regardless of being told how bad things could fuck up.,1 +thx for the well wishes lisa! i hate taking meds so i'm all for fast healing:),1 +and that makes you feel like "lifes a bitch"... well in my opinion anyway :P,1 +and cant expect too much he was recording til 2wks ago!! too damn shame when ppl just rush to make an album these days!,1 +I'M SO SORRY IF YOU THINK MY TRACKSUIT IS GAY. VICTORY. VENGEANCE. FOR MY STONE CHAMBER AND MY SWORD. MY SWOOOOOOORD!1,1 +Ugh. Probably the same brain-deficient retard who stole my name on Youtube Gaia and all the faggy sites. How old is she?,1 +lenee that bo*o ass incense you gave me smells like an episcopalian funeral. lol! choked out saturday night etc.,1 +Be prepared for Toro to be a comple ass...,1 +Fukin sun's blinding.... Reflecting off my damn phone screen,1 +jealous! I will still hug u lick ur face off grab ur ass and dry hump u a little bit when I c u. Whatever!,1 +((((((((((HUGS)))))))))) I love you tons and life totally sucks right now! I'm in it with you! LOL! xoxo Karen,1 +HAIR PRODUCTS? I hear Hair Products?? lol i hear your getting beat up us girls do stick together...against them bad ass boys,1 +hey you know wat wud b funny? to find out who started tht lil cheap ass lie tht if u roll ur eyez they'll get stuck like tht! rndm,1 +damn your Jedi mind tricks!,1 +lol at zach telling us google is evil and the translator on msn is fucking prime.,1 +If you guys are having the problem that pages aren't fucking loading then I'm having the same problems too.,1 +drawing a blank... damn! will have to watch it again now... oh well...,1 +the only thing I hate about Nikon is the dumb Ashton Kutcher ads they run.,1 +be careful! Hood pigeons don't give a FUCK and pack heat! I've been robbed by them on countless occasions!,1 +you smell like the insides of a beluga whale's forehead,1 +dude so weird i feel like good will stole one of my best friends too Damn the man,1 +makes you feel cheap doesn't it. I hate that clients use these things...,1 +that sucks. I do both at my work which is a pain the rear-end too because everyone thinks they're designers ;),1 +damn work fire wall. can't go to myspace. :(,1 +that sucks that the internet is being twitchy. Hope it works soon. :(,1 +yeah. subconscious sucks sometimes. always telling me what I'm doing is wrong. Most of the time it's not. :),1 +man that sucks. need any more balls kicked? i'll do it!,1 +ah damn man! Good Luck!! You can do eeeeit!!!,1 +Yvonne that's a french ass name Yvonne. My little cwasont .,1 +I still think you should be prouder of the "Fuck fuck fuck!" but "Rock!" is pretty good. When will you be teaching her "FUCK YEAH"?,1 +Damn tough call but I'd have to say toddlers.,1 +I'm at a high school that I fucken hate. I can't stand these people but my sister has a concert thing so I have to be here,1 +oh no!! that sucks!,1 +oh bugger at car screaming.. that sucks.... glad to hear the rest was all good,1 +Who would be ur premiere Ultimate Dumb Ass?,1 +except now they have his crazy ass son to deal with probably.,1 +oh! I saw the ex earlier. Asked if I "fancied a fuck" before he left the hospital. I politely declined.,1 +we all fucking know better.,1 +haha cunt.,1 +I hate him.,1 +damn your phone....SEVEn SEEEVEEEENNN,1 +I especially hate it when they make me lift up my feet to sweep under my desk. Sigh.,1 +it sounded a lot like that actually. Fucking Hagrid.,1 +you ass. Yay Walmart!,1 +Definitely. I hate crowds. Angry out of control crowds. I would rather have a root canal (and I've hd one or two),1 +damn -- http://tinyurl.com/7b7nze,1 +that's why I throw a hard ice grill at him...no words...get the ticket and get the fuck out cause I've never had luck,1 +Fuck you Ian I know you're using a joke book!,1 +Honey we all hate long division. Look for things to hate that make your personal hate list special and distinctive.,1 +whaaaaat! Who the fuck??,1 +Not really. Atlantis was okay. Old Star Gate on now. Was about to watch Numbers. Might do Sudoku instead unless u ready u fuck :),1 +I meant ready 2 fuck:) lol Hope u have something wild and freaky in mind. I'm bored :),1 +My pussy remembers what u do! Lol :),1 + NO NO NO NO NO I HATE YOU.,1 +yep...that whole damn mixtape gets me hype lol,1 +Damn Girl! Aww that'll be cake at the rate YOU are chalking them up. Nice seasonal pic and awesome tweets btw.,1 +you're assuming they can presently afford them? leverage is a bitch.,1 +please get the fuck out of my house,1 +damn missing coffeeclub again. And this time really could have used a coffee ;-),1 +*looks at who is following me on twitter then remembers i dont care* OMG such a fag.,1 +if i get scared ill be sure to throw u in the way so u shiver in terror and piss ur pants like u already did,1 +bahahaha i love you. and ugh i wish i was on my way to va with @heyheatherr fuck the weatherr.,1 +they look SO dumb. and omg i hate cassidee. ugh. just ask @applicantjan LOL ;),1 +You're a pig you have a curly tail for crying out loud!!! And you dare laugh at mine???,1 +Welkom ! Dat Apple freak deed me besluiten je maar te volgen :),1 +too right XD Gordon Brown can officially kiss my ass! Freak!,1 +:( PS3's are fantastic devices. Kicks XBOX's ass :D,1 +that SUCKS.,1 +holy jebus yes. that'll do just fine. fuck I love twitter. free chicken!,1 +DAMN tootin'? Seriously? I've heard DARN tootin' and even DERN tootin' but not DAMN tootin'! you kicked it up a notch.,1 +that sucks;{,1 +i still feel bad. I woke up at 2 am and was like fuck! Then i saw that carly called,1 +makes sense and glad that it's shifting (even if geologic). hate that kind of snobbery.,1 +Charisma Carpenter is a CUNT. I also told her.,1 +Damn straight I am! I want to be 50ft! I also want to play Barbarella. I'd be much better than Rose McGowan.,1 +Oh no. I hate that!,1 +you said "sucks" and I said why does it suck? LOL,1 +I'm 1/2 with that as a Realtor my other 7/8ths would like 2 C stimulus 4 the housing market. Damn'd if you do Damn'd...,1 +Time's running out for them. The Cboys will pull it off. Looks damn cold.,1 +Pretenders come to mind! Damn.,1 +I thought the same thing he should have just hauled ass.,1 +lmao a grown ass man having brunch is even gaaaaayer!,1 +I just read ass pet a cat. Adam...that's just wrong. :P,1 +....i make an ass out of my self * sad blushy face*,1 +aww that sucks man. you've learned a lesson for your kids... leave'em in the cold or spare key under the poinsetta pot,1 +try fuck.,1 +nigga I'm DYING over here reading this sweeney interview. "anybody that aint me is a bitch". CLASSIC,1 +Well damn that means you working wit something! Lol..,1 +LOL- I know how much u hate traffic- just know it was 10 times worse last night :),1 +fashion parade. (damn sneaky mousepad enter key thing.),1 +Damn it how do you ALWAYS post the cool links first? :-) (Catching up on today's tweets.),1 +I HATE that. I have a rhomboid almost triangular 'washcloth' from learning bark sedge stitch. I use it to scrub the bathroom.,1 +I haven't started mine yet and don't know that it's happening. I'm a card freak though so probably I will send something.,1 +bad mood. i think its bedtime. i hate alcohol it ruins everything. :( hey what u doin 2night? x,1 +But surely i need to improve on the digestive front. Ain't any fat panda :P,1 +damn I can't believe all that happen to her hair. I always thought it was simple 2 straighten natural hair,1 +ham stands 4 hot ass mess,1 +yeah tneezy gonna hate it... @tneezy sorry boo u 1 day late!,1 +- Do you HATE Cleo!? Let her win for once you're breaking my heart! ;),1 +- More DnD podcasts!? Fuck YEAH!,1 +you dont need a big fat spirit animal to be embarassed...,1 +http://twitpic.com/py9p - HER ass is on top,1 +http://twitpic.com/pyb6 - is a very naughty panda always has her ass up in the air.,1 +I iz calm now - cept I can't figure out how to properly edit my wordpress templates. NERD ALERT NERD ALERT.,1 +DM. damn.,1 +ignorance is my guess - but this could very well turn into a nerd rant - and that would get @amberto all worked up,1 +Predictability Sucks! WHUUP! (not being predictable) Kev,1 +I HATE IT when that happens! Usually when I'm in a hurry :-/,1 +Damn I also like Ferrero Rocher dark chocolate version. They induce the zits on my chin :'(,1 +Thanks! I'm not familiar w/ the "nerd heard" language. You should add #NH so I can say #WUW #NH @craigsanaotmy!,1 +btw sir you are a ASS ty nuf said,1 +been here more then a hour just to get my vegas shit back damn slow service shiat,1 +45 windows and only 12 open and about 30 people on break I mean I want 23 a hour to do not a damn thing,1 +1) i can't stop laughing at how's the meows sound like cat o-face screams. 2) ugh so bummed i missed out. another gay? (:,1 +the boy i'm talking to is a ravens fan. every time he ends a text with "fucking bitches " i can assume that they're losing.,1 +Haha no I mean that I love the money & my coworkers but hate how much time the jobs take up. It is fun to hate them though.,1 +and i look emo too cause i'm wearing like all black and shit and my chains are hanging out XD i need guyliner,1 +i had eyeliner on once but it kept smearing cause i'd fuck with it too much,1 +Damn dog didnt call them like I said to? Well I is working till around 9ish,1 +How the hell do we get in these money situations? Sometimes I just feel like saying fuck it and have them come for my car.,1 +Like Zebra man said in rock n roll parking lot. LIFE SUCKS SHIT!,1 +Way to go loser how does it feel to be an inanimate objects bitch? Must feel terrible to NEED something to be normal. Shame on you!,1 +Maybe I would have to stare at your face for awhile while I do it that would be gay..and weird...and creepy...sort of,1 +I want to see a picture of you right before you decided to shave your head. That would kick ass especially if you are crying.,1 +well clean the damn floor!,1 +I have news 4 you this whole month is going 2 suck ass I hope u like banquets n ramen cause thats whats on the menu this month :(,1 +gahhhhhh....I hate them. HATE THEM. They come in on the pipes and through the heating vents to keep warm. BOOOOO.,1 +I've never seen Wall-e. Yes it's a hole I know but that doesn't mean you're not a huge nerd.,1 +That sucks. But what kind of parent buys a toy because it's HOT? What about the kids' personality and taste?,1 +Hey don't hate on NC. They got bought out by PNC and alot of people are losing their jobs. Cleveland has a sad face...,1 +http://tinyurl.com/6dunlq hate me for it later but it's not bad,1 +HAHA that did brighten my day considerably. How about on the one day of Christmas my broke ass got my gf gift cert to Chili's,1 +damn I'm moving south. Cleveland has it for 1.69/gal,1 +- Damn... now I'm bummed I missed... I'll be at the next one fo sheez...,1 + hmm didnt even know they existed...no wonder i feel like a complete retard when i cut stuff with a scissor,1 +Laser treatment for pimples? Meh. Metrosexual a.k.a gay pride! Hahaha!,1 +damn oh if only he could fly he could take me to his gaff(house) then,1 +Wow u in love wit her? U gay 4 her?,1 +no im definately a bigger nerd than you.,1 +you are sucha nerd! Love it!!! V(^_^) haha,1 +if I ever fall alseep with them on I wake up with the off. Hate them.,1 +? Text me bitch!!! :),1 +People are so fucking pathetic. CHILDREN! Ughh~,1 +that's ri god damn dick ulouse! Tasty though. Haha,1 +that sucks :(,1 +psh bitch I'm at work running 2 trains with a 70 minute wait stupid kids and dumber parents I don't wanna hear it,1 +it's cos we're old now. sucks.,1 + ....you gone wind up fucking her (is that what u wanna do shawty),1 +yeah fuck it kill um all!,1 +!!!!!!!!!!! FUCK YEAH YOU DID. <3 <3 <3,1 +you know fuck it I'm doing "Jew-Boy money",1 +you know what fuck it I'm doing "Jew-Boy money",1 +Love You Man Not in Gay Way or Anything :),1 +I love you the way @MattBacak loves me not in a gay way or anything :),1 +I'm all about peace n positivity but sometimes you gotta give a little kid an ass whoopin' !,1 +yo why u always tweetin' about boy problems ?? Fuck nikkas get money stay focused son!!! I know you a Hustla & Hard worker!!,1 +trust me dog I dont even FOCUS on females I'm so focused I got NO time for these broads the opposite sex will fuck a persons head up,1 +that's what I was JUST tellin' myself !! Hahaha I said "Fuck it Kel just DO IT and get it DONE !!" But I complain the whole way,1 +These fuckin FOOLISH ass atheletes !!! 35 mill down the drain not to mention a great Giants season..WHY ?!?!?!?!,1 +because like everything you do its ASS Backwards !!!!,1 +I have no idea why I live here. It sucks in the winter.,1 +I hate you sometimes. lol,1 +I don't hate you all the time. Just sometimes. Not enough to unfollow and block you. lol,1 +so do I! But its the task of getting off my ass and going to get it. Gahh,1 +YES!! she'll call me and be like get your ass out of bed and then she'll name a list of bs for me to do,1 + OMG that sucks! D:,1 +Devil's AssMartini on Scottsdale and Gay I mean Shea,1 +i hate this this sucks butthole im so mad im pissed i told that person not to tell,1 +I guess everything's alright but I hate this still.,1 +yikes. That sucks. Sorry to hear that.,1 +Haha damn him indeed,1 +Long enough to know you're an ass! You could see that jellyfish shit coming though..,1 +I get your tweets on my phone and my ass was just vibrating like crazy lmao,1 +ah sucks maybe Redcliffe then I guess it depends on what time I get up tomorrow haha,1 +that sucks :-(,1 +that really sucks :-( I could have recommended you an amazing chiropractor!,1 +less drugz mo sleep bitch!,1 +@Kimber_Regator You guys are in the same fucking house and using twitter to talk.,1 +I fucking hate Rachel Ray.,1 +I haven't been online all day whore. Trust me... one post from me is going to be more than you want at your house.,1 +i hate hate hate being snowed in! (how's that for a sum up?),1 +damn! you packin heat!,1 +thanks sugar i get a little sensitive here and there. damn holidaze!,1 +i quit heroes. nathan is a fucking douche.,1 +careful soy joy will give you bitch tits!,1 +jacob sucks i hate the werewolves im with the vampires GRR,1 +I blame Alexx for making me put 'I love to say fuck' on my ipod,1 +I am slighty mad at perry. he can lick me ass!!!! loll,1 +can you help clue me in on how to connect all facebook etc? thanks for coming last nite hope you didnt hate it lol,1 +That's a damn shame because they don't do veggie burgers. :),1 +THAT WAS THE MOST MOST BEAUTIFUL CHRISTMAS CARD I HAVE EVER RECEIVED. I MEAN DAMN. 80,1 +omg who sent you a fuck you letter??,1 +Does he have favorite characters? I'd hate to get him the guy he hates :),1 +That sucks... Can you use it on your iphone?,1 +I know - I really wanted to go to the show - but I gotta be responsible. I was in class w/all the idiots. I hate them all!,1 +Know how you don't smell perfume you use a lot after a while? Same phenomenon w/stink. How else can you explain pig farmers?,1 +can I have some? pizza in NC sucks :),1 +yea school sucks sometimes. thanks bro figured id mess around on here to waste some more time from studyin ha,1 +Ummm...was that our little brother's ass? And you dare judge me?,1 +The dam @chilis? Is this like the pig under your tree? Have you cracked open the chard already?,1 +YES ROCK BAND! Only it hasn't come yet fucking postman. Totnes was brietastic.,1 +FUCK YEAH!,1 +yr gay voice =],1 +Oh it's pretty much public knowledge that I hate shaving my legs. Or at least it is now.,1 +Stop getting so damn skinny and maybe your pants will fit! =P,1 +wow that is damn ridiculous. I think i will be crossing off dubai for places to visit.,1 +Lulz. OK. Internet Explorer sucks.,1 +@bagntrash everyone kind of just disappeared after the food I'm not leaving it there for some jelly-bean givin jack ass to take!,1 +I'm just gonna start the emo kids who pretend-to-cut themselves clique. I can be found in the library playing WoW if you need me.,1 +mussels? or muscles. Damn web-people.,1 +BOOO!!! We missed out on date night. I hate the Tinder Box.,1 +I still hate the Tinder Box... It hinders our couple social circle. Thank God the holidays are almost over.,1 +Frat boys think "good game" afterward means they aren't gay. Doesn't make 'em str8!,1 +~ wholeheartedly agree that NYE music entertainment sucks!,1 +yo fuck that dude 4 realz!!! it was allz cuz u me "animal" & "marc delicious" were so stupid-ass-rodimus prime fantabibulous!,1 +Marc got home ok...but said he might've fuckied his rim up. I told his ass the pierogies & sausage wwere gonna knock him out....,1 +u know it was over $1200 2 get that bar replaced. George is gonna take that outta thier ass LOL,1 +checked out the link. Holy ass...i think that fairy had seen that vid a million times cuz he was damn close! LOL,1 +dude that kind of sucks.,1 +pimping your blog again but damn funny. specially including Connex,1 +I can't help that you keep looking for gay midget porn on YT. The volume is too loud for you but I like blaring my Celine Deon.,1 +holy shit I'm not even taking that class and I hate it !,1 +my lungs are fine but my legs are like "bitch your ass is heavy !! let's stop !".,1 +that sucks man...,1 +You are a Linux whore!,1 +you must REALLY hate Christmas then!,1 +I listen to a lot of really weird music and I hate most of what's on the radio so it's not really for me.,1 +I have both now. iPhone camera sucks as well as lack of other things but email twitter and apps are good. Big screen is nice.,1 +you can do video after jailbreak. But still it's not a patch on the n95 camera. I really hate the iPhone cam.No settings at all!,1 +Watching the Biggest Loser. I'm amazed by weight gain or weight loss.These people are losing 5 10 20 30 lbs in one week.Amazing,1 +I don't hate you. My last partner was 130 lbs and I got him up to 165 lbs of solid muscle. I hated him 4 looking better than me,1 +I hate to keep sending this link.. but you never got back at me.... Whats good.. http://tinyurl.com/6xmnyr,1 +gotta hate those fake posers,1 +I hate insomnia too. NyQuil works ok. Excedrin PM probably better.,1 +@maddow. where is that big gay planet? can I go there now please? someone please fucking segregate me off this rock.,1 +No. Being "down" 5lbs is a bad thing when you're a scrawny nerd who's trying to bulk up. :),1 +Hahaha Testosterone Man!!! I met Mega Bitch Soccer Mom the other day. She took the time to stop honk her horn & flip me off,1 +i forgot about the clothes haa. i cant wait to get my ass in2 my skinnys! :) i belive im also getting 2 pairs of pjs. scorreeee!! :L,1 +it's emo because you used a razor. An explained joke isn't funny. :(,1 +It sucks!!! My kitty (adopted alley cat) only knows how to potty outside so I was freezing my arse off trying to get it in. LOL,1 +WOW what a loser. I hope seth has some good male role models in his life.,1 +I spent all last week with that damn song in my head. :),1 +what an ass - who the hell says things like that. I'd report the fucker,1 +True! I hate people who're full of themself! That's one of the reason i love mcr they're humble and down to earth...,1 +WHATTTTT O________O omg.....nahhhh i hate roller coaster and im extremely scared by this shoot......,1 +LOOK @ UR TEXTS OR I'M GONNA FREAK OUT @ U!!!,1 +Funny that the guy's last name is Dick...bwaha! :-D,1 +unfortunately i do =( it sucks! & i have my 2 last finals 2mrrw bc we had a snow day that other friday. i dont wanna go back!,1 +i hate school =(,1 +OOGA BOOGA FOOCHA FUCK YOUR WHOLE DAY!!!!!!!!,1 +Oh sad faces :( I hate it when that happens! Reading in bed usually helps me...,1 +that sucks!,1 +& @lasandwich I hate calculus... :(,1 +what a loser. :P,1 +1) it depends on how u come at me. 2) if my 1st impression of you sucks I prob won't be so warm & bubbly. I'm mean though.,1 +He's passed out in my bathtub. Only way I could restrain him: knocking his ass out and leaving him in the dark. :1,1 +Naw. I gave him tomorrow off. Fuck my carpet's a mess.,1 +Wow that sucks - work at home day? @PrincessErsatz - I couldn't agree more - good day to be under the covers relaxing.,1 +That sucks.. Stuff working yet?,1 +damn man kn frnd e,1 +damn man kobaa e ??? :O,1 +u stll up drinking bitch?,1 +damn. lol. let me try something else. hot lesbian sex. nekked girl on girl. free porn.,1 +haha. it just bugs me. because posers like her make it harder for people that truely are gay to be accepted,1 +damn right it wi be!,1 +damn that store! ~*Krystle*~,1 +you order pizza that much they have you on speed dial. damn.,1 +THANK YOU! It's not just me. Gay guys are hot as hell.,1 +yeah it sucks. 6 yrs down here & realizing we dont get snow. just ice. and nobody can drive in rain let alone ice,1 +then ur game sucks. no crue not buying it.,1 +or maybe go see bolt tonight? or both? don't know if you're busy for white whale stuff... but it's my bday. let's celebrate,1 +sam are you showing in 'in sequence' at white whale on friday night? I wasn't sure... since you'll be out of town for the opening ,1 +Sucks 4 you!!!!!! Your just not a lucky ducky are you? First your phone now this!,1 +Alan I think you might as well give my spot away to someone else. I'm just too damn sick to sound like my charity is good. :'(,1 +i literally could not breathe. that was so fucking scary.,1 +Not to me :/ damn though. i hate being sick.,1 +I hate my life haha,1 +P33T WIFF HIS BIG GAY TEEFS!!! BRYCE FROM TRS AND HIM SHOULD HAVE BABIES AND THEY'D HAVE AMASING TEEFS,1 +Yes but if your senses are dulled mebbe you no bitch so much? Or you should find a good human who's blood you wanna eat,1 +ps...ur cute...ur good looking your funny your a dick your an ass your cynical. I LOVE IT!,1 +damn! Ok look make the stripper pole look like a knitting needle and impale a stripper granny on it. That's the only way.,1 +no it was a direct Church of Why Don't You Bloody Well Piss Off,1 +of course @bapper is cold..he eats picked radishes all winter..if he had some whale meat he'd be fine..,1 +damn that caller ID,1 +yes. sacto cali- driving back to palo alto later tonite. eventually i'll get off my ass n shoot.,1 +oh lol gotcha... well i'm a fruit freak. i don't like melons strawberries the list goes on.. one day in heaven i'll like it all,1 +lol no no.. we will kick the pig... (kick this thing off do it get r' done etc.),1 +damn your hardcore! My legs are complaining from the simple long walk I went on yesterday. I've neglected them over the winter!,1 +It is amazing! But it kinda sucks when it makes you late for work lol.,1 +burritoville is dead? What the fuck?!,1 +me too. So entertaining. Dude you watch this mvie called trailor parl of terror. Fucking brilliant.,1 +aw that sucks.,1 +How does he feel about marmite? Love It or Hate It?,1 +ROTFLMAOOOOOOO WOW...Cumleone? Cum Alone? Oh sorry...thats funny though.,1 +why does eueryone hate american eagle? wat happened?,1 + yeah it sucks i know she was one spankin hot mofo,1 +Now I have to try my best to get my ass blocked by @souplantation.,1 +Wow what a fine uke. It's tempting but I want my charango with 10 strings and damn near impossible to play.,1 +got to love a good sunset... I just hate this time of year leaving work and it's already dark outside :(,1 +bojangles? damn you! so jealous.,1 +Whatever... I just hate how the popularity of bands seems to inversely affect how much people are allowed to like them,1 +Lazy ass :),1 +Ugh the bane of my existence. Hate them.,1 +damn you for getting the comics up early again o_o it gives me nothing to do before school in the morning D:,1 +wow i looked at the tinyurl of Barack Obama that you put up.... I am disgusted too that such revolting hate is so prevalent..,1 +yet fear seems like a cop out too i eat my words...Hate is ugly,1 +Connection interrupted. God damn.,1 +fuck the krebs cycle.,1 +like you build a tolerance to drugs don't you? or is this just me being dumb cause it's fucking four a.m.,1 +Haha. Cool. Just sucks that we have to wait so long for season 2.,1 +Damn! Sounds like heart attack inducing combo.,1 +like jealous toddlers equal change to excel When a person DOES excel other ppl bitch&whine - bc it "makes them look bad" The,1 +damn old people now a days they are the dangerous drivers,1 +work stressing over this damn AE meeting we are having @ 11am.,1 +Warm Mt Dew tastes awful. :/ Try Jolt Cola instead. Or maybe even Whoop Ass. http://tinyurl.com/8woa3j,1 +it means - the fat beauty and yes lost 43 kgs thru heavy dieting n working out at the gym 6 days a week - that was 3 yrs ago,1 +oh damn! anyways next time...DM me ur number or soemthing,1 +stop saying you hate gwen! Youposted earlier saying you love her! Ur hot then ur cold ur yes then ur nooooo,1 +I'm on my way just to get gas and saw a 314. Damn it.,1 +get some damn sleep! Sleepy Time tea is my savior serious,1 +I want beach now. Damn.,1 +sorry you have no cred. Two words: pig ears,1 +and somehow I still wish I was there pig parts and all. Amazing.,1 +I send you a hug ma. That sucks! 08 was full of some fuck shit I'll say that.,1 +I hate you,1 +- Fuck yeah!,1 +LMAO! @ ur new pet...I thought u sent me a pic of a big ass butterfly...lol!,1 +at least its not those nasty ass water bugs u had as roomates in Atlanta..Ew! Lol!,1 +Ok..ok I c u! Take it back on they ass why don't ya.. That sounds super CUTE!,1 +I hate giving little kids antibiotics...10 days 2 a day and important they get it all down...impossible!,1 +some kid made copies of the questions and a teacher looked at it...fucking dumbass he/she screwed it up for all of us.,1 +alright. The test is on Monday and I'm gonna be studying my ass off.,1 +lmao that sucks.,1 +I hate when that happens!,1 +Wendy's - Oriental Chicken Salad w/ grilled chicken. Way good. I think it's 20 grams of fat just in the dressing tho! Argh.,1 +:-( Yucky needles. I hate those ones with a special sort of passion! *hugs* Hope it's over soon with the needles.,1 +Courtesy of the Canadian kids magazine Chirp: How does a sick pig get to the hospital?,1 +and holy crap that's a long time!! D: that sucks!,1 +Now I'm gonna have to go back to McLuhan & Leary to help me translate WTF you just wrote. Damn I hate when that happens. Heh.,1 +That's...so gay it's painful.,1 +ooo tht sucks...happens to me all the time when I drink 5 hrs...,1 +kim kardashian annoys me...her ass is nice but Reggie could get it!,1 +I'm up too! whoopee fuck! not hung over AT ALL!,1 +so fucking angry all the time,1 +It's got a core of uranium some damn thing I don't know. Gets up there like Sputnik.,1 +That ALWAYS happens to me! Damn skype.,1 +Thanks Ulrike! :) We'll make sure to nerd it up!,1 +sorry i missed you @ Cain but they weren't very nice to my gay boy - I think some1 was jealous...missu hope to see ya soon ;),1 +fuck them!,1 +damn now i want some au gratin!,1 +Well I would but once Christmas is over it kinda sucks the life outta the Santa hat thing...,1 +I both love and hate the sticks! I'm finally going home tomorrow.,1 +hahaha i don't hate german just a couple of germans. Guten morgen!,1 +I'm gay and I'm pregnant gak mungkin berhasil. This guy is persistent. Gmn ya. Can I just simply ignore his msgs??? :-D,1 +NOOO EP!!!! That really sucks! You should hve jst waited in the car...lol!!! Hopefully it;s dark in there & no one looks dow ...,1 +I just wanted a fucking money order and it took 40 minutes to get it. They won't even look at you if you're on your mobile phone.,1 +I hate games like this. All these people shouldn't be going down.,1 +lol...hell naw...its the fine ass one!,1 +i call it "hey-dumb-fuck-guys-stop-trying-so-hard" advice,1 +hate? i was congratulating you your a humanitarian!,1 +well clearly the shoe purchase is more impressive because ITS A FUCKING SHOE!!!,1 +fuck sleep you gotta stay up late so u can see santa!,1 +that's great. def down on carbs + fat. counting cals in and out is working perfectly. the big difference is my mindset. thanks!,1 +yeah my son works at Barnes N Nobles...played the mamma mia soundtrack overNover- they all hate it now but sing and dance along!,1 +what the fuck do you have to apologize for??,1 +fuck you op,1 +@ember_myst @spellchaser Just so you know I'm staking my claim on etherist. I am in full on crush! Sucks that he's married. :P,1 +He doesn't seem clueless to me. He seems sweet and cute and witty and eloquent and charming. *swoon* Damn the luck.,1 +Arrrgghhh! I hate him!,1 +Do you hate the iMac because it looks edible :) or because (it must be) soooo slow? Or not a Mac guy?,1 +Oh I would hate that too. Three apps? That would barely get me started.,1 +I don't believe in a lot of specialty kitchen gadgets but I cling to my potato ricer and my popover pan. Carb freak? :),1 +if gov is going to make it "uncomfortable" to be fat & expect it will work shouldn't they also make it uncomfortable to be poor? #tcot,1 +oh i hate it. self righteous people makes me want to scream.,1 +I hate you so much right now. http://is.gd/ewZm,1 +Aah! I actually hate you!,1 +Gah fuck off tainting my private account with new followers. xD,1 +fucking buses. One drove straight past me on Friday night and I was waving my arms like a windmill. Baaaaah!,1 +good u an ur no sharin ass LOL,1 +Damn fam... if I was a hater I'd be jealous... lol,1 +You blogged and ran? Jesus that's ass kicking if I ever heard it.,1 +Hell yeah!!! And the best bit of movie dialogue ever..Jason says "I am NOT the gay!" ... OK Jason i belive you ;),1 +Damn near indeed! But in the end their youthful impetuosity gave it away. It didn't feel like SL actually won it incredibly!,1 +i was able to connect to may exchange with apple mail after they enabled active sync for my iphone. i hate entourage... so much,1 +Hints in icing are bad or good? Skywriting sucks unless the hint is a very short word. I'd suggest a delicious tag for nerds.,1 +@DaveBenjamin I HATE THAT...,1 +people hate to admit emotional decision making though. manipulative some think. the uphill climb of personal branding...,1 +oooo thats not fun! i hate those things the orthodontics people are mean to me!,1 +weird.... Nick are you going emo??????,1 +lol!!!! I used to be the wknd assignment editor and would get mail addressed to "Weekend Ass". I didn't know how to feel.,1 +I hate to harsh your buzz but every game on the iPhone can roll the bones by shaking. Do not pass go do not collect my $7.99,1 +argh tell me about it :x i hate procrastinating... lol.,1 +coincidence my ass... LOL... But it's a good suggestion so it'll go in the hat... Singapore would be interesting. 5 more...,1 +Dude oh no U didnt! I got 4 DM's within 4 minutes of me saying "ass"... imagine what would happen if I said "fuck"... oh crap!,1 +that really sucks!,1 +re: why friendfeed sucks - no doubt a powerful utility but with a high learning curve and non-intuitive user experience,1 +you asian!!! I hate asians!!! Bahahahahhaha!!! Jk! I am well on my way to getting fucked up!!! See you next year!!! Hahahahaha!!,1 +I hate you...,1 +I'm counting down the milliseconds til you OPEN THE DAMN BOX. if I have the patience of a saint you have the willpower of a GOD.,1 +totally loved Odo. But the Ferengi make my skin crawl. out of all the species they're the ones i hate the most. yuck!,1 +ahahahaha so right. Im fucking freezing my ass off here.,1 +Im so jealous. But I'll be eating that same rice pudding in 9 days. Enjoy the fuck out of your trip,1 +all the emo people will explode :o,1 +and biggest. That would be a bad-ass name too. At least his middle name.,1 +sweet. I'm too chicken to read it cuz I hate "spoilers"';),1 +hate "can'r do" atitude. can do works almosr all the time.,1 +Damn. Oh well I can't raise my hand for every question. ;-),1 +I'm laughing at your "Don't hate me please." Can you imagine a man ever saying that? Not to be gender specific but...,1 +damn I'm behind,1 +because i'm a dumb ass.,1 +because i'm a dumb ass.,1 +lol! hey stop being modest. you OFTEN are a hot bitch. :),1 +but they love me for it. none of them giggle. its a love/hate thing they got goin with me =),1 +"""I hear what you sayin gurl but you mean to tell me you caint have friends??"" *insert piss poor false sincerity here*",1 +Haha! I'm glad someone else will admit to seeing (multiple times clearly) Gummo! I let someone borrow mine... lost. Damn.,1 +damn iPhone that's SHITE. Learn English slang,1 +Oh Shit! I am a yoga loser. But not any other kind of loser. I have already showed up once with no class alas.,1 + yeah and I woulda gotten away with it if it wasnt for you damn kids...,1 +we're talking threatening your ability to do business in a professional not-over-the-top way. w/o being a cunt somehow.,1 +maybe you should go punch him in the dick.,1 +that sucks =/ you'll get into the other ones.,1 +damn clean plate and the cl;ean bones lol.,1 +you got niggaitus and watch baby come in there and fuck with you.,1 +i'm late but my damn pic mail ain't sending nowhere. they said i need to add the app? wtf?,1 +fuck andre! it's strippers lol you coming home to him!,1 +Fuck off.. I'm not ready!,1 +Yeah. I know he doesn't mean to be a douche and that I'm a huge bitch for being this upset over it. But it still upsets me.,1 +Damn!! I was hoping you were giving me good news otherwise!,1 +try putting lemon peels around the base of the tree; supposedly cats hate citrus smell,1 +I love New HAmpshire well the white Mounts.I'm from Maine and I know I hate cold also hence why I moved to Fla.,1 +dont bother with low fat brownies,1 + yes.. a she-wolf in love is it even possible? Which team do we root for now? I'm a faithless whore - struck by Amor,1 +don't you hate yogurt! When you do recover from hating yogurt go to Trader Joe's get the Greek style kind it's fantastic!,1 +Stop it! I keep thinking you're going to say he's here! Now I'm waiting vicariously through you! Dammit! I hate waiting for babies!,1 +ohhhh like that... well then shit girl u shud be pissed. AAAND... u needa tell the BF his own blood is using his ass!,1 +lol tell her to go sit her ass down somewhere lol,1 +I hate when I see people doing that. I am with you on that one. Why do people think that is okay?!,1 +I have no clue what I've stumbled upon but I laughed my ass off... you might too: http://is.gd/a8cz,1 +Oooh I'm so going there this weekend!! I just hate malls at Xmas time. Bah.,1 +oooh I wish I could! but then I have to shave my widow's peak to get them to hang right. And what a bitch to grow back! LOL,1 +ugh I KNOW -- there isn't one!! And I hate when I go into a post and click it -- it just opens the jpg! YUCK!,1 +I imagine. Another thing every time I open the Reader my subscription folders are ALL open. I hate that too.,1 +I jokingly remarked to my man that I was an "internet whore " he thought it meant that I was a porn star. LOL He doesn't get it.,1 +Agreed. Fuck Twitter Grader and all it's kin.,1 +The JVC (LCD) Reference Monitor I have is in a word awe-fucking-some. :) It's great accurate and as good as it gets. It's ~ $4k,1 +fat ol santa may eat a cookie but he will also touch the youngest while they sleep.,1 +Ew :( That sucks! I'm sorry.,1 +you said fuck everyone!,1 +okay. Fuck me. Way to start the new year.,1 +well if u looking for more sex watch the fat boy freaking his pillow thats now playing. Ewwwwwww!!!!,1 +some retarded oracle peoplesoft login thing keeps coming up on my enrolment cart page and i don't know what the fuck is going on!,1 +ripping off Emo Phillips + ba-dum-bum jokes wouldn't get my vote even if i was the web-voter type.,1 +that would be nice too. because i hate feeling violated every month with no payoff.,1 +I do? Damn! But it's FOUR hours! After an hour + of plane ride!,1 +I hate math really do!but will be happy as well when I finish university!,1 +"""don't hate me cuz i'm beautiful."" jk. you're probably too young to have seen that commercial. HA. what's wrong chippers??",1 + We're having a BAD ASS gathering in May you should come. Of course the best part is the hanging out downtown after. :),1 +kicks dons ass. *HUGS*,1 +ass balls... lmfao.,1 +It's not weird you hate that. Me too but sometiimes the list gets a little unwieldy.,1 +#Paypal sucks. Someone is using my identity there and they refuse to do ANYTHING about it.,1 +aw man that sucks!,1 +freak passing shower. was walking by then suddenly a few big drops came down. thought oh shit and ducked in just as it poured.,1 +omgomgomg those shoes with the little flower holy fuck i want them,1 +Ugh. Half the time people pick up "Free stuff" from Craigslist they're driving a luxury car. Heh. HATE them.,1 +damn i'm trying to watch a movie...the tweets are going off the huck. :P lol just kidding don't get pissed alright? ?:D:D:Dlololol,1 +damn you have really become an ordinary man... man that sucks ass!!! lol :P,1 +how fucking sad is the OVA of Samurai X...i didn't want to watch that.. fuck i almost cried.. lol :P jk,1 +I HATE rain..wud rather the snow..crazy I kno..lol,1 +got it .. and I have read that! Gonna re-read tho..Im stuck and have been for a while..sucks! Thx for help--love ur stuff.,1 +might install now that you've acted as my guinea pig :D,1 +any workplace where that isn't safe needs to harden the fuck up :p,1 +that sucks *hugs* :(,1 +probably not but who the fuck knows what's going on with this show anymore.,1 +k im hella boredddddddd hurry the fuck up i saw my bro playing it game looks sick,1 +omg me too! The holidays need to end now plz. Ppl are soo mean and nothing is jolly or holly! It sucks!,1 +Damn that's a lot of money for tickets! I guess her little girl only turns 16 once though. :-),1 +i am going to work on a grassroots gay rights project that will involve the communities of color.,1 +suntem dar ne gandem cum sa gasim o mascota care sa o putem scoate din dulap cand vrem sa acuzam pe cineva pt nenorocul nostru,1 +what do you use then? cuz I hate Itunes,1 +Have you heard any J-Fish songs. if you want a sneek peak I can send you a few songs =) I have all his CD's I'm a J-Fish freak lol,1 + haha exactly! And I love YOUR new picture! I was wondering when you were going to use this cute ass picture! I love it!,1 +I like to look at it as "meeting their needs" not necessarily "kissing ass"... although if you can do both - do!,1 +Damn iPhone made my Brad & Angelina pick blurry! http://twitpic.com/rddb,1 +in the lab...all damn day i had soooo much work to do:(,1 +well lady I'm all for u comin here from frisco to hunt my ass down;),1 +fuck 'em,1 +I just giggled out loud because my dyslexic ass just read "My fluffy ass was rubbing off",1 +whaha ja maar het is zon raar idee dat ze dat lezen xD en dat BOB FUCKING BRYAR iets tegen me 'gezegt' heeft xD je moet vragen o,1 +weekend ofzo? 3) I still hate twitter 4) I love Gerard he's writing umbrella academy but I still haven't read it yet -shame on me,1 +I bet we are freezing more than you are. The North sucks. Ugh!,1 +That sucks. I was actually a guest on there! My first time on the radio.,1 +That sucks. Are you alright?,1 +DAMN! I'll wait a month before I send mine for a critique! LOL,1 +@EightysBaby man..... fuck the lakers,1 +yeah most people just think i'm a bitch cuz i got that screwy sarcastic sense of humor that tends to tick people off? my username?,1 +Dude. That "Sleeps with Angels" song can straight up have my ass bawling. I also love the song "Hey Hey My My" and Harvest Moon,1 +...i love my job and would hate to miss it...I'm depended upon and especially this week I'm needed for our toddlers parties,1 +hahaha. once years ago when he was sleeping I applied some to his lips. I hate it when guys hve better lips 4 lipstick than me,1 +all that I know of is the Revenge vinyl. u? and sorry for delayed answer my internet sucks and trips out,1 +The 401 always sucks between Cobourg and Kingston. I'll be doing that joyous trek on Boxing Day to visit the relatives.,1 +HAPPY FUCKING BDAY YOU OLD MAN!!!!!! <3333333333 CELEBRATE TONIGHT WITH A TALL COLD ONE :) wooo!,1 +HAHAHHAHAAHHAHAHA LULZ @Mod_Alex your STILL a cunt!!!!! hahahahahahahah lulz lulz lulz lulz lulz,1 +UNNNGGGG if he used that fucking word i'm never saying Epic Fail ever again..ooo i'd like to give him a sock in th..NEVERMIND!!,1 +hahaha honestly i fucking CRACK up on shit like that ppl need to srsly LIGHTEN up <3333 ya,1 +i hope theirs LOTS of cursing in that video... oh wait we cant fucking curse ANYMORE baaaaahhhhh DAM THEM,1 +FUCK YOU!!!!! I'M DIVORCING UR FUCKING ASS!!!!! HMP!!!,1 +paaaaaaaarrrtttyyyy!!!!!!!! wait no... fuck it.... move over I'M MOVING IN!!!! HAHA!,1 +psshhh!! your on the WRONG side of SHUT THE FUCK UP!,1 +that video made me angry & want to PUNCH Shirley Phelps Roeper IN THE FUCKING FACE!!!! MAN I HOPE THEY DIE! SUCH HATE! UNG,1 +did he really???!!!! OH FUCK OK I TAKE BACK ON DAN MARINO IM SORRY!!!! OK I BLAME ROMO AGAIN! AND WHITTEN! i'm through with them!,1 +i SENT it!!!!!!!! u'll prob get it in like a billion years since cingular SUCKS!!!!,1 +guess who made a fucking surprise in my dreams last night you butthead!!! thanks to you Martha Stewert loves my dreams! baaah,1 +Coat Rack Contest in the Fab Lab. I hate winter but this would help channel emotions into something constructive.,1 +Santa Cycle Rampage Ride starts at 10:30 at the Fat Abbey Bier Cafe (Juneau and Water). Bring your best red and white costume.,1 +Are you trying to say the saran wrap bacon fat and rubber bands I currently use don't count as REAL gloves?,1 +nerd!,1 +omfgshz. i hate lemonbars with a DEEP passion too!,1 +Hate to say but John's dad was a major OB/GYN (Yeah nightmare for me ) and he holds out that there are no flu positives:),1 +damn! Putting my chocolate cake to shame.,1 +LOL! Lullabot is my employer. A group of fun nice people kicking major Drupal ass all over the world. :-),1 +gay man,1 + let me know if you want a co-pilot tonight to keep your ass awake!,1 + Josh needs medication. Stat. Can i kick his ass for you now?,1 + lets fucking go tonight... you know you want to! Or at least hang out. I fucking hate being alone sometimes too.,1 +you are welcome to spend the night any time... but next time you steal the covers I'm gonna cunt punt you. Not really. :),1 +just to clarify- not really to the cunt punting... but really to the you being welcome to come over anytime!,1 +I will kick that pirate's ass if he got married again. Just sayin',1 +That it's that rare of a sentence is sorta depressing. Especially in light of @mariannemancusi 's "Loser Cam" Xmas gift to me,1 +i hope singing along- i'd hate to think i'm torturing poor little Pixel!,1 +damn right it should be horrible stuff YUK!,1 +hate to tell you but it only gets worse we're at 1440 in the UK and all my office wants to jump out the window!,1 +so do i! especially rocket. I hate celery though,1 +I saw that. what's his name! In so far as the fat bastard - what?!,1 +Noooo this is not caffeine. This is IT! Let's kick ass and then CELEBRATE! C'MON girlie. We got it goin' ON!,1 +Don't you hate that? I *always* recognize commercial voices and am all like Gene Hackman? Lowe's? Really? OMG!,1 +And by no one I assume you are including me...damn.,1 +My sound is being persnickety so I can't catch up on the vlog until I reboot which I'm too damn lazy to do now. But tomorrow...,1 +I always thought of him as Hermy the wannabe dentist.,1 +Me too. Now I'm dragging my mature ass off to BED! G'night hawt girlie! Woot!,1 +fuck you merten.,1 +you should probably reattach your fucking ass for you have laughed it off.,1 +That sucks - at least I have my iPod. Still least I'm not alone! :D,1 +Hot damn champ right here! Had the old school TT shell helmet on for the whole trip. Backwards even! Huoooooooah!,1 +Piss off. ;),1 +Have you seen Bitch magazine's article about twilight? about "absitence porn" http://is.gd/d2pt,1 +thats what i am saying...they need to pay me.thats m*ttaf*cking free promotion. ungrateful ass people.,1 +heh! ping me if you do come down to gay paris. We can interview eachother on the red carpet :),1 +I'm with you man. Here I am on Twitter at 20 to 6 in the morn damn.,1 +Oh hey that's good! Makes much more sense than what I had floating around in my head. :) (1001 uses for goose fat...),1 +Sony Vegas = fucking amazing! :D,1 +stop stealing my schtick whore!,1 + Depends. Will you sit there and hate yourself? ;) Would you be able to do a half day?,1 +You tell them to Fuck Off. They'll listen,1 +I've noticed he can't spell much beyond NOM and BARK ... sucks for him there's only one K and two Bs in Scrabble.,1 +Neat. Damn PS3. Maybe I can convince mom that dad's ps2 needs an upgrade for Xmas.,1 +That doesn't sound nice at all. As somebody who was made redundant with one day to trade last year with Swatch I know it sucks!,1 +I dunno did you offer me any of that fuck-ton of beer in your fridge on Saturday? NO,1 +You're quite right. I withdraw my aggressive commenting. Fuck-ton should be more widely used.,1 +basically we agreed that you/http://lofistl.com are awesome/bad ass. Not gonna lie i brought you up! ;),1 +I *thought* you'd be preparing! Best of luck - what a bad ass opportunity for you.,1 +gav that just sucks! - u ok? i think the brakes would be best to stay on for now!!,1 +I don't know about that... Drew's ass is pretty tiny. :) Knees work too... except Drew's knees don't work...,1 +Uh... yeah. Joe and I have been wondering what all the fuss was about. Put your ass in it make sure it's tight.. done.,1 +ha ha loser :),1 +I can share my gay boyfriend. He just left. Its 1 in the morning. You totally coulda had him from 9 to 1! Ill keep first shift,1 +i update from my phone a lot you can add twitter as a contact. damn bsa is getting all high tech.,1 + & @karkar I hate Walmart anymore. I'm gonna have to start taking my own cart with spikes and barbed wire. Maybe flamethrowers.,1 +I hate being behind those slow as plows. In a storm it's nice to be on the plowed road but I hate going that slow. Ugh.,1 +or moonlight and dryness. Damn that 5am wakeup.,1 +welcome to my world: you're sick some people think you're funny others hate you nobody wants to suck your cock.,1 +I'm jealous - I get all emo when I lack the season of all natures sleep. :-),1 +Wait if I shut down my phone company who's going to sponsor you in the emo olympics?,1 +there's gonna be a nerd party in utah on new years!,1 +YOU? FAT? R U SERIOUS?!? Remind me to slap U when I c U Saturday mkay?,1 +Hey at leat you got SOMETHING. Know what we get at work as I found out 2day? NADDA! Bah hum bug! Damn scrooges!,1 +damn that was hard - my last attack: gnocchi! If you answer to this you'll win,1 +get out of my fucking brain! I am not yours!,1 +I hate trying to hear over loud music lol,1 +do you get one if someone sticks their boot up your ass?,1 +damn that is shady. Why would they put out a false report?,1 +I do but it sucks at scrabble.,1 +damn won't be going to that.,1 +This guy was that weird solid fat looking type with skinny legs. More funny than scary,1 +here's how to teach you phone to say fuck properly. Don't tell your parents. http://snipurl.com/9iryv,1 +wow r u serious? damn did that period of time skip over you? lol,1 +damn! i knew if i had said nobu that auto-tune would already be hummin,1 +ew u slut get on skype <333333,1 +Same with prospective clients. I'm returning YOUR call dumb ass.,1 +dude no offence you're awesome but currently I think I hate you. :0),1 +Figured tis the season to be fat. For a bit. And then start working properly on weight in the New Year-A is coming to gym with me!,1 +You have no idea how damn tempting that is. I've already procrastinated by drawing roads and zebra crossings ;),1 +whats the operating system on it? i have windows vista and vista sucks bad..it is full of bugs still. shuts down and freezing alot,1 +wow that sucks! well i wish you luck with all that :) i am going to crash so have a good night ok and stay warm.its freezing here,1 +you're gonna get fat!,1 +LOL! not bad for a gangsta bitch...wo pretends to be classy...LOL! I love the holidays. My fav... 2nd to my Bday!,1 +@lauriewrites OMG...Margeaux can reach this octave range that I swear makes me see red! and she knows it. grates my fucking nerves,1 +you can fuck right off about that hoodie thieving comment,1 +point taken. fuck.,1 +grrr I hate that. I have an ex-friend who only gets in touch when they have something great to tell me about themselves... o_0,1 +Oh yeah. That would be a good one. I still think they could kick ass doing "Got to Get You Into My Life.",1 +by a str8 terms technically no penetration means you still have ur vcard but in gay terms she isn't a virgin. sex is sex,1 +whiterabbit819 stFu u ass i care and thats all that matters!,1 +y'all are so fucking classy. miss you!,1 +says "ahaha thankss. my auntie kim always says it grassy ass=] she's amazing.",1 +but you know what i hate ? the comments that are anonymous that i can't figure out who they are.,1 +Fuck yeah. I noticed that too.,1 +Yep it's blocking the absurd hate ur preparing to throw my way in 5....4...3.....2......1,1 +I don't think gay rights groups could force churches into gay marriage just as churches can't force gays to become straight #tcot,1 +yeah apparently anytime you use the word "hate" on a tweet your ass gets retweeted and subsequently followed. Reminds me of ☭.,1 +Bitch! You weren't following me!,1 +Hey don't knock the Port+OJ until you've tried it.As cold remedies go you're still sick but no longer give a damn. ;),1 +Now THAT's an adventure that I will pass on. Oh damn I do have to take a present back. NO!!,1 +I don't use the touchpad(I hate them) I always use a USB mouse. We are a toshiba family.. we have four,1 +Damn Jim idk what to say:/ Sorry man.,1 +ahhh yur a slut for that stache!! damn gurl...tug it once for me too,1 +Totally. The ass end of my Jeep is not but no life forms were impacted.,1 +Bitch I was doing laundry first. haha jk. Or am I?,1 +Mind your own state politics. Joe Smith was a mammal before a prophet. Some mammals are gay and even heterosexuals have anal sex.,1 + I'd like to get a signed copy of 'Running Like a Fat Bastard'. Pleez. Only this will complete my fitness lit collection.,1 +Hopefully I'll be able to get the damn things on- he's ferocious when cornered hungry or just feeling rascally...,1 +The ole Cell Phone Yeller in the Elevator. That sucks.,1 +I love them too. Though I have to say that Sylar is my favorite villian in the show. I love to hate him. Hehe.,1 +Yeah! This blond gay guy came to audition. I almost fell out of my chair when I saw him. He looked identical to chris corner!,1 +- and btw I hate the new Pepsi logo/can. Maybe cause I didn't get one in the mail...ha j/k,1 +I nominate @benmack for a Shorty Award in #business because he is a bad ass who says it likes he means it.,1 +just found the email buried in inbox - count me **IN** i've been on the receiving end of foodbanks growing up. it SUCKS BIGTIME,1 +hate to rub it in but it says 70 on the thermometer here. May have to do my beach walk early today to aviod sprinkles.,1 +did you see Mike Huckabee on Daily Show earlier this week? It got pretty intense with gay marriage topic.,1 +Avocado is my FAVOURITE 'good fat'. Hahaha... I'm afraid I indulged 2day and had my avocado w homemade cheese nachos & black olives.,1 +Mine I seem to fuck it up all the time. I'm off ~30 bucks. I'll leave it that way for 2-3 months and finally put an entry (cont),1 +Fuck you and your snow! Or bring some of it down here? ;),1 +We've maybe had 1" total here across 3-4 different "snows" My first time with snow tires ever and I can't have any damn fun!,1 +man! and you're texting while driving? haha crazy! damn you're lucky. i wish my parents would let me go! 30% chance i'm going,1 +aw that sucks!,1 +oh that sucks! apply for targets/walmarts,1 +haha i don't really like walmart that much either. hmm yeah that sucks :( hope you find one,1 +Hey! Remember me? Lizzy from the David Cook forums. How've you been? (I'm guessing pretty damn awesome right now... =P),1 +Reid I made it! urghhh... I hate shopping. The trauma of it sent me hiding under the covers. Or maybe that was the cold.,1 +Damn you for seeing the season premire over a month ago!!,1 +You don't even know that half trust me sallie mae is the one bitch I wish I could divorce right now,1 +HATE.YOU.SO.MUCH.,1 +I hate you.,1 +Damn straight!,1 +Hey thx! I just hate to have Win XP crash anymore than necessary. That is why I have been so conservative. I'm gonna try Chrome.,1 +I hate when it happens to people that are nice. They don't deserve embarassment of that sort.,1 +ugh you know ro fucking reminded me about red bull. i told her when i wake up my bibingka's gonna be sore. )-: nightmares!!,1 +omg is he like 19? MUAHAHAHAHAAHAHAHAHAHAHAHAHAAHA you're such a fucking cradle snatcher bb.,1 +faka... update your twitter you fucking homo sapien.,1 +we r so fucking on for real. I might leave after Josh but i can't wait! >_<,1 +dropped off some old 3.5" floppies. A System Disk and Mac Paint. Retro Mac crap kicks ass! - Photo: http://bkite.com/02RHw,1 +I mean you hate it but you bought it doesn't that speak for itself,1 +Could be some accounts getting removed after suspicious behavior. Damn spammers...,1 +Damn what the hell is the deal with the Drama Queens coming out of the woodwork lately?,1 +There was a MAD ABOUT YOU/ DICK VAN DYKE crossover about a decade ago. Carl Reiner reprised his role as Alan Brady.,1 +wait until you have a final cut on your documentary before the sex change. You don't want to fuck up continuity.,1 +freak yeah i do,1 +Yea its got a heatsink bigger than a server lol. Its a great machine. I am loving it except for the leg is bent. DAMN COURIERS GRR,1 +sure I could use a lil snow here. The people would freak out here. LOL,1 +im sad there's only 15 more minutes left! i hate how it shows only once a week lol,1 +dude.. I just think the twinke or whateva you call it... It damn cool.. LOL,1 +SWEEET you've just become cooler in my book or as someone said earlier today.. kick ass... so 80's :),1 +Amen. Thrilled to see Brad Sucks on Rock Band 2. Congrats man I hope you get some of those 80 MS Points. @bradsucks FTW!,1 +happy for you sucks for me! this should have been SNOW!,1 +immortal? invincible privileged all-powerful above-da-law I-am-da-law da ends justify da means I don't give a fuck I'm IT...,1 +i hate how it never snows there... and you live IN CANADA! do you want some of ours? I hate snow.,1 +i was afraid people would think i meant actual buckeyes! i hate peanut butter but when its w/chocolate its ok lol yummm,1 +what the? how the? damn it,1 +do you under stand how much i give a fuck?,1 +you can take the girl out of the hood but you can't take the hood out of the girl. Detroit didn't make me a pussy that's forsure,1 +im horny god damn porn fuck eon now I need real cock. where's ashley!,1 +I would only fuck you if I was drunk... lulz.,1 +bitch better share this vivid alt shit isnt doing anything for my vagina and its moistness. fuck.... EON I WANT TOSEECOPULATION,1 +you cock juggling thundercunt!!!! I have the best childish insults ever.,1 +Yes! All of those twitters were directed at Frank Miller and his horrible screen play! DAMN YOU FRANK MILLER ILL KEEL YOU!,1 +ZOMGZ Fontfeed! I am such a Font Freak®. I used to have 5000 fonts on my puter. The poor thing nearly choked to death on them.,1 +..........I hate SUVs. They're a great big ugly road hazard as far as I'm concerned. And very few people really NEED them.,1 +your first time? you'll soon be sick of the damn thing...,1 +damn australians!,1 +Oh that sucks. Why I blew off my own appointment yesterday. I just couldn't face the wait.,1 +At the C's before I hit the hay. Still hate Boston?,1 +yeah it really sucks I need to manage my time better I guess or maybe I should party haha. Oh well. C'est la vie I guess.,1 +slap a bitch? What you want to do is CHOKE A BITCH like Wayne Brady!,1 +I got fuck all for Christmas babe. How about you?,1 +--well...i had to pee...and my stupid ass lifted the seat with the same hand i was holdin the phone in...then...PLOOP!!!,1 +damn straight! I say you me and danie have an epic rap party over break since we'll all be off. Yes?,1 +haha someone told me katie (?) was a bitch so I was like ehh. Death cab & JACKS MANNEQUIN FGHSDJ <3 hehe,1 +Your John Mayer = My Jacks Mannequin. Andrew McMahon is my LIFE SUPPORT. Not to sound emo or anything ahaha,1 +LIKE BITCH WUSSUP! Ahahaha,1 +I just needed an axcuse to share it. I hate oatmeal actually.,1 + Damn woman you don't know your own strength. LOL,1 +I don't always agree with you... but I do this time! Slow the hell down and stop getting so emo about it.,1 +no she didnt yet. maybe she does hate us now. *sad day*,1 +lol... I have ass too..,1 +he hasnt scored 82 but he's taken a team to the finals damn near by himself,1 +that's what you fucking get for that fucking video!,1 +ass.,1 +That show sucks. It always scares you. And Boo Danny. He is a fail!,1 +yes & i cant fucking wait! I can hardly bring myself to review - i must but dont want to.,1 +fuck no _ I'll be out there by myself. That's my ALONE time. Meditate if you will. Me the pipe & the stars rflecting & thnkng,1 + I couldn't agree more. And if I didn't feel like such a loser I would say I win for understanding!,1 +Damn those Mythbuster guys! Anyone who works or lives in Alameda must be crazy anyway!,1 +lmao i hate you. <3,1 +i hate you! i want to be in bed :(,1 +i bitch slapped my cousin once.,1 +.....I.Hate.Him. He's.... UGGG!,1 +oh i am fine. But she will not be if she doesn't shut her fat fucking mouth.,1 +violent ass...,1 +fuckery is always welcomed..only second to hate. Speaking of which...I haven't told you how much I hate you lately,1 +a fat boy sweet talker?,1 +Why do you kombat when I have to leave the computer!! DAMN YOU!!!,1 +I wanna get him a ring that means "ur a great kid to fuck",1 +haven't the Palestinians suffered enough without having to deal with that fat fool......heh,1 +AHHH I HATE THAT..,1 +lol you'd go gay for Zac Efron,1 +"""If they would have cremated that son bitch I'd be tale grabbing his ass right now""",1 +So you are right... reciprocity is a bitch (Just not in the way that Lauren Hill meant it),1 +Grammar nerd.,1 +There's a dfference? Damn.,1 +mark Ya! Dick head old man!,1 +i hate people who update their fb status more than once a day unless absolutely necessary...tweets-thats what they're for!,1 +damn.,1 +So people are just ignoring me. :-( That sucks big time. LOL. Especially when I thought we were better than that. I see...I see..,1 +Damn you to hell for getting my hopes up. I though you were talking about Daley.,1 +LMAO. I was very confused. What a bitch she is.,1 +I never said anything about lovin ya dick cheese just that I say your name alot probable with fuck in there somewhere,1 +not on your life dick-tongue,1 +crutches suck big time. i hate them lol. hope you get better soon! :P,1 +esp. if someone is working for an employer supportive of gay rights seems wrong for someone to then not show up to work.,1 +regarding you and your tea obsession you have become SO GAY break out the Thermite man!!!!! Shape up,1 +the only show more thug is the nigga who be in the woods eating beetles and drinking his piss! that niggas GANGSTA!,1 + :-) My line in the sand: watching shows on my computer screen. HATE it. w/42 inch plasma & groovy sound you can never go back.,1 +what a fucking bitch.,1 +As opposed to a non fucking fuck?,1 +attention whore.,1 +/emo damn you.,1 +Dick Clark looked sloshed last night? I was thinking animatronic.,1 +This bad gay works for a company that likes to write people up for sneezing.,1 +Fat Tire. Steak Taquitos. RocketTransfer.com. AJ's on Court in DSM.,1 +losing winter insulation is one of the horrific side effects of Biggest Loser that nobody warns you about. It's brutal!,1 +I hate "Rag and Bone" so much.,1 +emo-hair+hip hop-fitted hat,1 +I would not be proud of that. That just means you're a whore or a polygamist.,1 +if he's upset with Brandyn's work area I'd hate to see wha he thinks of mine :P,1 +Whoa. Marc Blucas' new hair is a fucking crime against humanity. The horror. From loveable goof to douchebag instantly.,1 +Unfortunately I can't take credit for that blog-- I found it while surfing the 'net at 4am and laughed my ass off!,1 +P.S. "Fuckitty fuck fuck" is def. worse to say in a Holy Place. Especially if you're Catholic.,1 +also let him know his Irish accent sucks in some of the podcasts,1 +I hate .... you .... zzzzzzzz,1 +Hey... Stop twitting and post a damn blog!,1 +http://twitpic.com/qtt0 - O.O bingo is waaaaay to hard for me. hate it. i wanna fuck it..wait thats didnt come out right,1 +xD! i know. hmm ....i wonder how it feels like to fuck bingo hard .....hmmmm i guss i'll never know D':,1 +oh youuuu little bitch. Just keep your winter gloves away from your zipper and i'm sure you'll be fine.,1 +not to sound amazingly astoundingly gay (not that that's bad) but you sound like a man in desperate need of a few pillow shams,1 +as much as i hate auto-DM's i also check out links if they're music related.,1 +I'm blocking you because you have no value. Go back to telemarketing or some other loser marketing scheme.,1 +If only Edward and Bella were slightly less emo :),1 +@scanman and @asthepumpturns. Yeah I am a mean mean person. Horribly judgemental towards one specific victim. Poor guy. Retard.,1 +damn it.,1 +NO. You're in BATH. You worked your ASS off for this. You're coming home to GREAT THINGS. Have FUN FUN FUN. NOW.,1 +your mother's a bitch.,1 +that sucks for your teacher. poor guy. isn't your class full of adults? do they act mature like adults are supposed to?,1 +fuck yeah!!! That is so far above just not failing!!,1 +FUCK.,1 +fuck yeah!!,1 +well it is gay hippie stoner music,1 +aw man that sucks!,1 +Oh no! Everyone ok? Damn you rain! Ruining my BFFOT's day!!!,1 +WHO CARES I HATE THEM! FTW! Knitting and crocheting before bed <3,1 +damn.,1 +*sigh* oh Karrine. You said the phrase "Sluts with Butts" on a site called MomLogic.com. You fuck'n rule! :) LMAO,1 +Rockets... damn. makes me wanna turn ne-yo's gay ass off my tv and just sit here.,1 +wow that really sucks. LOL.,1 +that sucks I know he was looking forward to that hook up...,1 +fuck yeah. swing by sometime (after the 17th) and i'll take you to rocco's. yeah think about that.,1 +i hate her in every movie. she has one look. you know the look haha,1 +Read your post "Sincerity Sucks." Thank you! I feel less guilty for holding certain "sincere" people accountable for actions,1 +Maybe they're looking for Carl!!! That damn Carl.,1 +Fat Baby drinkinggg and listening to Duffy's band,1 +p.s. i hate you :),1 +I should brush my bangs over my eyes and join you in emo grief.,1 +It sucks :(,1 +yeah I hate this bitch and I'm glad the chief killed that other dude!,1 +@Heylin1234 oooh shit i forgot what i was gonna tell y'all -_O UMMM oopsie...ugh i hate my short term memory,1 +With the departure of the Sonics I've adopted them as my squad. I still fuck w/ CP3 and the Hornets but I gotta go Pacific NW.,1 +Damn straight.,1 +Have you seen his ugly ass? he IS the phantom. Women wouldnt sleep with him if he didn't woo us with melodies and faux-mance,1 +DAMN HO You sick as FUCK!!!,1 +Jesus fucking h Christ!!!!,1 +fuck you change your name. Do you know who I am? (yeah neither does my mom.),1 +to be specific he didnt choke her (right?) he bit her on the back while banging her in the ass. (just to be clear)... :),1 +still got that ass whooped haha.,1 +go cowboys!!!! Yup I said it. Two tears in a bucket.. Fuck it lol,1 +go fuck yourself.,1 +cause i just need to get my mind away from all the bullshit out here..im bousta say fuck doin music...just promote others...,1 +i mean damn don can you get back to ya own brother?!?!?,1 +dick van dyke is way cooler too.,1 +You kidding I bloody hate anime and I liked Bleach.,1 +Not necessarily while I do not agree with hitlers actions he was a damn good general and got germany out of a depression that,1 +I'll love him in the biblical sense just as soon as they chop his emo hair off.,1 +u whore...,1 +Quit the gay ex and you wouldt sleep so much,1 +fuck you man I'm a vegetarian today! That just makes it harder.,1 +HAHAHA. tom cruise "I WILL FUCK YOU UP",1 +That album is the fucking shit.,1 +yes? Yes? Fucking YES?,1 +@folub i'm hammered and want you both at Hot Damn.,1 +Y'know it's very stereotyped emo.. I know plenty of older people who follow the trend / cult the whole way.,1 +DION WHAT THE FUCK YOU SAYIN? LOL.,1 +: Dude you're gonna hate me! Here... more T-shirts for da T-shirt lovers : - http://snurl.com/8fhdw : ),1 +- damn you and your constant banoffee pie mentions!! Very tempting LOL,1 +Fucking pallys. I learned to hate them playing Warcraft III. And fuck rogues too while we're at it.,1 +Hell yeah! With their invisible sneaking nonsense. I almost want to play as one some time to fuck with people though.,1 +I was belting out songs from "Fiddler On The Roof" and "Rocky Horror Picture Show". I might have been a gay Jewish man?,1 +evilbeet do u not feel that when u watch jon & kate plus 8 its fucking "in ur face" and purely advertisements?,1 +jia..that is dead ass wrong,1 +I should round house kick ur al qaeda lookin ass in the face with my flip flops!,1 +ok! where is it then? send that bitch to me!! haha!,1 +I freakin hate that! For me it's "Hi Rose" Rose is my last name you idiot! LOL,1 +your ass needs to be in NYC for that shit!,1 +Please do...anything from you my sexy bitch!,1 +so i said listen cunt.. i hope your year brings prosperity and happiness. and then i got my gun and blew her brains out.,1 +http://twitpic.com/t47m - Srsly I hate it.,1 +Turns out I hate shopping too. Way too many sounds and smells. I just want to pee on everything.,1 +Just had a big ass waffle breakfast and am catching up on games from 08,1 +I DARE DAT ASS 2 SAY SUMTHAN ELSE STUPID U DA STUPID BITCH!,1 +FUCK NO I AINT PARTYN LIK DAT JAYLA U STUPID,1 +JAYLA U TOK DAT DA WRN WAY MEANIN U WEAR PANTIES ASS ITS NOTHN SEXULA SO DNT BE THANKN DAT,1 +N HOW BOT BARBARA GOT ANGIE ASS GUH ME N TELA WAS LAUGHN 2 DAM HARD,1 +Judge Chevere at the Daley Center..she's hispanic and a bad ass! Too bad i'd never want to go to law school..,1 + you'll get through it and win in the end. FUCK THAT SHIT IN THE FACE (as ange sez)!,1 +you're a bitch.,1 +sucks to be you,1 +I hate you so much.,1 +and the beamer was underwhelming. had all kinds of issues with the on-board computer. nothing major. just enought to piss me off,1 +He's an asshole. I'd fucking bean him for love of the game. Not starring Kevin Costner.,1 +Damn dude...,1 +WOW YOUR A BAD ASS... HAHA,1 +Yeah and T-Mobile Germany offers unlimited Worldwide calling to other T-Mobile phones. USA only offers Nationwide. Sucks.,1 +Scars on my face? Are you threatening me? I don't like liars threats nor unexplained coincidences. Kindly fuck off!,1 +DAMN IT EDDIE!,1 +can u be a lamb & add a *gay* category to ur awards so I can nominate myself & others,1 +yes...and they are about to be fucking DISOWNED. *grumble*,1 +Well fuck yeah!!!! how about allston? @xdeartragedyo imma try the one in jersey @evry1 I got my 2day bamboozle tics today,1 +uh uh u fucking bitch. haha dont take any coats skinny jeans slippers gloves bomber hats or scarves.,1 +we gonna make bklyn see what's up! Hell fucking yeah!,1 +Savor my ass. ;-p,1 +I'll be a crab ass with you. BAH HUMBUG!,1 +damn damn damn James....,1 +ok I don't care what @cyandle says about being PC bc that is SO queer. And ftr my gay friends would say something worse! ;),1 +yes yes so gay.,1 +SON OF A .... bitch! hahahahahahaha,1 +i hate you.... you know why,1 +u lucky whore!!!!!,1 +A BAMF is a bad-ass mother f*cker.,1 +Fuck that! I feel awful for you having to wait out there!,1 +damn i hate Ed Hardy,1 +pig(s) !!! Wow - always thought you had plenty of space but how many did you eat ?,1 +was just joking...hate people who act that way,1 +I do but I picture the fat guy in the leotard,1 +damn that sucks,1 +damn right,1 +ur a huge loser did u know that? lol,1 +i hate sewing. Period.,1 +don't worry karma is a one mean ass bitch. They'll get what's coming to them...,1 +retard?,1 +haha no gay stuff is good! cuz i tend to be attracted to females! haha jus chillen getting ready for work!,1 +i hate u like miniature dogs hate people dressing them in t-shirts and little booties.,1 +fuck u BIATCH!!!,1 +I hate you.,1 +fuck off,1 +That was fucking hilarious... WIN,1 +omg that fat dude should not be in leotards idk they made them that big lmao,1 +damn u i wanted to see sexy lesbian porn lmao,1 +@TitanLineAudio lol BJ's blow ass :P,1 +Damn! This is deadly - keep em coming! :P,1 +check it on your wii whore.,1 +No....Always been happy....never quite gay...,1 +get them all out of the dome ....NOW damn it...,1 +You'd be television slut.,1 +I HATE that!,1 +GO GIVE YOUR GAY LADYBOY HUSBAND AN OILY BODY MASSAGE WHY DON'T YOU. AND @yourscenesucks yes its true.,1 +OMFG I HATE YOU IWANNA GO ON NEOPETS :'( WTFFFF. YOU HAVE EVERYTHING I WANT.,1 +hate you so much,1 +lmfao! See this why I can't fuck w u! U kno I'm dead offa that Al B Shep!....,1 +LIKE HOW U SAY WHAT THE FUCK AND CLEAN IT UP WITH HECK LOL,1 +Thai sucks too many peanuts,1 +Wow! That sucks.,1 +it was in reference to his gay suit,1 +I hate them. So much.,1 +i am just so behind now . . it sucks.,1 +Oh damn. Saw the trailer for Dark City… Looks gooood…,1 +I'm sick of Tinkerbell. that bitch is making my movie life hell.,1 +That really sucks. :(,1 +every one laugh at the sad gay clown,1 +fuck you man. you can pick on garden state but leave pushing daisies alone.,1 +I hear you can cook your ASS off!!! =),1 +damn your fat you even got a turkey as your profile pic for good measure....,1 +Tommy blows cock! lol,1 +ah damn ok,1 +Pah. Loser. ;) Haahaha. Well done fella. Very interested to chat to you about it sometime!,1 +i didnt call in gay either. but my company donated 100 g's to support No on prop 8. ::shrug:: squaresies i guess.,1 +I hate Juno. That movie blows!,1 +I don't care about his fucking kids.....I want JP's kids head on a plate.,1 +fucking jp losman,1 +Fuck you and your family.,1 +damn.,1 +@TheSoXRoXmAsTer aw shucks you guys...are gay.,1 +Ugh. That truly sucks :(,1 +A COMMUNIST FUCKING DICTATORSHIP! Fuck Che Guevara. And all the t-shirts with him on them and those that wear them.,1 +You won't miss much. Her husband is cheating she's pregnant he's an ax murderer her son is gay. That's pretty much the soaps,1 +ah shit that sucks!,1 +antlers. nah fuck that. they look stupid and extend the paradigm of happiness seasons fucking greetings etc etc,1 +that does sound gay. I never had that in year 12. And thanks!,1 +yea dani thats kind of gay sorry to tel u lol,1 +band nerd alert!! Lol,1 +LMFAOOOOO. and he looks emo now? i'd believe it.,1 +oh. yeah. no loving for nikki. poor nikki. she's too emo.,1 +ITS GROSS. AND NOT NEEDED. I HATE IT! LMFAOOO.,1 +FUCK AT&T!,1 +damn yo I did!,1 +Dick through brains,1 +then eat ass! Don't eat ass though just eat...you ass,1 +lol ur whale penis,1 +I know there's a bottle of bourbon in that house. Hit that shit! Tap dat ass!,1 +That is bad ass.,1 +nerd!,1 +DAMN.,1 +Ouch. That sucks!!,1 +good! i hate digg...it's way too gamed,1 +Hmm...gay marriage is a subset of gay rights but they are not different animals entirely.,1 +ouch that sucks..,1 +i saw you had this thing so i made one too. loser i know ha,1 +thanks. i know i hate it to but it also makes me happy to see ppl that care. you made me smile so good job :D,1 +sigh.. I can telw you because altho you'll laugh at me at least you won't think I'm a freak or tell anyone.,1 +dawns a Fucking twat and @occultclassic that is the best song on the album,1 +damn yeah,1 +why do you eat so much you fat bastard,1 +lol. I know she's a mess. But ya ass was not getting up.,1 +Then I would be gay and I would kill myself. Don't become a boy please.,1 +yeah those darn gay alarms at CVS.....,1 +yeah im pissed. liek my body is tired but my brain isnt or is it the other way around? fuck idk anymore,1 +Yea that is some BS! I HATE MESS LIKE THAT!,1 +OMG you fucking got them didnt you?!?!?! I'm so jealous!!!!,1 +oh yeah! Radios powered by pork fat!,1 +Go back to your pork fat radio!,1 +was it the Nigella coca cola ham? that pig rocks!,1 +Fuck that shit. I told people... "DON'T MAKE THAT ACCOUNT!" and someone had to do it. Fuck that shit.,1 +hey fuck you <3,1 +that song is so emo to me,1 +ikr? It's so fucking gross. GET ONLINE AND SAVE YOURSELF FROM THE 'TARDFULNESS.,1 +the punk ass pistons?,1 +ur smater than me then. last year i was out on nye sick as fuck. came home with pneumonia,1 +FUCK YEA! THX! Id like to thank all my influences from my grandma (rip) to Sam L. id also like to thank myself for being great!,1 +LMAO!! Hot sauce indeed! but sheeeeit. you can take a picture of @shaydechelle wrapped in ME! fuck the dumb lol,1 +yeah and its really cute that i filmed two weddings that need to be edited and I CANT because my uncle sucks hard.,1 +ARGH! I hate that too!,1 +gah! Damn you spoilers! I'm only on season threeeeee!,1 +Oh man...that sucks!,1 +whooo. did you have to choke a bitch?,1 +i hate u! Jk.. But u can keep it.,1 +she took $60 from me $50 from my sis 2 separate nights. She says her stuff was jacked too. Don't buy it. Betrayal sucks.,1 +You're still alive? Well damn I just lost a bet.,1 +way to not text me back DICK. :P,1 +fuck yeah they do!,1 +holy fuck.,1 +i got the whale too. :(,1 +damn.. maybe ur next twitmance will be whole ass..,1 +sucks 2 b washed up.. gangstas paradise was the shit,1 +aw dammit I meant to call @graemem a lame-duck Scotsman. Thanks for fixing my lame-ass miss of a joke!,1 +@hermanos @jamessime wow I totally know that fine line between love and hate! #dead_by_january_i_didnt_sign_up_for_this_shit,1 +I never watch those show or even read the lists because they invariably piss me off.,1 +he's a retard. shouldnt he be old enough to know to not be so damn nosy and butt in on peoples relationship.,1 +Just keep your head up...you kick so much ass...,1 +I didn't call her fat at all! Keep your fucking nose out of other peoples business!,1 +oooooooohhhhhhh sh*t! Damn where all the white women at! Come on! Hahaha (so is that why celebs "crossover" when they make it),1 +ah damn.,1 +I hate those fucking hash tags.,1 +some loser had already. He did Daniel by elton john,1 +A pussy on my cock on my pussy if you wanna take it further. ;),1 +I've been called a pig if that helps. Recently even,1 +damn you.,1 +Hahaha! Well take care then. We would hate to lose you to your homeland anyways. Come back safe!,1 +and you're a smug cunt so it must be true!,1 +fuck yo moustache you young ass nigga. Step yo beard game up,1 +I might get in a snowball fight out this bitch!,1 +what if it could be all 3 that would stink on 2 levels but I bet it is a fat bonus or ur picking up his backyard,1 +newegg.com.... once u know u new egg.... can get a 500 gig for fucking 30 bucks on there,1 +a semicolon sounds like some sort of gay sex act gone wrong,1 +I hate it when you get "blue" teeth. LOL,1 +hour meetings foe a job you're failing at because you hate it your bentley that you don't even drive cuz gas is so expensive in,1 + Damn :(,1 +...fuck jared leto. i forgot it was his bday. 25th HIS BIRTH 26th MY BIRTH ECHELON THROUGH THE BACK DOOOOR.,1 + damn 'reply' button ... -.-,1 +agreed. UGO sucks ass,1 +it's the damn music ugh terrible!,1 +Also you are not Canadian fuck.,1 +yeah... it sucks...,1 +i hate those DIY post office things here in #ALB. no matter what the lines are still insane.,1 +rogue. I hate you and your ability to spell correctly. though some of them were red but they were communist. not rouge.,1 +I hate chris,1 +u know what................. ima put jourdan on your ass.,1 +omg that so fucking sucks,1 +fuck. :( <3,1 +this sucks ass!,1 +fuck yo couch! In yo face!,1 +FIRE HIM!!!!!! lol lame ass mofo....,1 +get your ass here !!!,1 +Nuno Bettencourt ftw. Damn!,1 +Fat ass!,1 +and most of them are ugly and fat..lol,1 +i couldnt agree more. HATE sandra lee!,1 +i'm ok now darlin :) i just hate my body sometimes. it hurts me when it's most inconvenient. i'll be ok... :) thank youuu,1 +http://twitpic.com/taap - fat.,1 +http://twitpic.com/v2mo - lol.. hate u both..,1 +http://twitpic.com/vhtp - LOOOOOOL HATE!!!!!!,1 +awwwwz poor little emo girl,1 +Damn skippy.,1 +that sucks. People are stupid.,1 +hate you both!!,1 +hate u,1 +Injections don't work in Vista? I tried in XP didn't work there either crazy bug or something :(. Damn you C++ Win32 API!,1 +it is not only terrible... it really sucks.,1 +AND DAMN I JUST LOST /AGAIN/.,1 +dude that sucks!,1 +if anyone's a loser it's YOU.,1 +lol whore bath...funny.,1 +Fat Boys have a new song?!,1 +A gay couple getting married in NYC isn't going to change anyone's idea about marriage. Divorce has redefined marriage.,1 +Heores Season 2 sucked! Full of emo shit!,1 +I LOVE Pocoyo!...because I'm a freak!,1 +i hate you.,1 +i didn't laugh fag.,1 +Pretty sure it's CO2 and H2O produces sugar but damn that was a long time ago,1 +Well that sucks.,1 +lmfao! bad ass!,1 +wow. your dad looks like a total bad ass!,1 +You coming to work today E? I know it's Gay Day and all. I wasn't sure if you were gay or just running late.,1 +Damn if TJ doesn't like your music it must really suck. This guy will cosign anything,1 +old ass nigga!,1 +they stole my slogan!!! I hate them for that!,1 +That happens here in MD too. People totally freak!,1 +bitch... lol jk,1 +why would i accuse you im SUPER FUCKING JESLOUS OF YOU,1 +kiss my icecubes formerly known as my ass cheeks.,1 +that sucks balls!,1 +I hate that too!!,1 +NERD!,1 +YOU KNOW IT BITCH. :D,1 +No God no. Fuck no. Fucking fuck god no.,1 +Gypsy bitch!!!!!,1 +LMAO!! I seen that that dude was mad angry... then got his ass beat,1 +fuck you shane lol,1 +oooh that sucks. ibuprofin,1 +enak aja! nick carter ga gay!!,1 +ohlala dago ktny tmpt nongkrong gay :D,1 +@BikerSwag damn! No kidding!,1 +Man fuck Alton-Darby.,1 +Sigh. Fuck 4chan.,1 +haha I always say that! Girl or not I too can rock out with my cock out! Hah,1 +I hate em..,1 +He's so fucking annoying. I would just tell him fuck off and it's his fault he has an unverified address >:/,1 +yeah and I am the man in the relationship @kRockXP your my bitch.,1 +D:! That's horrible ;__; This sucks.,1 +fuck off dude don't waste my time damn spam users again ...,1 +fuck off dude don't waste my time...,1 +you own a gun? remind me not to piss you off anymore.,1 +FUCK FUCK FUCK FUCK BIIAAAATCH!,1 +damn straight :),1 +damn you hater! lol,1 +OMG your so MEAN .. really really mean +_+ i hate you .. hifftt,1 +cunt? Whore?? Lololol,1 +fuck u and ur fucking break =/,1 +wow that sucks.,1 +LIES! I HATE HIM!,1 +damn straight,1 +I hate you so much you stupid New York... douche. bagel.,1 +I wish I could punch you square in the face. that's how much I hate you right now.,1 +you are a twitter/last.fm whore! :P,1 +Doh! That sucks!,1 +i hate you for both those statements. lol,1 +fuck up foo.,1 +i REALLY hate you,1 +ur gay? me. u. mall. shopping!,1 +God damn it Louis!,1 +Nerd alert!,1 +SHUT THE FUCK UP! What?! Why does Micky Rouke have ur #?,1 +Freak.,1 +VTU SUCKS >.<,1 +8 fucking am.,1 +HOLY FUCK! GIRL YOU CANT DO STUFF LIKE THAT!,1 +i hate pret,1 +That sucks!,1 +jealousy makes me hate you now hahaha,1 +And I HATE gangsters >.>,1 +haha no I'm just trying to fuck with him,1 +i hate u,1 +i hate u. looooooool,1 +Lolol well i hate u. K thx <3,1 +I will super hero my ass out there and blow the tire up myself!!!,1 +that sucks big time.,1 +damn!! *goes off to call God*,1 +FOR REAL!!!! I NEED TO JUST STOP!!!! REALLY!!!! FUCK!!!!!,1 +gotta hate that shit,1 +So you were a geek and gay at a very young age ;),1 +You fucking rock =),1 +yeah it sucks :(,1 +Thats so fucking stupid for you to say,1 +That sucks:),1 +God damn. That's some stocking up.,1 +damn girl. that was fire!,1 +makes even gay men question their sexuality.,1 +OMG where? that sucks!!,1 +lawl @ fat bitchez.,1 +you're a fat bitch? I think you just called yourself one. Lmao... Well if you wanna out yourself in that category... Ha ha,1 +fuck yeah,1 +Eat twat you twitter whore.,1 +That sucks ...,1 +what happens when someone tells u gators suck ass lmao. U pull a gun or stab them to death???,1 +god damn you.,1 +nerd. :),1 +aw that sucks.,1 +I don't wanna sound gay or nuthin' but that sir... is an arousing pic.,1 +lady i wanna fuck your tumblr.,1 +that sucks!,1 +FUCKING ELLAS A RETARDED CUNT ALOT OF PEOPLE COULD DO A BETETER JOB THEN HERE SHES RACIST AGAINST BLACKS,1 +MOD_ELLA IS A FUCKING CUNT,1 +haha ugh this sucks :(,1 +ass get out its ur last day damn it!,1 +awe how gay :P,1 +oh no...he grew out of it (after a few ass whippings)....he just steals girls hearts now (he's 20). But yea he was a baby klepto,1 +damn that sux,1 +he's gay like u lmao. And the rest of the guys are alergic to fruits. *wink* lmao.,1 +U stupid bitch. I said Its in my car u always at work or chillin with then regis niggas. Don't piss me off.,1 +hey man! You =gay! Lol jk,1 +your a pale whore..,1 +after I kept getting caught I just said fuck it lifes too short and I wanna sing off key fools!,1 +you damn betcha,1 +ass.,1 +hot ass mess!!!! hahahaha,1 +omg! that really sucks! anything serious?,1 +@nightmaremyles fuck yes to both of you. <3,1 +dude. she's fugly. i think ur a desperate ass cam perv.,1 +hahah ass :P hehe,1 +BITCH...you got a working Zune and I don't like it! Yea you got one...BUT IT AINT ENUFF!,1 +closing now. some gay xmas thing,1 +Wow! That sucks.,1 +I hate FCC they are evil,1 +fuck you,1 +damn straight,1 +I'm late to the emo-ball.. I'm not even dressed. WHY un-follow you? What did you do now (pft- can't take him anywhere...),1 +i will but now the only problem is im realllyyyy not looking forward to seeing some gay show,1 +wash yo' ass!,1 +that sucks!,1 + you came up with angry gay guy...,1 + twitter whore!,1 +is officially too gay to function!,1 +... this is so post gay it hurts .... NSFW! http://tinyurl.com/6d9ew5,1 +I hate you,1 +hell yeah fucking losers lol,1 +Fuck yeah,1 +na just a bitch of a teacher!!!!,1 +it is. Hate that LOL,1 +aww I knoow I hate that! :-P,1 +you're so gay. I hate lonestar.,1 +shits gay!,1 +fuck you Devi. slit em'!,1 +well just go to the local whore house!,1 +no way. they REALLY hate you don't they?!,1 +@ryanruppe damn you...,1 +fat guys are immoral there should be a proposition to keep them from marrying VOTE YES,1 +you're a nerd fail,1 +fucking ayeeeeee,1 +SHUT THE FUCK UP BEFORE I PUT A HAMSTER UP YOUR ASS!!,1 +YOUR MOM SUCKS ASS. Don't be such a douche. It's obviously not done. I'll add the fucking parm when the noodles are done.,1 +I hate you so hard right now.,1 +http://twitpic.com/vme7 - that sucks!,1 +we talked four days ago!!!! emo cowboy fan :),1 +Especially the gay cowboys. Ha ha.,1 +i BET YOU WERE SILLY ASS! lol,1 +You're such a nerd. lol,1 +I hate you and your steelers.,1 +fuck betty she killed me...,1 +fuck yo life nigga,1 +@farwyde Cock your gun.,1 +@design_doll Cock and bull,1 +I hate them. I eat them for dessert. I will keep following you. I believe in your cause,1 +"""marinates penis"". That's gay dude.",1 +Male Chauvinist Pig. :P,1 +wow! You're a real cunt!,1 +OMG that is a total bitch! Those jerks play that game here too except they write big fine$ with the confiscations!,1 +His ass needs to be put on blast so now his wife can see wtf he's doing.,1 +payment schedule...been there...sucks ass,1 +fuck em then! heh,1 +That sucks.,1 +That sounds like Charter. I hate Charter.,1 +YOUR INSANE BABBLE HAVE YOU LOST YO DAMN MIND?,1 +You know all about some interpretive gay dancing.,1 +hate you...,1 +hahahhaha I hate that!,1 +fuck you.,1 +fuck you haha,1 +whatever about the Gay Byrne voiceover shame on Eason's for running Christmas ads in early November!..,1 +Son of a bitch!,1 +Drupal sucks.,1 +Rooster is my bitch!,1 +Rooster is LARRY'S bitch!,1 +oh man that sucks!! LOL,1 +That really sucks.,1 +that sucks.,1 +ha! Go fuck a chickhen!,1 +fat bastard,1 +gay + high on crack + Razor sharp vagina? sounds like @andymn to me,1 +you mean we chatted about how I wish I were a gay man??,1 +faa lalala gay apparel daa da da daaa yuletide carol la la lala laaaa....,1 +Ok is it gay day today? or are those some cute azn girl socks u sexed,1 +Fuck yea it's the bomb,1 +WTF emo ass lookin bitch >< *sigh*,1 +suck my cock bitch. i am allowed to be scared of whatever i want. *z snap*,1 +Fuck.,1 +YOU ARE FUCKING BR00T4L,1 +ewww hate it hate it hate it!,1 +I hate it SO SO SO MUCH.,1 +hate. you.,1 +Son. Of. A. Bitch. :-p,1 +fuck you,1 +I hate it too.,1 +ha! sucks for u!!,1 +oh wow that really sucks. :/,1 +i hate you,1 +Oh that sucks!,1 +aww that sucks :/,1 +That's gay. Poor MCR.,1 +everything but you. Everything but you sucks.,1 +That sucks dude!,1 +Oh my fucking ~*gawd. *eye roll*,1 +aww that soo sucks D:,1 +GA has finally let out is inner ass and now everyone hates him :D,1 +Fuck you,1 +emo!lol j/k,1 +Damn girl ... Your house was dirty.,1 +I noticed that and you are not a bitch. The other thing that she also doesn't have is class.,1 +damn kenny u need emotional condoms and shit son.,1 +Kick ass!,1 +ha! my ass be bowling lol,1 +to get fat?,1 +i would hate that too. :(,1 +i hate you all,1 +/nerd *laugh*,1 +Ah. Gay!,1 +I hate you so much I just want to smash your face.,1 +Yes you are a loser... I could have told you that a long time ago...,1 +. . . HE'S FUCKING HIMSELF!,1 + Get fucking real dude.,1 + She is as dirty as they come and that crook Rengel the Dems are so fucking corrupt it's a joke. Make Republicans look like ...,1 + why did you fuck it up. I could do it all day too. Let's do it when you have an hour. Ping me later to sched writing a book here.,1 + Dude they dont finish enclosing the fucking showers. I hate half assed jobs. Whats the reasononing behind it? Makes no sense.,1 + WTF are you talking about Men? No men thats not a menage that's just gay.,1 +Ill save you the trouble sister. Here comes a big ol fuck France block coming your way here on the twitter.,1 + Im dead serious.Real athletes never cheat don't even have the appearance of at his level. Fuck him dude seriously I think he did,1 +...go absolutely insane.hate to be the bearer of bad news..LoL..dont shoot the messenger (cause we all know you bought that pistol,1 +Lmao im watching the same thing ahaha. The gay guy is hilarious! "Dede having a good day and I dont want anyone to mess it up.",1 +LOL no he said What do you call a jail cell to a gay guy? Paradise! ahaha.,1 +truth on both counts that guy is an ass and their product is sub par. I tell people try Dalesandros orJim's,1 +Shakespeare nerd!,1 +you are SUCH a fucking dork,1 +Heh. Fuck 'em WHERE?!?,1 +damn it i totally forgot that one!,1 +wow damn I would have been pissed @ that...,1 +nigga u geigh lmao! fuck yo finals beeeeeitch,1 +that sucks :(,1 +read that this morning. my fav is how they just straight up say "cum shots",1 +Unibroue 17 !!!! Another damn good Unibroue,1 +damn your evil 60 minute IPA beckoning me from the fridge right now...,1 +It did then my fucking dad turned it off. I just don't think it likes your movies. I was tryin to watch Nanny Diaries.,1 +it pretty much is a fuck you card..,1 +that karma is a bitch HUH,1 +don't get too fat or you'll turn into a boomer,1 +the hormones are worse for guys. I cant tell you how much I truly hate the thoughts that go through my head.,1 +except for joe jonas the ass munch who broke up w/our tyler via phone..kinda like doing via text - what kind of a-hole does that?,1 +man that rly sucks. I for 1 am positive that all will work out. You're a bright dude... pretty cool 2 if I don't say so myself.,1 +hard to kick ass yourself with slippers on? On it.,1 +Thats pretty damn awesome! Very smart :) @Aaronage Sure!,1 +freak'n awesome. so far loving 4.5. the browser is fantastic. and finally video pretty cool,1 +Damn that sounds good...,1 +they should have a wii loser..that way you can compete with your wii friends.,1 +@markmancao haha. i love it! gay nights for all!,1 +that's awesome! you're pretty damn good!,1 +Faggoty fag fag. Gay secks man blowjob. Settle down.,1 +Right. That wouldn't be creepy as fuck.,1 +HOLY SHIT. Fuck that band.,1 +Gay fag.,1 +oh ok it's the dick-in-a-box guys that explains the timberlake appearance,1 +*falls off of bed laughing fabulous ass off* Dude I think that made me BLUSH. WTF? LOL?,1 +and @justlikeanovel: *raises hand rather gaily* One real gay man right here darlings! HOLLA! #supergay,1 + oh man. the malls are a mess it grosses me out. ohhh capitalist dogma how i hate you,1 +where'd ya put it? o btw: "kick ass quote Copyright© 2009 @abcd91 All Rights Reserved",1 +It sucks to be done with exams n still be @ Mayag.,1 +Epic WINS for Fuck City<3,1 +Has it snowed where you are?? I miss the damn snow. I haven't seen any in forever. Everyone has some snow but me :( lol,1 + aren't you just super special. I will not know the sweetness of sleep until about 9 tonight. I hate grad school. I want out!,1 +fuck yes. I hate them at work...,1 +Holy ass hell balls!!! $260 for premium???? Fuck upgrading. I will fucking cope with Basic,1 +but seriously... WHY THE HELL ARE YOU STILL ONLINE???? Were you injured in god damn 'NAM or something??? GO!!!,1 +damn. Don't want to visit a country that doesn't allow passport smile. Just want to go to Cabo soon.,1 +I've never been to New York and Peyton was an ass when the Chargers wanted to draft him but I do love to win.,1 +damn. did you buy bitchy too?,1 +then by all means bitch away! haha.,1 +sucks that ppl will do anything to make a buck. i just love how your fans are calling them out. and i'm glad your iphone is safe.,1 +Let that pussy freeze. Rotten bitey little bastard.,1 +Dood! You just justified your MBA. I pity the sorry ass of that downtrodden employee whose manager you'll soon become.,1 +hehehe. mine pleasure. Btw I too so loves it when people be presumptous pricksy wicksies! feel jolly nice for me ass to rub on.,1 +I've only lived a quarter of my life and no crisis so far... loser experience yeah...couple of kinky pinky stuff-yeah. But crisis? Naa,1 +imagine a building. not any building...a fucking 300 acre building full of weed....not any weed...but Caucasian Monkey-fuck Weed!,1 +Ugh twitter stop it you fucking slut.,1 +HAHAHAHAHAHAHAHAHAHAHAHAHA (eww now thats fucking gross!) HAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAAHAHAHAHAHAHAHAHAHAAHAHAAHAHAAH,1 +cute video lexi u hve some of the of the weridest & cutest little toys i know wht u'll say (shut the fuck up ACH) haha,1 +Fuck the pics! @giove_dea WE WANT VIDS!!,1 +Hard to play because it is damn fucking awful,1 +you got that right! People stealing others' generators & other stuff inside the homes when they know no one's home..sucks big time,1 +no grown man should include DIP in his sentence....lol...I know I'm hatin but fuck it I'm lookin @ snow..lol,1 +oh god we have an icp display in our window and weve been getting so many fucking juggalos and they smell sooo bad.,1 +you should have her talk to @junsten about that. Similarly he once told me completely out of the blue "I'd hate to be a bird.",1 +I nominate @PRsarahevans for a Shorty Award in #socialmedia because... Shes damn good at everything to do with Social Media.,1 +Captain Jean Luc Pic-card of the USS Enter-prize Captain Jean Luc Pic-Y'KNOW WHAT? FUCK YOU TEMPLESMITH!,1 +FUCK YOU RIGHT IN THE FILTHY PUCKERING SPHINCTER YOU CALL A SOUL!,1 +another downside to living in DSM but working in Indianola: lunch meetups are usually not possible. :( damn isolation!!!,1 +there's nothing better than listening to music on shuffle and hearing you say "you bitch!" randomly in the middle of it.,1 +I got it. How many damn websites do u have homie! Sheesh!,1 +U know they all the same dame spot! I bet ya'll got the same damn middle eastern type of cats cooking that crack up too!,1 + kno I check ur blog out! Alpha females vs being a bitch.....damn u be analyzing!,1 +haris i m trying to control my fat tummy did'nt eat from 2 days :D,1 +700. you glutinous bitch!,1 +Ok you're starting to sell me on these vinyl toys (damn that sounds bad),1 +So true so true. Lame ass people are now officially off my radar!!!! Bu-bye!,1 +lo thankyou.. will see you soon :) and i hav to send a mail to u damn!,1 +Have you tried 'fuck' and 'Fuck'? (yes they are different),1 +Well not unless he wants some hot Vulcan action. It only happens once every seven years but damn is it worth it.,1 +damn i was hoping for some cash out of this... how bout 5 for pain and suffering lol,1 +that sucks... she should prolly just change her major lol,1 +that sucks... so are there plans to get back together? or are they done?,1 +you are a fatty fat fat,1 +you never posted your blog. and today is guest blog day. get with the program my slut pink zebra. LOL loveee you anyway!,1 +they're not gross. U shaddup u fat ass HATER!!! & yes I made them for mark & my son.,1 +no one likes every fat snack u do bitch! so shaddup ahahahahaha,1 +stop the hateration bitch! it's only gonna make that mohawk stand up rotf!!!,1 +ask him why he's jumping out of the window. And ask him hows he gonna do it in those tight ass jeans???,1 +'Night Guy' is ALL motivated @ 11pm but he knows 'Morning Guy' is gonna hate him when Miss Emily arrives at 5:30am ;-) Night Tweets!,1 +OK but I'm telling you it's going to be hard for me to fight my inner grammar nerd. I'll do it for the cause though ;),1 +mythbusters is a great and nerdy show. Embrace your inner nerd..no suprise they were on the launch of youtube live ha NERDZ ROOL,1 +lol @ "the bitch". damn.,1 +damn. thats crazy early. i wont hit the city til 9:30 but i will be a few blocks from the spot.,1 +Slurpees are awesome. Damn now I really really want one O.o,1 +I can see it now. "Listen you cow-loving yahoos just put all of the slurpee in this bag! What? Cups? I don't need fucking cups!,1 +i loved it i laughed my ass off,1 +ahh you might be on to something...damn techies,1 +The pig of shame? Lol! Is that like the aardvark of discontent?,1 +Still - it's damn moronic that media people can't access media - particularly media made by their own company!,1 +if anyone said Arial I'm gonna beat their ass.,1 +well find him and kick his butt too! I hate it when people take advantage of the mentally challenged.,1 +Tell her she says Bitch like it's a bad thing,1 +I did have a moment of seriously considering that. I mean... my Dirt Devil sucks. But I didn't plan on buying a new one soon,1 +Ugh! I hate when I get spam followers... They shouldn't count against our talley of actual followers... :-p,1 +You know what you are? You're like a big bear with claws and with fangs... big fucking teeth man.,1 +Damn you're totally geeking out on us tonite.,1 +the eagle w/ @leahsairy ... Decided 2 not do power lesbian night @ mecca & hang out w/ our real queer ppl 2night. gr8 indy band. Emo punk.,1 +we are so silly and pathetic and so fucking cool! You tellin me you choking made me choke! And I am sitting next to some girl w ...,1 +Let your hate for Gambit grow. Embrace it. Spread it.,1 +dig deep and find that special Christmas hate!,1 +I tried to rickroll my office christmas party last night but the damn band didn't know it!,1 +even though I was at the same lunch as you we missed you at our end of the table! Need a damn smart phone! Coulda tweeted back.,1 +Smack a bitch? :-D,1 +rock not the. He gives the emo populists limp wrist rocker throw.,1 +Already on the coffee. I love her but hate the whole spite thing. Climbed right on top of me to do it!,1 +i feel fucking great get me another drink,1 +You've got 5" of snow? Damn. I'm jealous.,1 +It just sucks that so many use it as a crutch.,1 +They say I have the best ass this side of fourteenth street.,1 +yes i love the pillows livejournal jrock rotations (get an lj they're sick) and uhh fuck i dunno twitter?? just the site,1 +ha not that creepy. because it's week 10 and I'm fucking stressed out as hell. I wish I could take a trip down there x.x,1 +Fuck amen to that,1 +Aww... Dnt hate the weather rain can be so soothing sometimes!^^ I still have one more test DD:,1 +I knw!!!!! I hate that! D:,1 +Aww. Thanks dear. And I hate my gradeschool friends for ditching me. They forgot about me when we are suppose to be at her wake.=(,1 +yeah. i had to beg the stupid teacher. it was so gay.,1 +yeah we all call her a whore and shes all don't call me that! So i called her a slut. And she said im a tease! And i told her ...,1 +told ya she was fat! she's loyal tho she has this goin for her...,1 +if you tweet about that damn song one more time.... And its on the Scion double disc promo cd,1 +I have all th nerd at home and I'm a smart ass too. So I answered you,1 +u got me lemming for some laneige whitening shit! ive been breakin out lately n i need somethin to whiten my damn acne scars bleh,1 +you're not a twitter slut until you show us full frontal nudity... so until then you're just a tease =P,1 +haha... so you want to be a twitter slut... alright fine... i'll be waiting for the moment you mature from a tease to a slut!,1 +and there were only 5 of us.. it was a night that i've already forgotten... damn the alcohol,1 +I like the verses to the song....just not that lame ass auto tuning nigga on the hook,1 +hold up nigga..u cant hate Jay-Z...might have to beat yo ass like that nigga did when that other guy said F Tupac...lmao,1 +way to damn hard,1 +the explosion of social media into mainstream business. We will see everyone joining Twitter its the "year of the nerd",1 +but...but...to hate them is sin!!! just give me the ones you get angry with...i'll take care of them! hahaha,1 +DOGS LICK THEIR ASS...NEED I SAY MORE? DOG.,1 +No I HATE those commercials! Just GROSS. *gag* Okay okay you've got an hour before showtime. hehehe ♥,1 +it was a joke haha. i figured id be emo too since everyone is complaining on here,1 +It sucks though when you have nothing to do at 4AM and your roommate wants to sleep.,1 +o so the rumors are true i am OBESE! yea fat!,1 +girlfriend where the fuck did u find that photo! lmao!,1 +ur a damn fool lmao,1 +They're not my preference but the app is so damn fast and thorough that I let it slide.,1 + Ha! Yeah that caught my attention too. Now wait & watch for Red Wings fans to freak. I'm gonna make popcorn for that show :),1 +Tell them you want YouTube to quit fucking with things that no one wants fucked with.,1 +No you just piss out anything your body won't absorb.,1 +Doh! dont you hate it when that happens I keep meaning to take a backup myself,1 +Damn he's doing sneeks for Nike and Louis Vuitton? Dude's gonna be rolling in dollar...,1 +Mate it is. In Newcastle it was -1 down Bath -6 it's fucking brassic cold,1 +"""",1 +: And whilst on the subject all Aussie drivers should be reminded KEEP LEFT UNLESS OVERTAKING. Damn middle lane owners club!,1 +less #damn-fridays more #bad_wookie_pun,1 +women are fucking disgusting.,1 +you bet your sweet ass you will!,1 +dating a 4 year old? Damn. You're faster than me. I only caught 3 year olds name.,1 + will do when i get home only time i heard it was warped though fuck life!,1 +Man why u live in NYC in that crazy ass weather. Move out to LA. It's nice EVERYDAY. NYC is soo over-rated! lol,1 +i got ur ticks but yo ass ain't gonna come! lol,1 +Ugh ok... I hate NYC also. Hmmm. thinking...We are having a Screening on the FOX Lot that week. Maybe u can roll through?,1 +stuff like building the forums is what I do when writing is kicking my ass that's how I do it ;),1 +Also I caught that "Gai-damn" earlier and I support it 100% ;),1 +gee i'd hate to see what you say about the family ;),1 +dude dont tell me what to do thats not your place. i do what i want. just chill the fuck out and worry about yourself.,1 +damn fine! The snow is gone thank god!,1 +That sucks. Life can't really be that bad right? Chocolate does always help.,1 +i hate you :P happy birthday dude good to know your enjoying it,1 +thats a good question. most lawyers HATE that stuff.,1 +YOU STUPID WHORE I HOPE YOU ARE IN YOUR HOUSE WHEN I BURN DOWN YOUR HOUSE YOU STUPID WHORE WHY WOULDN'T YOU GO TO PROM WITH ME,1 +oh guess who got an australian shephard puppy today. note: NOT ME. the other roommate. yeah. another. fucking. dog.,1 +ummm. Ya. That's pretty damn pimp.,1 +as much as I hate the winter those pics are beautiful. We've had insane-o storms like that in MO. Sucks so bad esp sans power,1 +got delayed. your ass kicking will have to wait.,1 +I know it sucks but I'm actually envious of you. Though I have orientation for a tutoring program on the 14th. Did I tell you?,1 +it was just a joke man..i wasnt taking the piss out of anything.,1 +i hate your face sounds EXACTLY like something i would say.also reminds me of a drunk girl trying to fight me and,1 +i was spanked but do not only because it makes my kid behave worse so doesn't work. not a lot does work-kinda sucks too.,1 +I've been messing around with some of the beta releases. It murders every other WP version (widget panel still sucks though).,1 +Are you laughing your ass off with all these "juicy" twits?,1 +yeah we do... damn this time difference *HUGS*,1 +OMG bundesliga and brasilian bossanova. This was worse than seeing your loved family dog licking his ass. I'm scarred,1 +hmm so thats suk your soul hate and reinvent you to get my dry cleaning hate?,1 +yep. I didn't think to go online and check calorie/fat count until AFTER dinner. Bummer.,1 +wow - mommy's little cheerleader! *must... not... take... the...piss......*,1 +lol.. that sucks..it's so nice in miami... catching that ocean breeze from the balcony....don't want to rub it in...lol,1 +oh hot damn!,1 +He can't hear you his head's too far up his own ass.,1 +Prison Bitch is a sparkling addition to any resume.,1 +a constant receiver does not a giver make. Prepare to be Prison Bitch Blagojevich (new campaign slogan it rhymes),1 +that sucks that you're sick. Sorry to hear that.,1 +No thanks. I don't want cable. I hate most TV shows. I really hate commercials. I get my news online. I'm good. :),1 +try telling your parents that you don't want to see them. see how well that fucking works out for you yeah?,1 +Football. I hate it. It’s official I’m bad luck.,1 +I fucking love Haunted.,1 +I didn't know you were an avid football watcher. Is that even football? I think it is. Fuck sports.,1 +lol kevin bought me damn near nothing and we dated for over 10 months. my life sucks.,1 +Yea it sucks!!,1 +Indeed. But the Collier conversation relationship head up your gleeful ass kumbaya stuff needs to be put out with the trash.,1 +yeah i am glad i have the next 2 days off.. I just have to get through xmas eve and the weekend afterwards. damn gift cards,1 +hot damn! did you get an iPhone too?,1 +aw thanks. it's going better than yesterday that's for damn sure. :-D,1 +no. i must have missed that one. damn. ;-),1 +have a safe flight.....damn now you make me want some jamba juice,1 +I got it for Wii when I get back from my dad's we're gonna play and it will be so kick-ass.,1 +http://twitpic.com/xm6u - You have an inbox folder for CYA - Covering Your Ass?,1 +him and his damn tech stuff bwahaha,1 +i'm not emo. I'm fucking happy!,1 +well now I have to edit myself and you know how I hate that!,1 +if u get a stye is it from seeing a dog shitting or fucking? And what do I do with my fingers? Consult H if u need to.,1 +what does that say about me that I was laughing my ass of when I heard that. Rapping the word titties is just damn funny,1 +& I was there helping your ass pack to get on the plane. A tru friend - helping you track a sub sized weiner like fucking GPS,1 +you have officially been put on my bread stick mailing list. Fuck those rock republics and eat something already.,1 +i get that ha ha smart ass :p,1 +i feel pretty oh so pretty...i feel pretty and witty and gAY! Ha ha good times,1 +Yeah I mean I know the plan and the creative are kick-ass. But sometimes clients have a warped view.,1 +Oh man that sucks. @Vincentdooly can you help @dsmoore out?,1 +yea the weather sucks. At least you missed the 8 degree weather though lol.,1 +I do but I'm an American. Hence I'm a pussy.,1 +God.. that commute has to be a bitch dealing with.. driving back and forth from Raleigh to Fayetteville...,1 +I take full pride in being a nerd. Hahah.,1 +THAT'S AN UGLY ASS PICTURE!,1 +Pretty much but now there will be less AIM errors! Weeeee you can see that I don't type like a retard!,1 +My grandmother is a big bitch and my father's a fraking arsehole.,1 +you must be bored...you are a twitter whore today. ;),1 +man i'm jealous of your day! i'm also hooked on twitter. damn arv. like i needed another procrastinating tool like this.,1 +just don't eat a meal replacement bar.. I fucking threw up!!,1 +fuck duke!,1 +what if their "you" really sucks? like why be a wack person when you can be an imitation of a more cool person? i think this,1 +2 weeks? how am I gonna live without money for 2 fucking weeks?,1 +Well get your ass busy!,1 +Hi new friend! I like your personality.super cool:) Yeah I forgot it is like 9 am there..that sucks!,1 +damn that sucks..I hope you are ok now,1 +haha! No. We have a new stand up board at work and we have barstools to sit on. I hate them!,1 +Excited that yr friends get to see yr show. I hate them. ;) No rly I do. .....Sad that tonite is last show. Hard to say goodbye?,1 +Thanks. Nothing just watching "Jack ass". Are you having fun doing nothing over there?,1 +Well that's upsetting. We can party it up over here. Jack's ass is quite enjoyable thank you,1 +Fuck. Well you can for a low cost of 19.99 with shipping and handling. But that's only if you really want to.,1 +Fuck again. Call 1800QZAK. Then your problems will be solved. I might even get you a discount,1 +If you stay home to twitter and have a martini on NYE does that make you a loser? don't answer that... I don't want to know,1 +you're a fucking maniac.,1 +its ok decided not to go to fam party. going back to bed. wtf moon i hate you. wtf life. dead.,1 +HAHA WHYYYYY do you hate my school!? NOOOOOO :(:(:,1 +FUCK SUNDAY im super bummed.,1 +whelchers fuckin suck ass!,1 +some peoples drama just sucks!,1 +well that sux donkey dick. No interwebs is kinda a pain for ur work.,1 +Then she changed roles and she is a little less bitch from hell but still her sting has too much barb.,1 +today feels like sunday.....damn lol,1 +Damn didnt even see that lol : /,1 +HATE THAT...happened to me today i was like...YOUR WELCOME *cut eye* and walked back out lol,1 +i hate hate hate it with a passion!! lol...i know the calls are recorded i talk mad shyt down the phone LOL!!!,1 +don't you hate that? Though I have so much product to make by the weekend I wish it was Tuesday.,1 +i think its a cultural fad.. starbucks coffee sucks and its wayy overpriced.,1 +i just deleted all the people that i have on my facebook off myspace Damn if everyone switched i could just delete the account,1 +no! I think UofA's navy jerseys on white pants rule. And all red sucks. But seeing BYUs colors I guess all red makes sense.,1 +here 2!Another big storm is blowing our way. I hope it waits until I'm home from work b4 it starts snowing. Hate driving in it!,1 +no i think you will hate it. Its a bunch of dirty work.,1 +the iced media party. Long ass day at the office time for a drink or 3,1 +easy! keyshia sucks. It's pathetic when an actor makes a better album in his 3rd profession (act stand up) than you do in your first,1 +@TheflyGIRL Done! But I must tell you that negro got a hard ass head. My elbow hurts...,1 +LOL at the Razor Ramon shit. I surely was gonna Ultimate Warrior his ass. Shaking the ropes and the whole 9!,1 +You done started something! Got me all nostalgic and shit KNOWING good and damn well I got work to do...LOL,1 +@mekdot yo...heroes sucks!!! I loved season 1 despised 2 and feel like season 3 is a lousy high school special. BOO HISS BOO!!,1 +That sucks they owe you much?,1 +Boo to be fair they shouldn't give away your room. Kick their ass!,1 +Wow that's bad-ass. You're like Stanley now. Well even more so...,1 +lol figured. So anyway anna is still being a bitch(sorry for the language) She doesnt want to go on the trip. So now onto plan B,1 +anna just has to ruin the holidays for me just like every year. Damn you anna!,1 +rock out with ur cock out dude!!!,1 +that's a shame I hate having to unfollow someone! :-P,1 +BIG FAT HARD HAWAIIAN DICK. Too much?,1 + i hate that too - i have blocked a few of stalker / serial networkers on fb too. maybe they should tweet first?,1 +LOL - nah that's just what we tell the loser guests that we usually toss down in the newsroom!! oh wait...,1 +Israelis to Spanish FM ... Kiss my ass.,1 +No but I'm saying that money that has gone into Gaza SHOULD be feeding people not waging war and breding hate.,1 +I had a dream involving a rhino chasing me because of my polo cologne. Everyone says it represents a fat woman. My life sucks.,1 +Taking the piss = talking trash perhaps,1 +& @babysinead that dude is a fucking PSYCHO. i turned down working for him and he told ppl that I DID and that i was TROUBLE.,1 +& @babysinead i've never even met him in person. he's a fucking douche.,1 +I get that too! It sucks!,1 +hey fag why you gotta ask the whole world!? j/k your awesome,1 +gotta love the gay kid who was drumming trying to get his head in the pic tho HAHA,1 +Sheeyat....Freezing rain is no punk. Hope you didn't fall & bust your ass in the parking lot.... I almost did.,1 +Damn skippy. I should be dead 10 times over......,1 +Its foggy as hell here too. Looks like damn Seattle.,1 +lol penelope died?? thats so depressive i have a compaq it sucks i dont have a name for my computer tho : ),1 +Do you really have a big man ass?,1 +i don't know that bambi's ass is a nice place. LOL,1 +attention whore!,1 +I laughed so hard when I first heard because my gay husband (good friend lol) says code 3 when he has an emergency,1 +http://twitpic.com/xipq - this only makes me hate having a verizon contract even more. erg.,1 +no guarantees. hate the place. I'm ust going there to make sure my parents are still alive.,1 +AWWWW I HATE THAT!!!! I had to buy that gadget you can stick your hard drive into to pull them off. SO SUCKS! Sorry. :0(,1 +Praying for your grandmother and your momma. I hate that they are facing so much.,1 +bitch please your gorgeous,1 +i fucking hate that word hahaha.,1 +i know haha. 1408 is so gay. i don't even know why i'm watching it.,1 +omg - that sucks arse! I am so sorry =/,1 +Sounds like good times. I'm in the office until 7:00 and then I'll probably go for a run. I'm a fat boy getting fatter.,1 +Ye Olde Cock looks nice.,1 +sure you can I'll hide the flashlight. go emo go!,1 +emang lagu2nya emo? bukannya mellow? :D,1 +gitu emo jaman dulu ya :D,1 +Listen RayRay I gave you the lowdown as soon as I got it. I hadn't heard it b4 and I was shocked. She seems to hate his guts.,1 +I thinks you meant to say that TWILIGHT was epic fail not your mistake. I hate stephanie meyer and I've never even met her.,1 +lawl. Sucks to be THEM then.,1 +I'd die first. Damn fareway.,1 +LMAO! He's horrible. The Beatles changed the fucking WORLD! And are still an icon to this day. Who the fuck are you?!?!?,1 +I need to see how this ravin rabids game works first. It'd all have to be in the ass moving. Maybe not moving enough = bad oral?,1 +holy fucking jesus mother gad damnit WTF? wow.,1 +really? Thank fucking god for sleeping pills!,1 +dude that pic of you in the Gold 2009 flyer looks like a friggen glamour shot fag. hearts!,1 +Eff yeah! give @jeffreyparadise and @richiepanic a slap on the ass for me,1 +you are fucking killing me. Please come to a party at my house next time yer in LA. Rice pilaf will be ready,1 +I hate to open the flue after a long fall. We get birds or dead squirrels...totally scary!!!!!,1 +depends on how much you hate fighting w/your light. I read in the car a lot while hub drives so very worth it to me.,1 +he won't wanna pet the guinea pig?,1 +i'd love to visit (or live) in san diego cause of yr round warm weather. i hate cold so bad. crowds n traf would b my probs there,1 +no prob but watch out it's fucking addictive!,1 +re:fuck the creative industries blog post (at squares of wheat):I say:Waaaay too much empty rhetoric there. Be the Change ?,1 +Did...I mention that among my new disciplines are Dementation Dominate Presence and Obtenebration? I am fucking AWESOME.,1 +I *really* hate housework! Then again it was great waking up to a clean LR & kitchen! Maybe I should do it more often... :-),1 +I've been wondering that myself. Its been down for quite a damn long time... @tqbf any comment on that?,1 +well damn we should have had a tweet up. I was at Kona last night as well.,1 +ouch! Hope your alright! :S I hate Black Ice Almost broke my arm on it the other week :P,1 +eeeeew I wanna cum ;),1 + AAYE!!! richard gre is NOT gay-re :P,1 +fuck yeah bra,1 +nope can't deny that sweet face or lil schnauzer w/ ears~always wished Hildie had her pig tails~how is cropping still happening?,1 +Hey~~Happy New Year new friend !! enjoy the movie~ think of me when the crazy proff shows up..damn...can't remember his name,1 +#NAME?,1 + GOOD! Now u can bring ur happy lil' ass over here & help me finish hanging this garland. ;-),1 +Guess there wont be much skidding then. As is said hope you're on the ground floor or everyone will hate Green Grass and High Tides.,1 +The FA50 is a low key ultra here in ATL. It stands for Fat Ass 50K. Loop course so you could do 25K...Half Ass.,1 + me too!!! I also hate closing then opening then closing shifts that gets me all out of wack.,1 +says "no more pizzas for the situation room! or else we will be fat when the war is over...",1 +hangs longer than u while u lay there on ur ass! 1 day u gonna look back @ these days & ask urself where did ur life go?,1 +I slept horribly. Kepted waking up every hour. Kept tossing and turning. Argh I hate having to work today! Time for cardio!,1 +if you can get me a signed copy of Jordan's book....we'll pull some qoutes during shows. That guy kicks ass muchos muchos wow,1 +wErd... you pick out (2) kick ass hip hop songs and we'll doit yo~,1 +hola! Orli ... we are www.LuckyStartups.com looking to interview some kick ass peeps in Israel... you up to it?,1 +yeah I did that a few months ago. How's your show doing man?? looks kick ass!,1 +Thinking about response/actions. Have decided its not going 2b ideal 4 anyone. Its sticky bc its family. Theres love/hate/dislike,1 +Not talking about incident but more so the attitude that I'm gonna bitch & make a comp do something on a subjective matter.,1 +she doesnt want to scar you for life like i could. cant talk her into sending you the video of they guy with the jar in his ass.,1 +when can I meet your uncle??? Maybe he could give a wiki demo to our loser peeps!?,1 +what a coincidence! I'm wearing my fat jeans today and it felt like they were my skinny jeans!,1 +sucks don't it?,1 +doc's a dick.. ill manage without injuring myself.. self inflicted pain would be desperate..which I think I am.. Siiigghhh!!,1 +Agreed! Twitter showed the way with the whale ;),1 +No- shopping isn't what sucks! It's the crowds that cause the trouble. haha! Love your website btw!!,1 +FUCK YEAH BIOSHOCK! Tell me how the apartment hunt goes!,1 +Merry Christmas to you too Casey. For tomorrow. Er or today. Grrr damn time zones....,1 +Are we going to see an appearance of the 'fuck me' boots? :P,1 +Sounds more reasonable. I hate having to buy 8+ presents for my very small family alone. Soulless Myer gift cards FTW,1 +Wtf. Fuck you,1 +Lawlz. yr a bitch. hoe.,1 +Sorry you bitch punched TEO.,1 +oh no I always try to make my desk look neat. Fail whale. There are always newspapers piling up cables are worse!,1 +Funny I always thought Job Security is dependent to how much ass you can kiss? (wait I guess they are one of the same if you think..),1 +Oh I know. It doesn't hurt to have one of the richest woman in the world actually hate you. Elvis had the Memphis Mafia. Oprah...,1 +Lol I'm not enough of a LOTR nerd to need to install Tolkien fonts. :),1 +it was a good show...dude! Did you call in gay rotfl,1 +hmmm....or do they hate you because you didn't let them join in the parranda? Nah probably the corp council thing,1 +LOL Hon I have been saying for a while now that this boy will be gay. It really bothers the hubs when I do so Im tryin 2b good,1 +lol exactly. "Hey guys how about a 13-sided paralellogram? THAT'LL fuck em up!,1 +Yeh but every nerd like to think he/she is devastatingly good-looking as revenge on those who snubbed them. Trust me I kno,1 +Gee i might if the person running this hadn't been such a bitch to me. I'll focus my efforts elsewhere thanks.,1 +haha you'd think so right? I AM giving something away though i'm just surprised cause it's that high..my sqz pg honestly sucks lol,1 +heh i'm a thunking (friggin hate that word - 'thunking' how daft - anyway) - is it a CON?,1 + i just fucking beat you!,1 +HOLY FUCK! that was one tough fucking cow!,1 +yeah i know but its also too bad about the children ya know BECAUsE I FUCKING WON!,1 +Heh his name's Jeremy (stupid little nerd but he's up for any challenge.) And he's about to break anyway.,1 +hippies hate that stuff... too chemical-y. This is true when used in ENORMOUS amounts.,1 +i have to go inside of you tomorrow. i hate myself every time i am in you. i feel cheap and dirty.,1 +#NAME?,1 +(RT) Fat Bastard (my beagle) is writing his "tail-all" confessional diary about online dating...,1 +- Fat Bastard sends hugs for retweet on Austin Girl blog: http://austingirlblog.wordpress.com (need feedback on writing),1 +jizz in my pants is old news nigga. Keep up LOL. instead of doing it locally just come over early and do it here. Fuck local shit,1 +@lastlee...that movie was good...not boring...very gay....but equally good,1 +fuck u and ur early screenings...jealous...prepare for tuesday mash...im coming with woody to freebirds/mash,1 +cant wait to get FUCKED THE FUCK UP,1 +well if they hate you are they still considered a fan?,1 +I'm kinda meh on it--It wouldn't even be a contest as Madonna would kick his ass while he was running around screaming.,1 +ok I take you off of my hate list and send you hugs I am in business..this is my alter ego. mwahahah,1 +http://twitpic.com/rt32 - omg :/ sucks to be u. hope u got some good tunes going makes it more delightful to sit through.,1 +it's one thing if it's my friends using it on me but I hate when 23 year olds message me on OKC and call me that or Older woman,1 +that would be one shocking pussy lol,1 + Totally agree with you. Fuck Prop 8. very cool that apple came out publicly against 8 on the website.,1 +u know that's what I hate about Ohio seeing grown up idiots in shorts when it's freezing outside :0),1 +fuck yes,1 +:) if she is a dumb hoe why'd he put his cock in her?,1 +still nothing. Lucky for you I have the free time to hop on twitter and remind you that you still fucking owe me.,1 +charter sucks as is nothing but trouble - att needs to roll out uverse faster!,1 +did Santa cum n visit u huny?,1 +nice voicemail... i didn't enjoy it cuz i am a bitch.,1 +summer workout tape? How you gonna workout to Kanyes depressing ass album ok maybe 2 songs,1 +Well I I said some words about Pollgod that i didnt mean because a SP member was being a fuck head lol,1 +i'm with you on the new yrs res! i'm 10lbs chubbier than i was 8 mos ago and i ALSO thought i was completely immune to fat! :(,1 +Oh you bastard. You couldn't wait until I'm not busy. I'll probably catch the tail end again. Damn it all.,1 +How is the Loser episode? Lotsa crying??,1 +I am Dutch ;) Over here there's a difference between the fat ho-ho santa and st. nicolas (sinterklaas).,1 +fuck off!!!,1 +ducking ducking ducking. Stupid ass autocorrect,1 +DAMN TJ You getting called out in songs now??!!,1 +LMAO!! I aint gonna front shit did look kinda moist! Ol Duncan Hines Ass!!! LOL!!,1 +my programs is telling me the same damn thing. WTH!?!,1 +I wanna see her tall lanky ass playin tennis lol,1 +The guy who runs it is a major dick underpays or doesn't pay models. He's harassed me and belittled me.,1 +Yeah it was four years ago but I have a long memory. I also still hate the Avalanche even though they've sucked for years. :},1 +Grew up a Habs fan which meant I had to hate the Leafs when I moved to Toronto which meant embracing the Wings.,1 +Wilt fresh spinach with hot bacon fat and top with bacon!,1 + Graphic novel class? I hate you but I love you but still I hate you and oh yesh Hows ya boy JImmy?,1 +usually if I am at the point where I'm ready to say something mean I will click away. I hate mean people. hate them.,1 +yes it's winter time and i'd hate for her ears to get cold out there on the ocean city boardwalk.,1 +Now I know you're really are GAY!,1 +Me?? Hairy ass??? WTF?!?! I would laser that shit...,1 +which keyboard do u hate? I hate iPhone keyboard. Yes touchscreen is cool but I WISH I had actual buttons 2 push! Less typo's,1 +write more books sccessful new venture with me &bring fat fat 2 L.A. so we can hang out and buy our sons a bunch of cute clothes,1 +Fuck you McGaffigan. I WANT TO GO. NAO!,1 +You can stop voting now. Holy fuck. If only McCain had you on his side and you were 18.,1 +You bash Nickelback but you listen to Staind? WTF?! I hate both btw.,1 +I nominate @Badhorse_ for a Shorty Award in #green because... Why the fuck not?,1 +Joanne Angel? You know how much I hate you right now :p <3 XXXorcist,1 +I also lost my wallet over the weekend! its sucks in my case I was just dumb and appear to have dropped it somewhere...,1 +dunno I just saw her go at the top of stairs; It seemed like an ass slide.,1 +It's just crazy. This boy is fucking up my sleep schedule. Probably why I don't mind too much. ;),1 +RE: Hugh's daughter. I just hate to see when a female CEO step down and says it's so "company can evolve" AAARRRG!,1 +like tha new 50 shit fire. finally sum club gangsta shit i neede that!!! hook is catchy as fuck and 50 whas rappin good.,1 +i fuck wit u. u got skillz homie.,1 +-- damn fool. you're a 247 workhorse!,1 +#NAME?,1 +-- damn homie ... in highschool you was the man homie. fuck happened to you?,1 +--- that shit right there fool ... is FUCKING TIGHT!!!! --- http://tinyurl.com/6fro26,1 +no. ur 13 get the fuck off the internet and get back to playing with ur easy bake oven. stupid parents buyin brats iphones.,1 +if Q is there tell him he sucks. He's dark and plays suspect lol,1 +thats the only set back and its a bitch to send ish back,1 +blocked. What a fucking load of old shit.,1 +lol the fuck what concert was that,1 +because I hate you. The last one I rewrote cuz there was a typo and it was bothering me,1 +oops but you're forgiven. Hope they win. I Never had a good exp. with a shelter they hate us military types. Glad you did though!,1 +fuck yo couch,1 +ground her now and she'll kick your ass lol,1 +can't make up my mind. Go out w my girl vip style and leave the dog home alone till morn stay in or go to a gay pj party,1 +Oh Hannah I am so so sorry for your loss. I've done the deathbed vigil and it sucks. I hope your pain eases with time. Love,1 +Happy birthday you damn sexy hobo!,1 +I'm celebrating and drinking to the fact you're an annoying fuck :),1 +I'm doing nothing. I was thinking about going to the Flaming Lips concert but hate going alone.,1 +dude the talk about universe at #LeWeb is awesome. As a nerd guy you have to watch it,1 +Jerry IS Cowboy's problem. He won't hire real coach 'cuz then the credit wouldn't go to him. He's poster child for attn whore.,1 +u r pussy. lulz.,1 +don't you just hate that?! Especially when it is over the most irrelevant crap,1 +yes. Freakin 17 and in college since i was 16 ugh! It sucks. Hah,1 +Then why u cryn? Hate'n on me.,1 +If it wasn't for AT&T's spotty network I'd switch in a heartbeat. That's where Verizon kicks some serious ass.,1 +you fart like a fucking bass drum lol,1 +what da drilly wit dat do! ...oh and i STILL got distribution in Japan...damn that chick was the worst that night,1 +yeah but w/ that running time u'll be there 2morrow. that mmovie is long as fuck.,1 +damn bossman let find out u got 2 jobs. what are u a single parent or somethin'?,1 +no-sign. i dont fuck with "rats",1 +http://twitpic.com/s13a - omg i hate scottiethehottie!! he is a retarded spammer!! he is photographer08 (it got deleted ...,1 +no fuck you,1 +I don't bother arguing that about Bush anymore because people who admire him have damn near no power post-2008 elections.,1 +do you think you are nudging me to change my update...WHORE NAILS!,1 +thats what you get for being a fat ass....FAT ASS...,1 +I HATE YOU!,1 +i've been on twitter 1 week and am about 20 shy of 500. does that make me a loser? LOL LOL LOL,1 +well either wy thy like dick wayyy to much.,1 +omg son i JUST figured out how to reply to youuuuuuu. i hate this lmao,1 +fail whale?,1 +cluster fuck indeed.,1 +- you can trust me to do my part to help @adam_callender win his "biggest loser" contest. ;),1 +Dang I hate the little buttons. GO BACK ONE TWEET!,1 +ironic - I normally hate plastic 4 environmental reasons- this time it actually saved some of the patterns from the wet grass,1 +God Damn !! Ok ... How about Peter Duncan then ?,1 +damn you overload issues! :(,1 +that's killer. Wish it was even cool here. But it's been damn near 80 most of the week. No where near festive temps.,1 +ugh yes. I am a consumer whore... "and how!",1 +SHUT THE FUCK UP!,1 +i hear ya. iPods can get annoying with that damn clicking noise!,1 +dude...if u didnt tell me how 2 do this fucking thing(twittr) i wud prob still b lyk nowhere with it!,1 +Don't you just hate deciding on things.,1 +eddie izzard says the brits pronounce "herb" with the h "because there's a fucking h in it.",1 +I feel like such a nerd watching this! I LOVE IT!!!!!!!!!,1 +#NAME?,1 +wtf? That is so gay.,1 +Would you believe the same article said eating less helps us live longer too? Damn those scientists!,1 +YOU"RE A GAY!? .... =) I <3 you,1 +There's some dude at this bar that totally looks like you. Should I kick his ass for impersonating?,1 +all these awesome people just flock to me. Guess I'm about cool as fuck.,1 +@KitchenGirlJo what's the fail whale?,1 +oh LOL I use a client so I never get the fail whale :-p,1 +could be that I'm not typing hard enough? happened a lot more when I first got this laptop about 3 weeks ago. Sucks ass,1 +you're a fucking bully man.,1 +damn son,1 +fuck the world? Or for the win,1 +http://is.gd/brVS (iTunes) or http://is.gd/b4yp Antrel Rolle previewed today's MIN game on the Best Damn Sports Show Podcast.,1 +oh come on. I mean we all love to hate MyZou but it's one thing to hate MyZou and another to take a time machine to the 70s.,1 +no i dont! He does. I hate his guts!!!,1 +this makes mme smile lol. I hate him. But we still dont bring him up bc to us he is dead and non-existant.,1 +i hope so that way i can fuck him over continuously.,1 +your a effin cunt! Ihu!,1 +dude that sucks man!,1 +Im glad to meet someone with similar FREAK gifts to me. haha,1 +read the emacs-rails codebase and then see why emacs is just damn cool,1 +omg omg omg! finally the shoes r coming out yay yay I want them so so so SO BAD! =) fuck cancer! =) this literary made my day,1 +god a free cure show! damn! I didn't know about this & I live close! ugh lucky lucky how was it??,1 +Girl talked to Black Milk on the phn for an hour. Watching "Big Bang Theory" drunk as fuck eating cereal & its cold in the D.,1 +Are you out celebrating your birthday? If so a birthday drink is ok! But don't forget the marathon. I hate being such a stickler.,1 +Damnit. I've started a new short story. About a dentist. Fuck.,1 +All of my friends are married gay or have been burned so badly they don't want 2 even think about another relationship :o( I've,1 +Well if he's a pussy he surely isn't that man of "substance" your looking for lol...Don't settle when you know you want more.,1 +the fail whale?,1 +Damn you've had more jobs than um er well you're just always employed! lol,1 +lol maaan-fuck this!! I almost busted my shit like 5 times tryna walk on this damn ice!!,1 +burger in each hand? Wut a fat ass!! Lol,1 +yo I only peeped the last 30mins-and I saw here and THOUGHT it was her but figured "naaah this bitch looks way broker" lol yikes,1 +Yeah! id do her like my nigga did them white chicks at the club on Knocked Up...I fuck the shit out u old bitch but no clubin,1 +yeah she pretty cool but she got moments where i be like ehhhh idk! now id fuck but the ass lick wud depend on the nite,1 +Son i just got finished watchin Big Mommas House...WOW!!! She damn sure can...and she a MILF so thats a bonus,1 +yep ur an uber nerd now,1 +and @rapperbigpooh. Was that Sheila easton? Nah...it was that chick that used to fuck with Prince right?,1 +Damn fucking skippy. I'm onthe same shit,1 +Oldest son just turned 19 months and youngest is 5 weeks old. Damn dude u look too young to have a 17 year old! :),1 +Bill Donahue? Seriously? Ask him why he uses hate speech against gays women and Jews and maybe I'd listen to his complaints,1 +I used to do the shopping but when my wife stopped worked a few years back she took over. It is just damn cold until April,1 +I just got done busting my ass for the day. I need Booze!,1 +I nominate @IgortheTroll cuz he's thee Best Damn Troll we gots!! ;)),1 +thats why I hate megavideo. I'll see if I can get someone to update the episodes with an offshore video hoster.,1 +What a cunt!,1 +that sucks loxy. I wish there was smtg I could do! Is chury back in cgy as well?,1 +and the arabs pussy count reaches 250 million. There I said it we're all a bunch of pussies. No offence to the pussies,1 + yeah its seems like most of the time unexplained highs are related to a bad site or fat delays,1 +duh! fat fish and winning the lottery go hand in hand,1 +#NAME?,1 +-politicians should have to pass an ethics exam 2x yearly. I wonder if that's a piss test for them?,1 +I think that's another one that I haven't seen that makes me eligible for gay card revocation,1 +LOOOOL TA PHOTO =D !tu as aimé silvester ou pas ? :S jamais bourré ensemble -_-' mais trop chèr là-bas LOL et le GAY MDR ! lieb dich,1 +Alors NERD s'était bien ? vous avez du être folles pendant lapdance XD à SAMEDIIII <3,1 +np you are happy with the service? do you have anything to compare to? I hate 3 not working out of cities. and whirlpool likes exe,1 +lmmfao! Shuddup! Any grown ass man that let's other grownass men call him Timmy is gaaaaay!,1 +both think I liked the first one better. They both beat Harry Potter though that damn rubbish.,1 +look im sitting at home twittering my ass off on a friday night. I should know better then anyone lol,1 +lmao damn right but we aint talkin bout me here,1 +I fuck wit the lows if there dope...but I know y'all got me fam I ain't trippin,1 +lol britt just said it look like a big ass pillow fight outside,1 +Wow that sucks.Merry Christmas to you and your honey (wow we are both celebrating 'firsts' on that one) -The Bs,1 +Damn skippy. I demand to see you before I leave. You going to come meet BlendMom?,1 +Arsclan would freak on u. Tower Def. is build series of midieval like towers (upgradable) near a pathway of continual attacks.,1 +Some liberal gay atheists or Republican fund raisers should jump on that. ;),1 +what are you gonna stab a bitch with? scissors? knife? spear? sword? cock? pencil? dildo? cattle prod? broken glass?,1 +I once let a Delta Chi fuck me in the ass in Raleigh NC. He took me to Bahama Breeze and that sealed the deal- doesn't take much.,1 +are you sure they weren't looking for my blog w/ "wine bottle in ass"??,1 +i like to fuck when i tweetup.,1 +$10 for water is better than the throat fucking i got for free the last time i was there.,1 +better give @dochobbes the #nerd prize. he's the nicest nerd i know.,1 +dude the ep is sick..Pussy and Tween Me & U are my Jams..,1 +LOL I did zackly same thing! BTW thanks for leading me to @ChipEFT Just reqd Born Loser's Guide to Abundance! http://rurl.org/18kr,1 +damn those Jets! Hears hoping for happier fucks in the future. *blinks*,1 + My pussy is still sadly missing. *blinks* Do you think this will affect my popularity. *evil grin*,1 + *shakes head @ you for calling Kitty a pussy* He's a BOY you know! lol,1 + I work with a very limited bankroll. When I'm running bad I HAVE to go for broke. Now up for the night. Also fuck poker.,1 +I hate those backgrounds because you can't click on any of those listed links. I find it frustrating.,1 +Yes there is definitely an element of Bush fatigue in all this. Can't wait 'til we can ship his ass back to Texas.,1 +dat bitch left u lol,1 +no fucking crazy josh!!!!,1 +no!!!! Ahhh he is fucking crazy hes been killing himself since yesterday still nothing!,1 +call me emo again and i'll cut myself,1 +i hate that i know some french...and the french you used was the french i know,1 +@Dncr1804 i don't even know what i did or said that was "emo-esque",1 +*twitch* I. Hate. You. J/k.,1 +oh man that sucks. I'm sorry. Sucks to live with people who are dirty..trust me I can relate.,1 +I felt the same way 3 weeks ago. And then proceeded to watch the whole. damn. thing. lol,1 +Well you can send me two and get fat on the rest :),1 +you were right the uv filter that came with that kit sucks. freakin glare spots all over my shots,1 +a party bored as fuck. God I need a grown man party,1 +it's like gay people using the f word. somehow allowed.,1 +Damn that is so unfair. Where is the version of Firefox for white slightly balding men.,1 +Can he seriously help me out or are you taking the piss of him :),1 +home now. Misses wont let me drink beer tonight cus I gotta do shit tomorow morning.Sucks.,1 +man it sucks dont it.On the plane home yesterday i was in agony with the cabin pressure.My ears still are not right now :(,1 +So if lifes a bitch and sleep is the cousin of death that whole dam family needs help!!!!!,1 +tell them to fuck off give it a few years then laugh at how much better you are then them.,1 +depends on your plan. if you pay out the ass for it no.,1 + That's a very interesting point and one I hadn't heard before. Copper for elec motors? Damn I love twitter.,1 +agree entirely. I'd hate to see a graph for my twitter input this week.,1 +guy walks in to a bar with a duck on his head. The bartender says can I help you. The duck says yeah get this guy off my ass.,1 +- Nazi and Facist... I could you call you a commie pig but that's not very gentleman-like #Gaza,1 +I miss being here...wish they had corporations here instead of a damn AQUARIUM! I miss Jimmies hotdogs...that dog food be JUMPIN! LOL,1 +dupa cum vezi eu mai putin cu excelurile mai mult cu povestile ;o],1 +I nominate @yiyinglu for a Shorty Award in #design because...he designed the fail whale :-),1 +Lol why do you do this?! I hate your guts :-p,1 +But now I really want one damn you! i hadn't even realised I NEEDED one til you told me they existed!,1 +niiice likewise...sure the boricua gave that away. ah yes we boricuas have good taste (Rob Pattinson) hehe damn sexy brits lol,1 +i hate having to wait till jan. for the big game lol tedious i tell ya,1 +would be at least 4gb at a guess. I ain't using it ATM if you don't leech ur ass off you're welcome to lend it,1 +meh. All year round baby. They're actually growing like fuck at the moment except for the caterpillar incident yesterday.,1 +don't hate on ghajini. It was an awesome movie.,1 +If you're hard at work or just leisurely reading you're not a poser.,1 +God Ashley is a bitch but still congrats! :),1 +I cry but then I'm just like that fucking woman is a bitch. God I hate her!!! (Yolanda) I'm getting mad just thinking lol,1 +lulz. fat chance! good news is no bacn from friends adding you :D,1 +Looks like lobby card for "Ocean's 21: On the Half-Ass",1 +Check @ replies from hahlo twhirl tweetdeck et. al. they reply to the user not specific ID. Makes following convos. a bitch.,1 +unless Adobe gets their head out of their ass Flash will die because mobile will be the dominant platform.,1 +Lobsters and ligatures? Are you a Portland-area type nerd then?,1 + touche (i hate getting SHUT DOWN. I guess that's what I get when I pray for humility.) at least I am a better student t ...,1 +So it seems you are an attn whore.....no comment. ;-),1 +posted the fat man version to the beyonce song.,1 + Bitch you wish. Keep dreamin... =],1 +ahah! and i'll say exactly what i'd say to him: "bitch make your own!" i kid:P,1 +lol i think she's a huge bitch BUT she's good at what she does and is entertaining at times :),1 +AH! i was too! I hated that bitch. I want Bob or Sugar to win:),1 +I prefer women to be fat in other places anyway. Fat toes and earlobes are so cute.,1 +nigella is a bit of a tease I reckon imagine how fat you'd be stayin at hers,1 +twinface it's ATCQ...your drunk ass can't type lol,1 +there only a few shows i really look forward to seeing. i hate when they put a reality show on instead with no warning.,1 +Compared to Eeyore and that stupid bear and that demented pig? I think he’s fine.,1 +"""See I had to google """"cloved lemon SCA"""" to figure that out. ",1 +Who owns one - I just fix 'em! Hate it when electricals go to Hades.,1 +unnecessary. pain in the ass. too much effort.,1 +damn ecoterrorists! he shoulda just rented a helicopter better for the enviroment anyways.,1 +Yeah i'm with ya...I hate to see guys get hurt but it's a little easier when it's Roth..if only it had been Ward or Polamalu,1 +Yeah especially if they're those big-ass soft pretzels. Those things are the bomb-diggity.,1 +just read the archive artile on your old site. love the jones comparison. how much hate mail did you get?,1 +i forgot 2 call in gay 2day too! blast!,1 +We miss you back. My Haiku: Famous Dickenson Exactly Why - I'm not sure. Her poetry sucks.,1 +He was just being a dick in H CoT4 his attitude caused wipes which made him a bigger dick. It was a vicious circle.,1 +How you gonna call me a hater? I'm entitled to an opinion and that opinion is SB sucks hog ass. Don't give a f!@k about it,1 +heard there were 2do fairies tht come & do ur 2do list if u put a list by the freplce (kinda like leaving cookies 4 the fat guy),1 +i got the 8330 bigger keyboard I got fat thumbs,1 +yo... you should have another show tomorrow cuz we had to record the past two days... damn albums...,1 +ok i can't believe i just told the haters on Momlogic to kiss your million dollar ass.,1 +oh gdnss jus saw vlog. WOW I met that fool yrs ago @ MJ restaurant DC. What a loser!,1 +I was trying 2 use it the other day also & had the hardest time. I said fuck it &just called the person. It wasn't working.,1 +Yeah I was just saying that. Why did CNN decide he would be a good move? He sucks!! I try to support but I can't.......,1 +We loovveee chicken. Damn i do also so I really shouldn't complain. And since I found the chicken i am in a better mood.,1 +social network whore!,1 +why do i hate DMs? so many reasons... one is: you can't send them to someone if they're aren't following you. what a pain that is! :),1 +another reason I hate DMs is: they ring in on my SMS even though they are often lame ads and not urgent for the sender nor myself!,1 +I responded and asked you but yes it does vary. Some think gay marriage is immoral. I think those people are bigots.,1 +I hate you with the hate of a thousand hates. ;),1 +Now wait a second mr fanboy. You cant judge it without seeing it. You already think it sucks and its not even out.,1 +Clearly manufacturers rarely use common sense to make customers happy when they can easily just piss you off and make $$$$,1 +That really sucks I'm sorry. I'd get shitfaced with you but I'm stuck up here on the plateau.,1 +Fuck no I don't feel silly. I worked hard for that.,1 +wow bang bros was the ish...haven't watched it for a while tho! :). damn now I wanna see that! LOL,1 +damn prolly not! Now I wanna know! LOL,1 +Well DAMN...Thanx For NOTHING!,1 +listen to u...who's the FREAK now? LOL,1 +hmmm...I had a feeling bout u! but Damn No Label?? wow,1 +you COULD be jobless! Praise God for it! despite how much ya hate HOW it comes at least it's coming IN rather than OUT. LOL,1 +Ohhhh jeez. That sucks... I hope she gets well!,1 +I don't have a damn clue what you're talking about. I'm just now on Better Halves.,1 +pussy!? :),1 +dang...i need to stop eatting cheese. Damn you kraft!,1 +Oh jeez I had mercifully forgotten about fatman. Should have been "assholeman-who-will-piss-everyone-completely-the-fuck-off.",1 +Sorry man hope you stop ass bleeding soon. (wow that was awkward just thinking about it),1 +http://twitpic.com/t9za - Hahaha! that looks so emo...poor guy thats y i prefer drums,1 +I guess that song represents Bono's "dark" period. Fuck saving them. Be happy with your wealth.,1 +I always respond to that use of gay by asking if the subject really is "fag-o-licious".,1 +I hate nearly everything about the first two HP movies.,1 +George Lucas' Guide to Sucking Cock?,1 +Yah after more tries than I want to cop to. Damn static in my place is making the laptop jump all over the fookin' place. AUGH!!,1 +Yah you'd think I'd lose some FAT doing' all this shovelin'. But I guess eating brownies when I'm done negates something! Hah,1 +I had no clue...Damn Homie!!!,1 +Damn! Break me off some bread!,1 +damn Dame lil Magic need some signings... He love Boobie,1 +Man!!! You got out that garage hit them stairs so damn fast!!!!! lmao!!! Im like look at this nicca... lol..,1 +Seriously! 'Oh Great a giant American flag! WTF are we supposed to do with it? Fuck it send it to Price is Right',1 +@nakedbard I always hated when people bought practical things like carpet or knife set. BUY THE FUCKING DALMATIAN PEOPLE!,1 +You know damn well your boss is going to leave early. When the mouse is away . . .,1 +"""It was not fun",1 +I hate you,1 +im not sure if i should taunt you with how awesome it is or say im surprised it took this long to get snow hate twitters,1 +omg i would shop my ass off but that's because i have like zero long term goals :(,1 +Better than that shit ass falafel box you eat once a week I'm sure ,1 +thank you she's such a big baby. lol But such an incredible dog. hate to think of life without her pain in the butt self,1 +it really depends on the situation but when I get mad I just call old girl up and get the freak on,1 +Take Ur ass home,1 +HAHA...emo lawn. I dig that!,1 +lol...i disagree...Dick in a Box got too built up for me. It's funnier now...but it wasn't when I saw it. :-( jiz in my pants rocks!,1 +on dude......a whale remember,1 +i am doing no such thing fuck you,1 +You didn't imagine it. It was the "get away from her you bitch" climax scene being parodied.,1 +we could call it nerd land and charge ppl 2bits a gander :),1 +yeah fucking predictive text,1 +omg I know everyone tells me I'm a twitter whore lol,1 +Yeah she did this huge ass rant to me about how i'm going to die alone and how i'm going to regret ever breaking up with her.,1 + doll you know i'm fucking feelingggggg you! thank god you'recoming this weekend so it forces these fuckers to get on it.,1 +"""",1 +"""",1 +Yeah they seemed to have fixed most of the fail whale problems.,1 +Hell yeah the drunker the better...is drunker a word..more drunk? I think its more drunk? Fuck it our show is hood. drunkener,1 +fuck no I don't want to be PM or even a politician. I'm just tired of getting anally raped without any lube.,1 +seriously. We're fucking SOFT in this country. The French wouldn't put up with this shit.,1 + pissed off? I'm ready to go Mumbai on their fucking asses. We're too soft. We need to start blowing shit up.,1 +ROFL! You got me. Monkey would totally kick Bruce Lee's ass. I bow down to your superior wisdom.,1 +I wonder if can write "Kevin Rudd Is A Cunt" for the next 30?,1 +they won't let us live anywhere without coming up our ass. I want to move now ):A,1 +great :P that lady is a cunt that serves me right for getting excited over something,1 +FUCK YEAH RYAN ROSS. il his lyrics way more than wbeckett's tbh i donut care if they make no sense. BTW rolling stone FAILS.,1 +fuck u asshole we aint even watchin the game shyt we slda goten closer so i cn c betr.how r those cheerleaders 4 ya,1 +ud lyk it if they suxd ur dick.bt id kill them rit b4 i killed u.,1 +hes goin dwn!we cld kick his ass n dominate him,1 +maybe he sldnt cum out in his mofo boxers n dance around hes guna b jumpin around n his junk fall out,1 +yeah..what is it that u called me? "ass clown" LMAO..i was like uhhhh welllll then hahahaah,1 +Ohhh I hate snow days because then we have to make them up later.,1 +WOOT!! 8 pounds is AWESOME! YES you can! 1 pound at a time... I need to get my ass in gear ;),1 +damn why don't all harem leads shout that kouhai~? would be interesting the resulting chaos,1 +@icystorm I think the thing to note here is that everyone has an emo phrase re: romance in high school and eventually it blows over,1 +What happened in '93? (Also I would have accepted "29-5-4 bitch"),1 +Sure glad you found something better to listen to. Would hate to hear you make the news "that" way,1 +Awesome...Love it or Hate it...An Atmospher of Change...is HERE,1 +Top three tips: 1) scan updates 2) pay more attention to @ replies and 3) set time limits before it sucks your day! ;),1 +I find the exact opposite to be true. I can review a book I hate in fifteen minutes. Good books take hours.,1 +that's the coolest damn thing yet! Have you put it on your own website yet? Its a pretty simple ap just don't use huge pics,1 +Yeah I was teasing Dad he got a new snow blower and I said as much as I hate rain I don't have to shovel it get home and SNOW!!,1 + OH AND! that guy in dark knight totally was wearing guy liner... he's gay!,1 + Because they are FUCKING DUMB and annoying,1 +Damn how u burn spaghetti?,1 +- Oh yikes! I hate that. Will she willingly use the toilet for it? My boys won't.,1 +She says i have gubgivits? teeth thingies and she stole more blood. every six months with the blood stealing it sucks.,1 +will ferrell can suck my dick. go on yim!!!,1 +church can also suck my dick.,1 +seriously. so precious. I laugh every time i think of Nate rocking out to that shitty ass band.,1 +I may hate you a lot right now. Please die? :D,1 +hahahahahahjdshgskdg I hate you. So much.,1 +my job has made me feel like a tool so i am trying to change how i consume things. fucking cvs.,1 +holy fuck. i would just make pasta or something if i were you that is ridiculous.,1 +if you're going to have to spend that much for a fucking pizza at least go to mellow mushroom or somewhere not disgusting.,1 +Frankly I'm shocked that they use coal at all around here... HELLO!!! Hydro anyone? There's a fucking OCEAN right there!,1 +work on this glorous sat. with this crazy ass shoppers,1 +what happens when you run out of Word of the Gay words. :),1 +THAT WAS FUCKING EPIC.,1 +I nominate @PhillyD for a Shorty Award in #entertainment because he's emo.,1 +admit it. You're secretly in training for RSA. @beaker who? I can see it now: Cigar red-bull and can of whoop-ass. Nice.,1 +lol yeah I coulda told you that cuz I'm a big fucking dorkass about that movie as wel all very well know :) I actually had a dream,1 +meeting friend for lunch/coffee. Getting hair cut (although I hate that bit) and my works do in the evening!,1 +yea..brang yo ass down son :) I'll be @ Essence again...Staying @ the W! (thanxxxxxx Sony woop woop n da poop poop),1 +I hate weddings.. u shud be grateful for being male not worrying about what u got to wear.,1 +Dick Whittington's Lolcat: I WAS DOIN CAPS FOR LOLSPEAK SORRY FER CONFYUSHION :( #twitpanto,1 +http://twitpic.com/vk9k - Dick Whittington's Lolcat: NICE SPACE TROUSRS BOSS #twitpanto,1 +twins! we've been watching this one guy he sucks with a hammer,1 +PETA is an ass in the article D. Big time.,1 +canadians always make me think shut your fucking face uncle fucker! http://kenny.smoovenet.com/grabpics/terrance.gif,1 +oh in that case. WTF thats some ugly ass shit to do.,1 +"""midget w/a hookhand hangin off your collar"" IM FUCKING DEAD. BURY ME. D-E-A-D DEAD.",1 +i hate people sometimes-today is one of those more than usual days,1 +YES. the thing is big enough for my ass plus another half. its like my parents couch.,1 +well shit then I know I'll catch on ... who the fuck wouldn't be interested in what I have to say.. LOL!,1 +lmfao HURRY AND GET THE FUCKING LYRICS.,1 +ill settle that bitch down real quick ,1 +you work in cape cod. why the fuck am i up so early. argh stupid cousin &brother.,1 +damn! twitpic that shizzle!,1 +Exactly! Damn cops disagree though,1 +dont hate ur life! =_=,1 +dont hate!,1 +I hate ism's as much as the next guy but when the shoe fits...,1 +Oh conservation you mean! That is a good point. I admire many socialists but hate their ideals socialism brings with it.,1 +can you tell loser tudds to turn his fucking phone on...,1 +whoever created chocolate pecan pie thank. thank you for my big fat ass.,1 +if you hate sprint. try jogging. and stop once and while for eggnog.,1 +cont. and you must RT EVERY LITTLE THING someone says then DAMN do I feel SORRY for you and your friends.,1 + RT this then GO fuck yourself stay the FUCL out of lives and HOPEFULLY you'll die a Horrendous DEATH for all to WATCH ,1 +Do you realize your comment on parents dying comes off as a tad insensitive? like a "sucks to be you" comment,1 +you won't die in Queens we're civilized here in Queens hell there's a Starbucks & McDonald's on damn near every corner have fun,1 +What? Yours WORKS? I hate you.,1 +"""hey've just proved how fucking irrelevant they are"" ..By making you go and read them?",1 + sometimes I hate how contagious US culture is,1 +The eyes followng me are creepy. Damn creepy. And that smile makes it worse.,1 +cock flavored seasoning?!?!? wtf,1 +That depends on if you are dealing with a pain slut or not.,1 +You're going to find a woman and tease her to make her have to cum silently at work?,1 +Exactly. Poor kids. That damn thing has me watching weird videos on YouTube now. Argh.,1 +She's probably saying all kinds of phony shit and giggling like she's 13 years old. God I hate her.,1 +She makes me sick. She thinks she's cool and youthful cuz she watches that show. Phony bitch.,1 + LOL FAT NIGGAZ UNITE FATRON!!! HAHAHAHA,1 +let's be gay together!,1 +THE NEW FUCKING GENERAL OF THE WORLD THAT'S WHAT.,1 +hahah word ! their set was off the fucking hezay,1 +damn straight you do,1 +well mine are double flared so they are a fucking homo bitch cunt to get out. aggrivation!,1 +i hate you,1 +Kurt you're on the most watched tv station in central Ohio your ass should be #1 already LOL. I'm just cooler than you!,1 +a) JTP is a douchebag b) Stewart kicks ass!,1 +I cunt wait for u to start shitting out the gifts I sent jew.,1 +what is this dick suck moment? lol. HAPPY NEW YEAR,1 +WPMU can go fuck itself,1 +there you go denying stuff again. until Maury clears you on TV w/ an "i aint yo daddy test " your ass is suspect.,1 +This week in fuck?,1 +I did ur mom last night? Naww I don't like old fat white bitches! ,1 +damn we got BWNT - where you headed tonight?,1 +Frickin turnovers! Dang flags. SD's gonna beat our ass and Denver is going to blow a 3 game lead. They don't deserve to win.,1 +I meant boo YOU whore!,1 +you are such a whore LOL,1 +- yep I'm a real ass. Everybody knows that.,1 + Wow...so you bought what's fashionable at...gay biker bars!!! Congrats!!! :-),1 +yeah u are!! Asian ass embrace it,1 +so when he laughs & comes down the chimney does he say "Whore! Whore! Whore!" and shake like a bowl full of jelly???,1 +How would you fancy being Jeff's resident bitch? Just his pet he can take you out for walk and stuff. Straighten your hair...,1 +You clearly said "Would I have to fuck anyone",1 +Lol. Ur a bitch. I've done Hondurans and Chileans and I don't need some closet gay Peruvian dressing better than I do!,1 +2008 is over? Damn what'd I miss! I quit keeping track of years after 'Buffy' went of the air...,1 +that's why I hate them. "Oooops why don't I go this way and destroy your whole story. Or maybe ill refuse to say anything.",1 +Damn cat. She snuck into Aidan's CRIB (1st time) he woke screaming - went in - he was squeezing her & she was kicking his tummy.,1 +(cont) I say the whole sheet costs $8.40... buy one of each and get the fuck out of my way!,1 +yes you remember me trying to keep *MY* lashes on for the awards this year- never fucking wearing those damn things AGAIN,1 +Called in gay? LMAO!,1 +this isn't hate this is survival for the eagles. stompin the giants alone won't get us in the playoffs. the cowgurls gotta lose,1 +the lox "f**k you " "keep it thoro" prodigy "we run this" fat joe "i come thru" styles and nore "broken language" smooth,1 +you sir are an ass. ;),1 +I never really thought about it but I nearly always eat a big-ass plate of spaghetti and watch Goodfellas on Christmas eve,1 + ARE YOU KIDDING ME?! Quick! Forget the prenup! Get lo-jack implanted in the new wife instead! I think he's an ass.,1 +that's weird because I hate them the second time I see them. First time is ok but they get old quick.,1 +because the sandman is being a punk ass ho...,1 +We just call that "whiskey dick.",1 +lol just rhyming gay i know,1 +i'm glad someone is teaching that 3-year-old how to "slap dat ass" :),1 +yeah but zro rly is the eMo city don,1 +Then you should make fun of her for not looking at your ass.,1 +i second that. i hate banks,1 +She can bust her ass on stage and GAIN fans You gotta love her.,1 + @Dave_Malby acting as Colfax Chick's agent! After 100 followers I will make sure to get her ass down here and tweet with everyone,1 +The fail whale was shown when twitter went down. It was a whale being lifted by birds.,1 +dont hate too hard! it hasn't been very warm here lately!,1 +fuck right,1 +omg! what are you in the mood for.. i crock pot my ass off!,1 +ooh im sorry my non celibate ass mourns for ur celibacy and it sorry demise my condolences http://twurl.nl/a16z8c,1 +damn kid...condolences homie http://twurl.nl/i3pwps,1 +I never took you for a sore (at least for the players getting kicked in the goolies) loser LOL,1 +@derekbender It takes a real scumbag to steal from a community. Whoever stole the foosball table can bet I will fuck you up.,1 +did you come up with the "server-hugger" moniker or what some other wise-ass?,1 +Pains in the ass cause that twitch!!! I am telling ya,1 +horrified mum can squlor (he hasnt been gone long enough) Im a chiness pig its what we do riding this till the end of 2008,1 +"""Big Ass"" was this past weekend and went well #2 (Last Minute Maul) is this weekend.",1 +you need some sort of ... ass whoopin...,1 +im not that crippled in gym we were laying on our stomachs and some fat kid landed on my upright foot and it hurts like a mofo,1 +that and "I'm not gay" aw I miss bonez. I hope he's not in prison.,1 +- you are a man of action. great work Daniel. don't forget to record your fat loss seminar!,1 +not really; i think i named all of them which kind of sucks.,1 +I thought Emo's don't "squeeee". I thought it was more of moan,1 +18 fuckin children. damn....,1 +he was given one extra ticket from a coworker so henceforth my ass stays here.,1 +I'm sick of this bitch. He's wrecked enough of my life and I want him gone.,1 +I STILL HATE YOU.,1 +sucks for you,1 +yeah cuz his show was on some wack ass arsenio for sports type shit they need him in a jim rome type setting,1 +was that a racial comment? on it's going down!! bitch!,1 +your mom/dad hate my monroe :(!!!!,1 +yeah dat bitch stabbed me in my eye when I was trying to hit the snooze buttone this morning,1 +Damn Danica! I know BK went hard but shiit...we evoke tears too? Lol,1 +I hate 2 sound like a nigga but...will there be food? Lol,1 +:(( @ tweet tweet you cookie crumble ass nigga,1 +his haircut look like them fast ass Black Beetles on Super Mario Bros.,1 +WHAT THE FUCK?! WHY?! Do they have fucking brains?!,1 +I would have done it by now tbh. I have no words except just WHAT THE SHITTING FUCK ARE THEY THINKING!,1 +in time for when I travel and the train company still refused to let me travel. The fucking wankers.,1 +i fucking hate when free 70$ cheques just up and think they can walk away,1 +Get Shit Done Day is almost over fuck it you should come,1 +fuck em!,1 +Thats what my aunt says. Still TMI. lol What are u watchin wit fat folks on it?,1 +*throws all 52 dollars in my pocket at you* Let me hit the MAC. Ill be RIGHT back. Hold that pose *forgets pin number* FUCK!,1 +"""loser""?",1 +ok I had to say cock-blocked cuz you know it's a rooster. But apparently favrd doesn't like me,1 +there was no fucking egg nog at the store i got a low fat chocolate milk fuck this bullshit,1 +Retard. Section E is?,1 +you need to work in that department so you can clean your smelly ass.,1 +I can guess smelly slut.,1 +bitch you wanna go? Ill kick your ass,1 +whoa be nice guys.. Whats all this FOOL and LOSER talk?,1 +wow.. Thats how people get fat haha,1 +I'm keeping it now *just* to piss you off. hehehe,1 +Or he's just sick of hearing me bitch about the cold and doesn't know what else to get me. I like your theory better lol.,1 +oic but what do you want sir? Did I get you a book on conspiracies and shit already? Yes I did hmmmm fuck thinks,1 +I would be saying the same damn thing about you. LMAO idc if I know you I'd be like see that ridiculous bitch? RI-DIC-U-LOUS,1 +wristband is shipping can they put those assclowns in the mail next to be delivered to an ass whoopin?,1 +the day after christmas and not yet :/ so I will be there early sigh fuck my life,1 +And I want a mansion in the countryside a motorcycle two cars wife kid dog and a big fat wallet that says bad motherfucker.,1 +fuck Dreamhost. that is all.,1 +Ooh You mean Whooty's = "Wht grls w/ bootys". LOL! my lil bro put me on to that corny ass saying.,1 +dude fucking seriously you watched hella now pay or wait an hour. bull shit. I want Stage 6 back!,1 +Gay!,1 +grab that... It's yours bitch!,1 +Okay now we've established that would you go gay for $7?,1 +gay people have just as much of a right to be as miserable as straight people! ;),1 +In Ala-God-Damn-Bama that would be Bidness Skool right?,1 +att is run by the devil i hate them,1 +#NAME?,1 +Damn............I guess he has a life :( hahahahahha,1 +Did you just call me a bitch? You're still upset because @CatalinaLoves is moving in on your bitch.,1 +you should start obsessing over him it might freak the delivery guy out.,1 +"""HOLY FUCKING SHIT THIS IS A RIP OFF OF ""foolin'"" BY DEF LEPPARD HAHAHAHAHAHAHhaahahhahaa fucking gay""",1 +lots of ppl i know hate the song. was spreading it around & most ppl ask me whats wrong with me hehe. i think its so fantastic.,1 +Fuck dude you manage to do this every week!,1 +yes.. flickr upload photo its sucks on eventbox.. huhuhu *tooos* gw juga gak make digg sama pownce,1 +I almost punched her vagina into the new year... grrr she was a cunt bag. How is your trip going?,1 +lets just hope i dont kick any ass. im in a violent mood.,1 +yey for drunkenness! fuck drunk dialing or drunk texting! its all about the drunk tweeting!,1 +hehe its all good. my drunken ass is moving off of twirl and to the crack...berry that is. :) feel free to txt me yo. 3204694136,1 +I hate when I text somebody and they immediately call me. Hey fuckface if I wanted to hear your ugly voice I would have called you!,1 +did i jus get a reply from an emo asian!? CRAZY!,1 +and yes. true life "i have tourettes" is genius. so is "i went to fat camp". lmaooooooo,1 +aliea you better stay away from jesse james joplin the third!!!!!!!! i don't give a fuck bitch,1 +get on messenger already whore.,1 +I just assumed when you said "meet" you mean suck his dick cuz that's what you do when you go to "meet" people.,1 +no im just fucking pissed at shit,1 +Fuck that shit. She wasn't even right about the older men I was hitting on.,1 +LIKE YOU HATE A HUNDRED DOLLAR TIP. the other strippers must be SO JELLY. JAAAAY KAAAAAYYYYYY,1 +OMFG. I JUST FIGURED OUT THAT @SHIT. AND MY FIRM'S IT GUY TRIED TO GET ME INTO CHUCK. IT'S REALLY NERD-O.,1 +I wouldn't with ur dick! Now u owe me one!,1 +like I said I wouldn't even do it with your dick!,1 +my dad started all this bullshit with my fam. He's such a fucking dumbass.,1 +why do i imagine gouthami in police dress kannu adchifying and asking u for a lift! damn i must stop these perverted thoughts!!!,1 +lock it yank his rights on both his accounts. He's been a little bitch lately and I'm sick of it.,1 +Then Clive is a total pussy and after reading his Dominion shit I do not believe that. Oh Clive so many missteps.,1 +fuck you,1 +Maybe you should get your dick out of your ear next time I'm explaining them to you!!,1 +Nerd.,1 +congrats on the Entrepreneur.com plug for Your Pitch Sucks http://bit.ly/pS0M !,1 +yo I will nerd out on this shit all day!,1 +dude ur wack ass better be playin at medium or above cuz u need to step up ur game if u wanna challenge a rock god such as myself,1 +fuck outta here - for reals?,1 +I LOVE how that statement was misconstrued as GAY!!!!,1 +LOL!!! VIOLATOR IS THE TRUTH!!! HATE THEM AND U MUST HATE URSELF!!!,1 +You're soft...Dude ran our country into the ground with no shame whatsoever...People need to be throwing boots fuck a shoe...,1 +Damn homie...I've got a comfy ass couch at my spot & zimbabwe that puts NYC to shame...You should have hit me up...,1 +Fuck that boo the DJs who don't play Che..Dude has at least 5 songs every DJ should be playin HEAVILY...DJs need to stop slackin.,1 +Fuck a serato record I was worried about my windows crackin..lol..I can live w/o a serato record I don't have a backup window.,1 +I think Bangladesh did "What's Your Fantasy" and fuck what anyone says that song is a JAM...can't front on it...,1 +grown ass kid lol,1 +hate it all you want but its a hit record. And Jumpin Out the Window is by Ron Browz. I know its gotta be hot in NY.,1 +women lie too. I know a bitch who was pimping herself out on craigslist. Yes craigslist. I didn't believe it till that email.,1 +Bitch I will cut you! @strong_bow Whatever happened to just smoking weed? @inject Because it makes us feel so good.,1 +beat that bitch with a bat,1 +biiiiiishop! - fuck u want? - yo ass punk...,1 +yo Zee you keep your hair tighter than frog ass.,1 +if you don't know who i am why follow me? get a fucking life and stop bitching about the past,1 +NOONONOONONNNOONONNONONONOONON cock mongler..... you didn't eve nstraighten it...,1 +I think i done bounced half my ass off LOL,1 +yo freak "sarath freak",1 +I nominate @jcroft for a Shorty Award in #down-ass-bitches because she totally is one.,1 +sucks man.,1 +totally agree dude. Pushed carts at Safeway for 2yrs in hs people are fucking retarded,1 +Love hate?,1 +Reminds me of another apt metaphor (Northerners say "fuck you" to mean "how nice"; Southerners say "how nice" to mean "fuck you").,1 +That's just one of many examples of Superman being a dick. http://tinyurl.com/5sgv8c,1 +"""run over my a Hyundai and ass raped by Clay Aiken."" I would so prefer it the other way around.",1 +well... the giant carts slamming into your ass isn't SOOO bad. But the sample hogs are pretty gross.,1 +@alwaysgayalways You both need to watch/rewatch it. But more to sate your nerd jones than your gay-wadishness.,1 +you'll be a a monit-whore.,1 +i hate you,1 +ohh damn bummer,1 +ohh everytime I see that nasty ass husband wants me to beat the shit outta him,1 +lmao!!! seriously and I live in the middle of BFE!! Will you combat being a glow stick or let winter be a bitch?,1 +haha naw pink fuck that! You just know what you want and I feel you. whoo-hoo! lmao!!,1 +no flash? how good is the "low light setting" on cameraphones these days? it pretty much sucks on my Tilt.,1 +They beeped out "cock" .. eh gad! What do they do with vera on corination street with here "Coming to the rovers cock?",1 +Loser! Are you back for Chrimbo or staying out there?,1 +you need to get rid of that game"COCK" you have running the team. Guy is a worthless crybaby just like all UF staff/players,1 +Holy shit just looking at that list pisses me off. Why the fuck are the Jonas Brothers on there?,1 +trade secret ... it's an animated gif. Woke up REALLY early couldn't sleep. My mind said let's freak out @CalamityJen more.,1 +I promise it'll go away as soon as @CalamityJen wakes up and kicks my ass.,1 +I know... I would like to find out if I am right... wow... I need to shut the fuck up...,1 +No can do Maria. I'm going out alone. Don't stress about your shitty wombat friend. He sounds like a loser. Get some sleep.,1 +haha. word. i'm having a glass of wine and retooling my erotica blog project. if i'm gonna be all emo i may as well channel it,1 +booooooo! i have some hot- ass mushroom stock if you wanna come get it after work,1 +amazingly i have yet to hit the one down the street with a molotov & scream "fuck the police" while doing so.,1 +My sis made me think @ your "Femmes & Fags" blog..she is a total boi but so extra that you would think she was a fag. lol,1 +Damn you mean I could have been rescued last night? Well fuck.,1 +lmao ikr. I knew you would hate it. I couldn't watch it without laughing hysterically,1 +@nannon_x who the fuck is charles? yoooooooooouuuuuuuuuuuu,1 +coz it is attended by a lot of FAT people. You don't want me to show you the pics do you? Oh you were in it too!,1 +No but "Listening to Deathcab for Cutie while missing Burning man staff party...etc" would have been way emo.,1 +you can have my dick. Its delicious,1 +Dig him up? Fuck that - I'm picturing next years Halloween costume already!,1 +I hate stupid people.,1 +Is like putting Lipstick on a Pig! You were perogued! LIVE WITH IT! #canadawest,1 +lol :-) I just hate that designers alwaysthink THEY know best and likewise other people are clueless. It's insulting,1 +yo i can kick yall ass for that synth in the begining..GOOD SHIT!!!,1 +Lemme make fun of you for crying at a dog movie for Pete's sake. Nerd.,1 +damn that is pimp!,1 +heh and then u yell "HOLY SHIT IM FAT",1 +HOLY FUCK!,1 +cuz montana sucks?,1 +your mom sucks BITACH!,1 +TWITTER SLUT!,1 +fine! i'll stop!! Quit stompin' my cock!,1 +my bleeping employment agency f***ed up my pay *again*. Didn't come on 24 Dec. Now have to wait until 2 Jan. I hate temping,1 +Well at least a swift kick in the ass. But yeah I take issue with some of these retarded names parents give their kids.,1 +Oh come ON... 1/10? That is fucking ridiculous... that's what you give a movie like Love Guru or one shot on a fucking celphone.,1 +Why does CHUD hate kids so much? 10 years from now they're your readers!,1 +i think that means ur gay. or a child predator.,1 +art IS easy. who the fuck gives A+s?,1 +bitch hurry up!,1 +lick on these nuts and suck the dick.,1 +Drake. He knows his mother was a bitch.,1 +whatever you do just don't roll your eyes. they hate that. those peaceful scenes fly out their heads and they WILL b-slap you!,1 +It's gay as fuck? I wasn't aware fuck could be gay? Why are you cussing?,1 +the cock is just a figure head on favrd,1 +what's gay about a sausage squirting at you?,1 +Fake ass Left Eye.,1 +Is "heavy hitler" sort of like "fat elvis"?,1 +get drumk bitch!,1 +I really hate bailing these guys out! They treat everyone like crap!,1 +didja punch a bitch?,1 +oh...and I wasn't just calling you a poser either :) http://is.gd/ed5v,1 +don't get all emo about that ;),1 +Fucking tell me about it... So much for protecting the investors eh?,1 +this pastor is a homophobic racist person who compares gay people to pedophiles. THIS IS NOT THE 1900S,1 +OMG! cute emo cow! that would be acceptable! and the cow wouldn't mind the blood drinking...,1 +I totally forgot Affliction!!!' fuck outta here!! I got ur tribal tattoo right here!!!!!!!!,1 +U can be a freak and not like girls.,1 +I'm more into shows like Dave Chapelle...I fuckin can't believe he flipped out and didn't do anymore..fuckin sucks.,1 +i had to... i deleted the annoying bitch. she kept making me puke in my mouth,1 +bitch what ? hahaha. j/k.,1 +a recovering emo blogger...in the voice of andre 3000 "don't do it reconsider read some liter ature on the subject",1 +uh bitch wtf is that suppose to mean?,1 + yea you'll fuck around and get that ASS tapped tomorrow u keep talking reckless like you are doing,1 +"""'Cause I hate that you breathe I see you duck you little punk you little fucking disease."" -- all of my favorite words...",1 +Reminds me of this Turkish guy I went to school with. A-hole. Everyone thought it was cultural. It wasn't. He was just a dick.,1 +Two nerds enter one nerd leaves!,1 +no wonder you laughin' i'm supposed to stay away from yo' ass.,1 +goddamn it kj...fuck you 74 times http://tinyurl.com/6q8olq,1 +goddamn it kj...fuck you 49 times http://tinyurl.com/5mq4sq,1 +goddamn it kj...fuck you 58 times http://tinyurl.com/59blcl,1 +goddamn it kj...fuck you 29 times http://tinyurl.com/6pey6r,1 +goddamn it kj...fuck you 10 times http://tinyurl.com/5nv2tl,1 +no fucking lie lol everywhere i go...twitter myspace i see you... you were on 1 of my homies page!,1 +ah yeah but i was referring to the knives in your hand and the "holes' in the knife block YOU PERV! Damn Lawyers !,1 +that's happened to me twice in the past 4 months. Pain in the ass. Much.,1 +Aw I know I was just being emo haha. It's been a LONG week on a lot of levels. ha. Let's do something fun tonight!,1 +who the fuck is bur`li?,1 +Holy fuck. That was amazing! I'm retweeting that sucker now!,1 +fuck apparently i 4got that no homo part guess i said that with a lot of homo,1 +Clearly. Decepticonian bitch. Or at least incomprehensible. We shall steal her bras!,1 +maybe he just has a dig cock to match the free weaponry he got to attack the defenceless...oops I mean 'defend' his country,1 +fuck you dom,1 +*watches than throws up* Man that's was sick as fuck! A glass jar?!?,1 +THINK??? You THINK they are gay??? REALLY???? Have you watched the show???? and you THINK????,1 +just use water loser.,1 +don't fuck with Fiat,1 +oh well yeah I hate the elderly too.,1 +I don't care about leakage. Fuck the person sitting next to me in coach. (actually I do care),1 +I hate to point this out but didn't you call Death Race awesome? DR will make my bottom 10 list w/o a doubt.,1 +you are GAY!!!!!,1 +DOG... ONE OF THEM WILL SOON CATCH YOU SLIPPING! THEY'LL PULL A GEORGE CASTANZA ON YOUR ASS THEN NEXT THING YOU KNOW UR MARIED,1 +way to fuck up a perfect opportunity to call yourself Z-Co!!!!,1 +i've yet to be impressed with anything from his mouth. He was pissed I wouldn't drive from coweta to pick his drunk ass up,1 +the fuck shit is this? people died for less. lol,1 +am deleting all that bell-end Pineapples comments - so he keeps posting more. Cunt.,1 +thanks the nerd in me is overjoyed,1 +want me to cut a bitch for ya?,1 +it totally sucks!!! i had to call the stores with the fraudulent charges filed a police report sign a notarized affidavit,1 +shut your ass up I did....they got me though,1 +don't hate pussy ass nigga....u suck dick n balls n ur on the bottom of the MSFB list,1 +leave u with this....at least my dick still on my body unlike your stacy bump STD ass,1 +omg srsy?? I loved ami kat would always piss me off. She was always mad for no reason.,1 +aww that's awful!! XD I loved the art and watching them all freak out. I hated the asian dude he was a dmbass.,1 +wow emo... Ik ben benieuwd...,1 +There are two types of people in the world: those using "lol" ironically and those that are fucking twats who deserve to die.,1 +A Snuggie to be burned? What kind of sick traditional blanket-loving freak are you?,1 +Because "Oh for fuck's sake!" has so much more impact. And our generation likes to offend old people as deeply as possible.,1 +And you didn't even make it a dick joke? I feel like I don't know you.,1 +katrinaneufeld Does a French whore smell better or worse than ur down home Blackstone variety?,1 +Fuck you! Learn to surf NA!,1 +Online nakedness amuses me. 'Oh my god he has nipples! And skin! He's a freak!'.,1 +damn...wish I knew how to write script. I just did 9 and have 7 more to upgrade.,1 +i dont care if its him or his ppl ... i care if its authorized or a poser squatting,1 +I wanna butt fuck you. Cuz im a horny gremlin,1 +Keep your damn hands off my @jgarber. We claimed him first!,1 +He can be a nice guy but he is such a dick when it comes to fabsubbing that it is ridiculous.,1 +I'm going to watch him kick Count Adamar's ass and then it's off to feed the beast.,1 +how so? It's more reasonable cause of the smaller age difference...plus Mikey's always sex deprived so he's a fucking animal.,1 +I hate you.,1 +Way to be a dick.,1 +I'm giving you fair warning to hate; high of 73 on wednesday 78 on thurs,1 +bitch ass hot sounds pretty crappy.,1 +it's called shitty ass fuck shit sir,1 +how about "bitchling pig suckas!",1 +DEAD ASS?!?!?!?!?!,1 +What shall we call this gang? Initiation rights must begin with downing a Fail Whale.,1 +Yeah those same ugly guys that do gay-for-pay. That's why I demand hot girl on girl action in my porn. Oh oh. Yeah.,1 +What a fab site! I didn't see the cozy *snort* but I want the mermaid gloves! Damn I wish I'd paid attention to my Nana... xxx ooo,1 +GOD. You HATE US don't you George?! ::runs away crying::,1 +& @kmellon: I'm 500 pages in AND at the day job. Eat that dick.,1 +motherfucker stop drinking Red Bull ADDICT! watch ulcers eat at your stomach lining bitch!,1 +pffft you mean maybe you'll suck ass for her,1 +are you off bitch? I want BM it's my best friend! Damn it....hey don't forget FullMoon Getogether tonight,1 +Blow it out your rank ass cunt face cock-choking bonsai whore beast. LET IT SNOW LET IT SNOW LETITSNOW.,1 +you seem like a hater. or maybe you do it to piss people off. either way fact is always good.,1 +HUJIKHJKUILJKKJ Lmaoooooo. I cannot stand y'all asian ass ho's.,1 +whats wrong with a monkey fuck? Lol i got my zippo fueled so no need of monkey fucks now lol,1 +UR a Chicken Cyber Punk! When a French Man came to kick your Ass U put your Hands in your pockets and Cry like a Pussy! LMAO,1 +FAT WHALE U still Floating Did not SINK Yet?,1 +don't be all emo like that xD.,1 +LOL! The out-of-town revelers are arriving early for NYE...Damn tourists,1 +why would u say fat people are dumb?,1 +damn I wish it was 1 here so my day would almost be over; btw that Wiley track is my fucking anthem...good looks,1 +I AM SO UPSET RIGHT NOW IRL GODDAMN YOU. I AM KEEPING HIM TIED TO THE BED AT NIGHT FROM NOW ON FUCK YOU AND DAVROS.,1 +damn homie where did you get that stat??,1 +if you were black that last one would be so damn racist,1 +fuck you dude. it is more than amazing.,1 +oh word? Back to the old photo? You green ass backdrop mother fucker!,1 +"""If you not on twitter you're a fucking moron"" I agree",1 +I will cut you in the mouth bitch!,1 +I'm a shoe slut; Gee's a jacket slut; we're just all a bunch of sluts xD,1 +he's a total loser spending his last howard stern money on internet sex,1 +whos? ima slap the bitch.,1 +too late I am skipping town bitch! (gets on express train),1 +Bey going to get her ass whipped!,1 +mate u know there are french umbracians out there cg09 u may get ur ass whupped :-},1 +are you just acting like a dick now?,1 +bitch you wish.,1 +you left me for a slut named kasumi.,1 +WTF! Why did you not pick up your phone yet a mother fuckin gain! Are you trying to tell me something? I called you twice damn it,1 +Fuck them!,1 +You ruin fucking everything.,1 +hehe "fucking shift" ... never heard of it in six months..... u get to fuck in da shift?,1 +i used to have night shift @ IBM..... but alas without fucking.....,1 +Finally made it out.I hate being a procrastinator.,1 +dam..she cold and she cold in live..by any means necessary you gotta do what you gotta do except for hate of course..lol,1 +i really hate that song but thats like equivalent to "fuck them other niggas" to the 40 and up crowd,1 +i give up fuck aim. ill ttyl.,1 +Fuck off naturally as opposed to artificially?,1 +nigga fuck put a Lil gin in it a drink dat shit son fuck 08,1 +Dam Right. Fuck em,1 +fucking stupid chat people are fucking idiots! Read what I said so I don't have to repeat myself five fucking times!,1 +I'M THE JUGGERNAUT BITCH!,1 +yooozers 20 442 damn homie!!!,1 + apologizing for overactive hormones SUCKS.,1 +Ya know you can take full credit for memeing @evo_terra's cock-measuring fetish. I won't argue.,1 +I brought Prussia back bitch.,1 +dude.. That idea is upgrade as fuck. (btw my phone finally added "fuck" to the vocab list.. THAT is upgrade as fuck.),1 +I hate the fucking CTA. Fuckin' idiots.,1 +QuantumOfSuck is a wannabe Transporter 3...,1 +haha nah he didn't do anything I was talking about guys in general particularly a guy friend though and he was being a dick to ...,1 +awz cum ova,1 +You did not come off as a bitch. At least you definitely weren't as bitchy as I thought I was being. I've gotten upset now too,1 +argh fucking motherfuckers!!!!='(((( I can't believe it dude the place is legendary...how dare they..,1 +yuck... that is going to take a long ass time...,1 +shut the fuck up LOL. I wanted to take a pic so bad but it would have been obvious. My mom wanted the hat. I just tried it on haha,1 +my trainer likes to play games when I'm on the treadmill. He'll move the speed up and down up and down just to fuck with me,1 +LOL well it's funny as hell they got two fat asses trying to fit threw some small holes.,1 +big mistake. we gotta even it out. who da fuck else is in!,1 +shut ur ass up! u woulda been wondering the same thing lol. done rehearsing 4da night & planning 2knock out...right about.....now,1 +shut ur bitch ass up! OBVIOUSLY its not the same but its not like her name is spelt out as Eveyln dumbass.,1 +YOUR A WHORE!,1 +@petie_martin...shondor shabbos that's what...shut the fuck up donnie,1 +Hell I'm upset they allow him to get near a fucking camcorder let alone direct anything. He'd fuck up a 3rd grade play.,1 + i can see the revolting illegal avatar now :) tempted to make my pussy misbehave in sympathy,1 +fuck that!,1 +he is a HUGE POSER! I want Toyboy back!,1 +YAY OR NAY OR GAY?,1 +a pussy snow,1 +epic fail meaning it sucks? Hopefully,1 +wat a fag....,1 +wat a fag....,1 + pig 100% pig,1 +how did you meet dad BITCH!,1 +do you use the term fuck on a stick,1 +DAMN I wish I wasn't in college!,1 +This holiday is to celebrate a man nailed to a board. I want you to be MERRY about it. Why are you crying? DON"T FUCKING CRY!,1 +Yeah me too. If this damn twitter wasn't around I'd be much more productive.,1 +damn iPhone keyboard. I find it astonishing that even in this era of social networking you can still be alone on a crowd,1 +last nights Top Gear had V8 powered rocking chair = Fail. And Jeremy is gay.,1 +sadly true - mens lifestyle walks a fine line between britneys bits and articles about pectoral development for gay guys...,1 +Why would gay marriage "change the basic structures" of your family life? It neither picks your pocket not breaks your leg,1 +Would it piss off Bill O'Reilly if I wished you a Merry Xmas and Happy Holidays? I'm willing to give it a shot!,1 +i was excited about seeing that until i remembered itv have the fa cup rights. god i hate itv,1 +Yeah... sucks.. But yo I tried to go to your webpage link but it dont work? And wut school u go to? Howard?,1 +- hahaha .. you're silly! but dayum it's 10:22AM and i'm still kinda limping from my hip hurting THAT badly .. it sucks!,1 +i know you got some bama ass shit on your ipod somewhere... some Pastor Troy or something lol.,1 +It is totally rad I assure you. But being a loser with no life outside the internet few people ought to see you in it. ^__^,1 +Wow that sucks!,1 +cool. But that fireplace looks totaly gay.,1 +What!? Oh that sucks!,1 +I hate that just finished round 4 of rough revisions for a client... can't they just be clear and concise at the get go?,1 +How would they define failure anyway? People giving up and going back to reruns of The Biggest Loser?,1 +I ran a 300 customer hosting company for years on Apache. I know how to set it up. It still sucks ass.,1 +the early word is the spirit sucks... hard. i'm a big fan of the eisner comics but frank miller's take looks a little... meh.,1 +damn that's fucked up Hawthorne is out of the way,1 +And boycott that fucking bar if they don't carry it!,1 +ugh fuck the chargers!,1 +haha that's ghey. Tell them it sucks balls and they need a real designer.,1 +Well good god damn.,1 +i hate when i miss mac chats! grrr,1 +there should be pictures of him at fucking otaku's cosplay section,1 +all i heard for the last 2 hours was WHORE WHORE WHORE SLUT WHORE WHORE OH MY GOD WHORE WHORE,1 +I heard it sucks... What do you think so far?,1 +All those people who hate Hillary are the same ones who voted for her husband and loved her before Obama. Just seems strange.,1 +enjoyed reading your article ! shame I have such a bitch for a boss ;-),1 +you dear sister are a freak. this heat sucks.,1 +I hate that entire area of new york.,1 +I've been getting a lot of that Which sucks cause I really need a job.I did get a random check from an old job for 100$ today though,1 +aye it sucks when you end up in that situation where you don't know what to do book learnin' is anti fucked. imo.,1 +bitch you love me!,1 +bitch better save me one!,1 +OKAY... HE'S GAY ;),1 +Damn. Didn't see that one coming. I must be getting old. <3 U 2 btw.,1 +beast my pussy bitch. LMAO...that's creepy.,1 +follow me you jackass. i hate you sometimes.,1 +ahh damn it: Action 12.1.5.0 of Microsoft.SharePoint.Upgrade.SPSearchDatabaseSequence failed. and i didn't snap shot my VM DOH!,1 +dude that sucks. On NYE nonetheless. Got a sore throat myself hoping it's not strep. :-(,1 +I remember when being snippy just meant I was trying to piss someone off... am I showing my age? :),1 +pls do....i was gon call molly maids up in this piece. i hate cleanin with a passion so early spring cleanin is some mf'in bull,1 +hotel town whore is in the bed riding ol boy that treated her like shit and the freaky cop walks in the room,1 +awww damn yeah....that really sucks!,1 +lmao damn! thats all I can muster...,1 +stop hating on the tube...its this damn censorship thats pissing me off more,1 +bitch was craaaaaaaazzzzzzzzzzy!,1 +Cuz u wanna fuck ricky martin,1 +nasty ass bishes,1 +u in a good mood souljaboy why u in a good mood oh n i luv ur new song 'damn ' like it hit me bac,1 +id die if he was super antsy i wanna request vacation and know when my shows r damn it first series anyway,1 +I hate you .. why can't I go to Vegas ?,1 +Ech! LOL....if it was me I would wash the sweats at least twice...then again I hate bugs!,1 +is het -5?! fuck..,1 +THANK YOU! Beautifully worded. I'm so fucking sick of people just hating for hating. Everyone think they're so deep these days.,1 +now who's the fucking hipster?As if you not dig Kanye! @dianor heyyy how you doin' @noarmsjames the man has great beats+lyrics,1 +they don't use Euros yet? damn lol,1 +It could be pig's lips from a garbage bag! Perk up buttercup!,1 +if you actually are a vicious ass koala bear better to find out now than later. or else you might get confused.,1 +Considering half of my fucking company has been laid off this morning "MY BAD DAWG" might be appropriate,1 +this job would be great if it wasnt for the fucking customers,1 +HOLY FUCKING SHIT!!!!!!!!!!,1 +I hate having to work ALL the time :),1 +I would have laughed so damn hard.,1 +Damn! I need 2 get my pole game where that chicks is....um but 1st Ima need SOME pole game 2 start with! LMAO!,1 + i kicked ur ass on balloono A.K.A the bommer man thing i was lameguest(bunch of numbers),1 +aww damn now u know how much your Christmas present was *sobs*,1 +I like some of the features it has over Twitteriffic. But it takes up way too much screen real estate. And AIR sucks.,1 +fuck... lemme know if you'd like to work at criagslist,1 +and leave ur ass hardly call until they want to re up on your ass. Sometimes they dont even stay 15 min & out!,1 +ditto bitch!,1 +Fuck mod_Ella.....http://tinyurl.com/5hdbje,1 +who are you? oh uhmmmm HAPPY BIRTHDAY YOU FRENCH WHORE! @ClarissssssA Bed time last time im telling you <33333333 gots thats ...,1 +I read WP as WordPress but damn that is hilarious.,1 +Ah so it was tough to hear about over and over... That sucks man. Sure its been tough.,1 +um coz you're awesome? and on another note...yo gabba gabba is fucking disturbing,1 +*giggles and cuddles* Its some kids show...that is disturbing as FUCK.,1 +Isn't any way you file taxes the gay way?,1 +My problem is that bankers and investors have taken risks regardless of being told how bad things could fuck up.,1 +thx for the well wishes lisa! i hate taking meds so i'm all for fast healing:),1 +and that makes you feel like "lifes a bitch"... well in my opinion anyway :P,1 +and cant expect too much he was recording til 2wks ago!! too damn shame when ppl just rush to make an album these days!,1 +I'M SO SORRY IF YOU THINK MY TRACKSUIT IS GAY. VICTORY. VENGEANCE. FOR MY STONE CHAMBER AND MY SWORD. MY SWOOOOOOORD!1,1 +Ugh. Probably the same brain-deficient retard who stole my name on Youtube Gaia and all the faggy sites. How old is she?,1 +lenee that bo*o ass incense you gave me smells like an episcopalian funeral. lol! choked out saturday night etc.,1 +Be prepared for Toro to be a comple ass...,1 +Fukin sun's blinding.... Reflecting off my damn phone screen,1 +jealous! I will still hug u lick ur face off grab ur ass and dry hump u a little bit when I c u. Whatever!,1 +((((((((((HUGS)))))))))) I love you tons and life totally sucks right now! I'm in it with you! LOL! xoxo Karen,1 +HAIR PRODUCTS? I hear Hair Products?? lol i hear your getting beat up us girls do stick together...against them bad ass boys,1 +hey you know wat wud b funny? to find out who started tht lil cheap ass lie tht if u roll ur eyez they'll get stuck like tht! rndm,1 +damn your Jedi mind tricks!,1 +lol at zach telling us google is evil and the translator on msn is fucking prime.,1 +If you guys are having the problem that pages aren't fucking loading then I'm having the same problems too.,1 +drawing a blank... damn! will have to watch it again now... oh well...,1 +the only thing I hate about Nikon is the dumb Ashton Kutcher ads they run.,1 +be careful! Hood pigeons don't give a FUCK and pack heat! I've been robbed by them on countless occasions!,1 +you smell like the insides of a beluga whale's forehead,1 +dude so weird i feel like good will stole one of my best friends too Damn the man,1 +makes you feel cheap doesn't it. I hate that clients use these things...,1 +that sucks. I do both at my work which is a pain the rear-end too because everyone thinks they're designers ;),1 +damn work fire wall. can't go to myspace. :(,1 +that sucks that the internet is being twitchy. Hope it works soon. :(,1 +yeah. subconscious sucks sometimes. always telling me what I'm doing is wrong. Most of the time it's not. :),1 +man that sucks. need any more balls kicked? i'll do it!,1 +ah damn man! Good Luck!! You can do eeeeit!!!,1 +Yvonne that's a french ass name Yvonne. My little cwasont .,1 +I still think you should be prouder of the "Fuck fuck fuck!" but "Rock!" is pretty good. When will you be teaching her "FUCK YEAH"?,1 +Damn tough call but I'd have to say toddlers.,1 +I'm at a high school that I fucken hate. I can't stand these people but my sister has a concert thing so I have to be here,1 +oh no!! that sucks!,1 +oh bugger at car screaming.. that sucks.... glad to hear the rest was all good,1 +Who would be ur premiere Ultimate Dumb Ass?,1 +except now they have his crazy ass son to deal with probably.,1 +oh! I saw the ex earlier. Asked if I "fancied a fuck" before he left the hospital. I politely declined.,1 +we all fucking know better.,1 +haha cunt.,1 +I hate him.,1 +damn your phone....SEVEn SEEEVEEEENNN,1 +I especially hate it when they make me lift up my feet to sweep under my desk. Sigh.,1 +it sounded a lot like that actually. Fucking Hagrid.,1 +you ass. Yay Walmart!,1 +Definitely. I hate crowds. Angry out of control crowds. I would rather have a root canal (and I've hd one or two),1 +damn -- http://tinyurl.com/7b7nze,1 +that's why I throw a hard ice grill at him...no words...get the ticket and get the fuck out cause I've never had luck,1 +Fuck you Ian I know you're using a joke book!,1 +Honey we all hate long division. Look for things to hate that make your personal hate list special and distinctive.,1 +whaaaaat! Who the fuck??,1 +Not really. Atlantis was okay. Old Star Gate on now. Was about to watch Numbers. Might do Sudoku instead unless u ready u fuck :),1 +I meant ready 2 fuck:) lol Hope u have something wild and freaky in mind. I'm bored :),1 +My pussy remembers what u do! Lol :),1 + NO NO NO NO NO I HATE YOU.,1 +yep...that whole damn mixtape gets me hype lol,1 +Damn Girl! Aww that'll be cake at the rate YOU are chalking them up. Nice seasonal pic and awesome tweets btw.,1 +you're assuming they can presently afford them? leverage is a bitch.,1 +please get the fuck out of my house,1 +damn missing coffeeclub again. And this time really could have used a coffee ;-),1 +*looks at who is following me on twitter then remembers i dont care* OMG such a fag.,1 +if i get scared ill be sure to throw u in the way so u shiver in terror and piss ur pants like u already did,1 +bahahaha i love you. and ugh i wish i was on my way to va with @heyheatherr fuck the weatherr.,1 +they look SO dumb. and omg i hate cassidee. ugh. just ask @applicantjan LOL ;),1 +You're a pig you have a curly tail for crying out loud!!! And you dare laugh at mine???,1 +Welkom ! Dat Apple freak deed me besluiten je maar te volgen :),1 +too right XD Gordon Brown can officially kiss my ass! Freak!,1 +:( PS3's are fantastic devices. Kicks XBOX's ass :D,1 +that SUCKS.,1 +holy jebus yes. that'll do just fine. fuck I love twitter. free chicken!,1 +DAMN tootin'? Seriously? I've heard DARN tootin' and even DERN tootin' but not DAMN tootin'! you kicked it up a notch.,1 +that sucks;{,1 +i still feel bad. I woke up at 2 am and was like fuck! Then i saw that carly called,1 +makes sense and glad that it's shifting (even if geologic). hate that kind of snobbery.,1 +Charisma Carpenter is a CUNT. I also told her.,1 +Damn straight I am! I want to be 50ft! I also want to play Barbarella. I'd be much better than Rose McGowan.,1 +Oh no. I hate that!,1 +you said "sucks" and I said why does it suck? LOL,1 +I'm 1/2 with that as a Realtor my other 7/8ths would like 2 C stimulus 4 the housing market. Damn'd if you do Damn'd...,1 +Time's running out for them. The Cboys will pull it off. Looks damn cold.,1 +Pretenders come to mind! Damn.,1 +I thought the same thing he should have just hauled ass.,1 +lmao a grown ass man having brunch is even gaaaaayer!,1 +I just read ass pet a cat. Adam...that's just wrong. :P,1 +....i make an ass out of my self * sad blushy face*,1 +aww that sucks man. you've learned a lesson for your kids... leave'em in the cold or spare key under the poinsetta pot,1 +try fuck.,1 +nigga I'm DYING over here reading this sweeney interview. "anybody that aint me is a bitch". CLASSIC,1 +Well damn that means you working wit something! Lol..,1 +LOL- I know how much u hate traffic- just know it was 10 times worse last night :),1 +fashion parade. (damn sneaky mousepad enter key thing.),1 +Damn it how do you ALWAYS post the cool links first? :-) (Catching up on today's tweets.),1 +I HATE that. I have a rhomboid almost triangular 'washcloth' from learning bark sedge stitch. I use it to scrub the bathroom.,1 +I haven't started mine yet and don't know that it's happening. I'm a card freak though so probably I will send something.,1 +bad mood. i think its bedtime. i hate alcohol it ruins everything. :( hey what u doin 2night? x,1 +But surely i need to improve on the digestive front. Ain't any fat panda :P,1 +damn I can't believe all that happen to her hair. I always thought it was simple 2 straighten natural hair,1 +ham stands 4 hot ass mess,1 +yeah tneezy gonna hate it... @tneezy sorry boo u 1 day late!,1 +- Do you HATE Cleo!? Let her win for once you're breaking my heart! ;),1 +- More DnD podcasts!? Fuck YEAH!,1 +you dont need a big fat spirit animal to be embarassed...,1 +http://twitpic.com/py9p - HER ass is on top,1 +http://twitpic.com/pyb6 - is a very naughty panda always has her ass up in the air.,1 +I iz calm now - cept I can't figure out how to properly edit my wordpress templates. NERD ALERT NERD ALERT.,1 +DM. damn.,1 +ignorance is my guess - but this could very well turn into a nerd rant - and that would get @amberto all worked up,1 +Predictability Sucks! WHUUP! (not being predictable) Kev,1 +I HATE IT when that happens! Usually when I'm in a hurry :-/,1 +Damn I also like Ferrero Rocher dark chocolate version. They induce the zits on my chin :'(,1 +Thanks! I'm not familiar w/ the "nerd heard" language. You should add #NH so I can say #WUW #NH @craigsanaotmy!,1 +btw sir you are a ASS ty nuf said,1 +been here more then a hour just to get my vegas shit back damn slow service shiat,1 +45 windows and only 12 open and about 30 people on break I mean I want 23 a hour to do not a damn thing,1 +1) i can't stop laughing at how's the meows sound like cat o-face screams. 2) ugh so bummed i missed out. another gay? (:,1 +the boy i'm talking to is a ravens fan. every time he ends a text with "fucking bitches " i can assume that they're losing.,1 +Haha no I mean that I love the money & my coworkers but hate how much time the jobs take up. It is fun to hate them though.,1 +and i look emo too cause i'm wearing like all black and shit and my chains are hanging out XD i need guyliner,1 +i had eyeliner on once but it kept smearing cause i'd fuck with it too much,1 +Damn dog didnt call them like I said to? Well I is working till around 9ish,1 +How the hell do we get in these money situations? Sometimes I just feel like saying fuck it and have them come for my car.,1 +Like Zebra man said in rock n roll parking lot. LIFE SUCKS SHIT!,1 +Way to go loser how does it feel to be an inanimate objects bitch? Must feel terrible to NEED something to be normal. Shame on you!,1 +Maybe I would have to stare at your face for awhile while I do it that would be gay..and weird...and creepy...sort of,1 +I want to see a picture of you right before you decided to shave your head. That would kick ass especially if you are crying.,1 +well clean the damn floor!,1 +I have news 4 you this whole month is going 2 suck ass I hope u like banquets n ramen cause thats whats on the menu this month :(,1 +gahhhhhh....I hate them. HATE THEM. They come in on the pipes and through the heating vents to keep warm. BOOOOO.,1 +I've never seen Wall-e. Yes it's a hole I know but that doesn't mean you're not a huge nerd.,1 +That sucks. But what kind of parent buys a toy because it's HOT? What about the kids' personality and taste?,1 +Hey don't hate on NC. They got bought out by PNC and alot of people are losing their jobs. Cleveland has a sad face...,1 +http://tinyurl.com/6dunlq hate me for it later but it's not bad,1 +HAHA that did brighten my day considerably. How about on the one day of Christmas my broke ass got my gf gift cert to Chili's,1 +damn I'm moving south. Cleveland has it for 1.69/gal,1 +- Damn... now I'm bummed I missed... I'll be at the next one fo sheez...,1 + hmm didnt even know they existed...no wonder i feel like a complete retard when i cut stuff with a scissor,1 +Laser treatment for pimples? Meh. Metrosexual a.k.a gay pride! Hahaha!,1 +damn oh if only he could fly he could take me to his gaff(house) then,1 +Wow u in love wit her? U gay 4 her?,1 +no im definately a bigger nerd than you.,1 +you are sucha nerd! Love it!!! V(^_^) haha,1 +if I ever fall alseep with them on I wake up with the off. Hate them.,1 +? Text me bitch!!! :),1 +People are so fucking pathetic. CHILDREN! Ughh~,1 +that's ri god damn dick ulouse! Tasty though. Haha,1 +that sucks :(,1 +psh bitch I'm at work running 2 trains with a 70 minute wait stupid kids and dumber parents I don't wanna hear it,1 +it's cos we're old now. sucks.,1 + ....you gone wind up fucking her (is that what u wanna do shawty),1 +yeah fuck it kill um all!,1 +!!!!!!!!!!! FUCK YEAH YOU DID. <3 <3 <3,1 +you know fuck it I'm doing "Jew-Boy money",1 +you know what fuck it I'm doing "Jew-Boy money",1 +Love You Man Not in Gay Way or Anything :),1 +I love you the way @MattBacak loves me not in a gay way or anything :),1 +I'm all about peace n positivity but sometimes you gotta give a little kid an ass whoopin' !,1 +yo why u always tweetin' about boy problems ?? Fuck nikkas get money stay focused son!!! I know you a Hustla & Hard worker!!,1 +trust me dog I dont even FOCUS on females I'm so focused I got NO time for these broads the opposite sex will fuck a persons head up,1 +that's what I was JUST tellin' myself !! Hahaha I said "Fuck it Kel just DO IT and get it DONE !!" But I complain the whole way,1 +These fuckin FOOLISH ass atheletes !!! 35 mill down the drain not to mention a great Giants season..WHY ?!?!?!?!,1 +because like everything you do its ASS Backwards !!!!,1 +I have no idea why I live here. It sucks in the winter.,1 +I hate you sometimes. lol,1 +I don't hate you all the time. Just sometimes. Not enough to unfollow and block you. lol,1 +so do I! But its the task of getting off my ass and going to get it. Gahh,1 +YES!! she'll call me and be like get your ass out of bed and then she'll name a list of bs for me to do,1 + OMG that sucks! D:,1 +Devil's AssMartini on Scottsdale and Gay I mean Shea,1 +i hate this this sucks butthole im so mad im pissed i told that person not to tell,1 +I guess everything's alright but I hate this still.,1 +yikes. That sucks. Sorry to hear that.,1 +Haha damn him indeed,1 +Long enough to know you're an ass! You could see that jellyfish shit coming though..,1 +I get your tweets on my phone and my ass was just vibrating like crazy lmao,1 +ah sucks maybe Redcliffe then I guess it depends on what time I get up tomorrow haha,1 +that sucks :-(,1 +that really sucks :-( I could have recommended you an amazing chiropractor!,1 +less drugz mo sleep bitch!,1 +@Kimber_Regator You guys are in the same fucking house and using twitter to talk.,1 +I fucking hate Rachel Ray.,1 +I haven't been online all day whore. Trust me... one post from me is going to be more than you want at your house.,1 +i hate hate hate being snowed in! (how's that for a sum up?),1 +damn! you packin heat!,1 +thanks sugar i get a little sensitive here and there. damn holidaze!,1 +i quit heroes. nathan is a fucking douche.,1 +careful soy joy will give you bitch tits!,1 +jacob sucks i hate the werewolves im with the vampires GRR,1 +I blame Alexx for making me put 'I love to say fuck' on my ipod,1 +I am slighty mad at perry. he can lick me ass!!!! loll,1 +can you help clue me in on how to connect all facebook etc? thanks for coming last nite hope you didnt hate it lol,1 +That's a damn shame because they don't do veggie burgers. :),1 +THAT WAS THE MOST MOST BEAUTIFUL CHRISTMAS CARD I HAVE EVER RECEIVED. I MEAN DAMN. 80,1 +omg who sent you a fuck you letter??,1 +Does he have favorite characters? I'd hate to get him the guy he hates :),1 +That sucks... Can you use it on your iphone?,1 +I know - I really wanted to go to the show - but I gotta be responsible. I was in class w/all the idiots. I hate them all!,1 +Know how you don't smell perfume you use a lot after a while? Same phenomenon w/stink. How else can you explain pig farmers?,1 +can I have some? pizza in NC sucks :),1 +yea school sucks sometimes. thanks bro figured id mess around on here to waste some more time from studyin ha,1 +Ummm...was that our little brother's ass? And you dare judge me?,1 +The dam @chilis? Is this like the pig under your tree? Have you cracked open the chard already?,1 +YES ROCK BAND! Only it hasn't come yet fucking postman. Totnes was brietastic.,1 +FUCK YEAH!,1 +yr gay voice =],1 +Oh it's pretty much public knowledge that I hate shaving my legs. Or at least it is now.,1 +Stop getting so damn skinny and maybe your pants will fit! =P,1 +wow that is damn ridiculous. I think i will be crossing off dubai for places to visit.,1 +Lulz. OK. Internet Explorer sucks.,1 +@bagntrash everyone kind of just disappeared after the food I'm not leaving it there for some jelly-bean givin jack ass to take!,1 +I'm just gonna start the emo kids who pretend-to-cut themselves clique. I can be found in the library playing WoW if you need me.,1 +mussels? or muscles. Damn web-people.,1 +BOOO!!! We missed out on date night. I hate the Tinder Box.,1 +I still hate the Tinder Box... It hinders our couple social circle. Thank God the holidays are almost over.,1 +Frat boys think "good game" afterward means they aren't gay. Doesn't make 'em str8!,1 +~ wholeheartedly agree that NYE music entertainment sucks!,1 +yo fuck that dude 4 realz!!! it was allz cuz u me "animal" & "marc delicious" were so stupid-ass-rodimus prime fantabibulous!,1 +Marc got home ok...but said he might've fuckied his rim up. I told his ass the pierogies & sausage wwere gonna knock him out....,1 +u know it was over $1200 2 get that bar replaced. George is gonna take that outta thier ass LOL,1 +checked out the link. Holy ass...i think that fairy had seen that vid a million times cuz he was damn close! LOL,1 +dude that kind of sucks.,1 +pimping your blog again but damn funny. specially including Connex,1 +I can't help that you keep looking for gay midget porn on YT. The volume is too loud for you but I like blaring my Celine Deon.,1 +holy shit I'm not even taking that class and I hate it !,1 +my lungs are fine but my legs are like "bitch your ass is heavy !! let's stop !".,1 +that sucks man...,1 +You are a Linux whore!,1 +you must REALLY hate Christmas then!,1 +I listen to a lot of really weird music and I hate most of what's on the radio so it's not really for me.,1 +I have both now. iPhone camera sucks as well as lack of other things but email twitter and apps are good. Big screen is nice.,1 +you can do video after jailbreak. But still it's not a patch on the n95 camera. I really hate the iPhone cam.No settings at all!,1 +Watching the Biggest Loser. I'm amazed by weight gain or weight loss.These people are losing 5 10 20 30 lbs in one week.Amazing,1 +I don't hate you. My last partner was 130 lbs and I got him up to 165 lbs of solid muscle. I hated him 4 looking better than me,1 +I hate to keep sending this link.. but you never got back at me.... Whats good.. http://tinyurl.com/6xmnyr,1 +gotta hate those fake posers,1 +I hate insomnia too. NyQuil works ok. Excedrin PM probably better.,1 +@maddow. where is that big gay planet? can I go there now please? someone please fucking segregate me off this rock.,1 +No. Being "down" 5lbs is a bad thing when you're a scrawny nerd who's trying to bulk up. :),1 +Hahaha Testosterone Man!!! I met Mega Bitch Soccer Mom the other day. She took the time to stop honk her horn & flip me off,1 +i forgot about the clothes haa. i cant wait to get my ass in2 my skinnys! :) i belive im also getting 2 pairs of pjs. scorreeee!! :L,1 +it's emo because you used a razor. An explained joke isn't funny. :(,1 +It sucks!!! My kitty (adopted alley cat) only knows how to potty outside so I was freezing my arse off trying to get it in. LOL,1 +WOW what a loser. I hope seth has some good male role models in his life.,1 +I spent all last week with that damn song in my head. :),1 +what an ass - who the hell says things like that. I'd report the fucker,1 +True! I hate people who're full of themself! That's one of the reason i love mcr they're humble and down to earth...,1 +WHATTTTT O________O omg.....nahhhh i hate roller coaster and im extremely scared by this shoot......,1 +LOOK @ UR TEXTS OR I'M GONNA FREAK OUT @ U!!!,1 +Funny that the guy's last name is Dick...bwaha! :-D,1 +unfortunately i do =( it sucks! & i have my 2 last finals 2mrrw bc we had a snow day that other friday. i dont wanna go back!,1 +i hate school =(,1 +OOGA BOOGA FOOCHA FUCK YOUR WHOLE DAY!!!!!!!!,1 +Oh sad faces :( I hate it when that happens! Reading in bed usually helps me...,1 +that sucks!,1 +& @lasandwich I hate calculus... :(,1 +what a loser. :P,1 +1) it depends on how u come at me. 2) if my 1st impression of you sucks I prob won't be so warm & bubbly. I'm mean though.,1 +He's passed out in my bathtub. Only way I could restrain him: knocking his ass out and leaving him in the dark. :1,1 +Naw. I gave him tomorrow off. Fuck my carpet's a mess.,1 +Wow that sucks - work at home day? @PrincessErsatz - I couldn't agree more - good day to be under the covers relaxing.,1 +That sucks.. Stuff working yet?,1 +damn man kn frnd e,1 +damn man kobaa e ??? :O,1 +u stll up drinking bitch?,1 +damn. lol. let me try something else. hot lesbian sex. nekked girl on girl. free porn.,1 +haha. it just bugs me. because posers like her make it harder for people that truely are gay to be accepted,1 +damn right it wi be!,1 +damn that store! ~*Krystle*~,1 +you order pizza that much they have you on speed dial. damn.,1 +THANK YOU! It's not just me. Gay guys are hot as hell.,1 +yeah it sucks. 6 yrs down here & realizing we dont get snow. just ice. and nobody can drive in rain let alone ice,1 +then ur game sucks. no crue not buying it.,1 +or maybe go see bolt tonight? or both? don't know if you're busy for white whale stuff... but it's my bday. let's celebrate,1 +sam are you showing in 'in sequence' at white whale on friday night? I wasn't sure... since you'll be out of town for the opening ,1 +Sucks 4 you!!!!!! Your just not a lucky ducky are you? First your phone now this!,1 +Alan I think you might as well give my spot away to someone else. I'm just too damn sick to sound like my charity is good. :'(,1 +i literally could not breathe. that was so fucking scary.,1 +Not to me :/ damn though. i hate being sick.,1 +I hate my life haha,1 +P33T WIFF HIS BIG GAY TEEFS!!! BRYCE FROM TRS AND HIM SHOULD HAVE BABIES AND THEY'D HAVE AMASING TEEFS,1 +Yes but if your senses are dulled mebbe you no bitch so much? Or you should find a good human who's blood you wanna eat,1 +ps...ur cute...ur good looking your funny your a dick your an ass your cynical. I LOVE IT!,1 +damn! Ok look make the stripper pole look like a knitting needle and impale a stripper granny on it. That's the only way.,1 +no it was a direct Church of Why Don't You Bloody Well Piss Off,1 +of course @bapper is cold..he eats picked radishes all winter..if he had some whale meat he'd be fine..,1 +damn that caller ID,1 +yes. sacto cali- driving back to palo alto later tonite. eventually i'll get off my ass n shoot.,1 +oh lol gotcha... well i'm a fruit freak. i don't like melons strawberries the list goes on.. one day in heaven i'll like it all,1 +lol no no.. we will kick the pig... (kick this thing off do it get r' done etc.),1 +damn your hardcore! My legs are complaining from the simple long walk I went on yesterday. I've neglected them over the winter!,1 +It is amazing! But it kinda sucks when it makes you late for work lol.,1 +burritoville is dead? What the fuck?!,1 +me too. So entertaining. Dude you watch this mvie called trailor parl of terror. Fucking brilliant.,1 +aw that sucks.,1 +How does he feel about marmite? Love It or Hate It?,1 +ROTFLMAOOOOOOO WOW...Cumleone? Cum Alone? Oh sorry...thats funny though.,1 +why does eueryone hate american eagle? wat happened?,1 + yeah it sucks i know she was one spankin hot mofo,1 +Now I have to try my best to get my ass blocked by @souplantation.,1 +Wow what a fine uke. It's tempting but I want my charango with 10 strings and damn near impossible to play.,1 +got to love a good sunset... I just hate this time of year leaving work and it's already dark outside :(,1 +bojangles? damn you! so jealous.,1 +Whatever... I just hate how the popularity of bands seems to inversely affect how much people are allowed to like them,1 +Lazy ass :),1 +Ugh the bane of my existence. Hate them.,1 +damn you for getting the comics up early again o_o it gives me nothing to do before school in the morning D:,1 +wow i looked at the tinyurl of Barack Obama that you put up.... I am disgusted too that such revolting hate is so prevalent..,1 +yet fear seems like a cop out too i eat my words...Hate is ugly,1 +Connection interrupted. God damn.,1 +fuck the krebs cycle.,1 +like you build a tolerance to drugs don't you? or is this just me being dumb cause it's fucking four a.m.,1 +Haha. Cool. Just sucks that we have to wait so long for season 2.,1 +Damn! Sounds like heart attack inducing combo.,1 +like jealous toddlers equal change to excel When a person DOES excel other ppl bitch&whine - bc it "makes them look bad" The,1 +damn old people now a days they are the dangerous drivers,1 +work stressing over this damn AE meeting we are having @ 11am.,1 +Warm Mt Dew tastes awful. :/ Try Jolt Cola instead. Or maybe even Whoop Ass. http://tinyurl.com/8woa3j,1 +it means - the fat beauty and yes lost 43 kgs thru heavy dieting n working out at the gym 6 days a week - that was 3 yrs ago,1 +oh damn! anyways next time...DM me ur number or soemthing,1 +stop saying you hate gwen! Youposted earlier saying you love her! Ur hot then ur cold ur yes then ur nooooo,1 +I'm on my way just to get gas and saw a 314. Damn it.,1 +get some damn sleep! Sleepy Time tea is my savior serious,1 +I want beach now. Damn.,1 +sorry you have no cred. Two words: pig ears,1 +and somehow I still wish I was there pig parts and all. Amazing.,1 +I send you a hug ma. That sucks! 08 was full of some fuck shit I'll say that.,1 +I hate you,1 +- Fuck yeah!,1 +LMAO! @ ur new pet...I thought u sent me a pic of a big ass butterfly...lol!,1 +at least its not those nasty ass water bugs u had as roomates in Atlanta..Ew! Lol!,1 +Ok..ok I c u! Take it back on they ass why don't ya.. That sounds super CUTE!,1 +I hate giving little kids antibiotics...10 days 2 a day and important they get it all down...impossible!,1 +some kid made copies of the questions and a teacher looked at it...fucking dumbass he/she screwed it up for all of us.,1 +alright. The test is on Monday and I'm gonna be studying my ass off.,1 +lmao that sucks.,1 +I hate when that happens!,1 +Wendy's - Oriental Chicken Salad w/ grilled chicken. Way good. I think it's 20 grams of fat just in the dressing tho! Argh.,1 +:-( Yucky needles. I hate those ones with a special sort of passion! *hugs* Hope it's over soon with the needles.,1 +Courtesy of the Canadian kids magazine Chirp: How does a sick pig get to the hospital?,1 +and holy crap that's a long time!! D: that sucks!,1 +Now I'm gonna have to go back to McLuhan & Leary to help me translate WTF you just wrote. Damn I hate when that happens. Heh.,1 +That's...so gay it's painful.,1 +ooo tht sucks...happens to me all the time when I drink 5 hrs...,1 +kim kardashian annoys me...her ass is nice but Reggie could get it!,1 +I'm up too! whoopee fuck! not hung over AT ALL!,1 +so fucking angry all the time,1 +It's got a core of uranium some damn thing I don't know. Gets up there like Sputnik.,1 +That ALWAYS happens to me! Damn skype.,1 +Thanks Ulrike! :) We'll make sure to nerd it up!,1 +sorry i missed you @ Cain but they weren't very nice to my gay boy - I think some1 was jealous...missu hope to see ya soon ;),1 +fuck them!,1 +damn now i want some au gratin!,1 +Well I would but once Christmas is over it kinda sucks the life outta the Santa hat thing...,1 +I both love and hate the sticks! I'm finally going home tomorrow.,1 +hahaha i don't hate german just a couple of germans. Guten morgen!,1 +I'm gay and I'm pregnant gak mungkin berhasil. This guy is persistent. Gmn ya. Can I just simply ignore his msgs??? :-D,1 +NOOO EP!!!! That really sucks! You should hve jst waited in the car...lol!!! Hopefully it;s dark in there & no one looks dow ...,1 +I just wanted a fucking money order and it took 40 minutes to get it. They won't even look at you if you're on your mobile phone.,1 +I hate games like this. All these people shouldn't be going down.,1 +lol...hell naw...its the fine ass one!,1 +i call it "hey-dumb-fuck-guys-stop-trying-so-hard" advice,1 +hate? i was congratulating you your a humanitarian!,1 +well clearly the shoe purchase is more impressive because ITS A FUCKING SHOE!!!,1 +fuck sleep you gotta stay up late so u can see santa!,1 +that's great. def down on carbs + fat. counting cals in and out is working perfectly. the big difference is my mindset. thanks!,1 +yeah my son works at Barnes N Nobles...played the mamma mia soundtrack overNover- they all hate it now but sing and dance along!,1 +what the fuck do you have to apologize for??,1 +fuck you op,1 +@ember_myst @spellchaser Just so you know I'm staking my claim on etherist. I am in full on crush! Sucks that he's married. :P,1 +He doesn't seem clueless to me. He seems sweet and cute and witty and eloquent and charming. *swoon* Damn the luck.,1 +Arrrgghhh! I hate him!,1 +Do you hate the iMac because it looks edible :) or because (it must be) soooo slow? Or not a Mac guy?,1 +Oh I would hate that too. Three apps? That would barely get me started.,1 +I don't believe in a lot of specialty kitchen gadgets but I cling to my potato ricer and my popover pan. Carb freak? :),1 +if gov is going to make it "uncomfortable" to be fat & expect it will work shouldn't they also make it uncomfortable to be poor? #tcot,1 +oh i hate it. self righteous people makes me want to scream.,1 +I hate you so much right now. http://is.gd/ewZm,1 +Aah! I actually hate you!,1 +Gah fuck off tainting my private account with new followers. xD,1 +fucking buses. One drove straight past me on Friday night and I was waving my arms like a windmill. Baaaaah!,1 +good u an ur no sharin ass LOL,1 +Damn fam... if I was a hater I'd be jealous... lol,1 +You blogged and ran? Jesus that's ass kicking if I ever heard it.,1 +Hell yeah!!! And the best bit of movie dialogue ever..Jason says "I am NOT the gay!" ... OK Jason i belive you ;),1 +Damn near indeed! But in the end their youthful impetuosity gave it away. It didn't feel like SL actually won it incredibly!,1 +i was able to connect to may exchange with apple mail after they enabled active sync for my iphone. i hate entourage... so much,1 +Hints in icing are bad or good? Skywriting sucks unless the hint is a very short word. I'd suggest a delicious tag for nerds.,1 +@DaveBenjamin I HATE THAT...,1 +people hate to admit emotional decision making though. manipulative some think. the uphill climb of personal branding...,1 +oooo thats not fun! i hate those things the orthodontics people are mean to me!,1 +weird.... Nick are you going emo??????,1 +lol!!!! I used to be the wknd assignment editor and would get mail addressed to "Weekend Ass". I didn't know how to feel.,1 +I hate to harsh your buzz but every game on the iPhone can roll the bones by shaking. Do not pass go do not collect my $7.99,1 +argh tell me about it :x i hate procrastinating... lol.,1 +coincidence my ass... LOL... But it's a good suggestion so it'll go in the hat... Singapore would be interesting. 5 more...,1 +Dude oh no U didnt! I got 4 DM's within 4 minutes of me saying "ass"... imagine what would happen if I said "fuck"... oh crap!,1 +that really sucks!,1 +re: why friendfeed sucks - no doubt a powerful utility but with a high learning curve and non-intuitive user experience,1 +you asian!!! I hate asians!!! Bahahahahhaha!!! Jk! I am well on my way to getting fucked up!!! See you next year!!! Hahahahaha!!,1 +I hate you...,1 +I'm counting down the milliseconds til you OPEN THE DAMN BOX. if I have the patience of a saint you have the willpower of a GOD.,1 +totally loved Odo. But the Ferengi make my skin crawl. out of all the species they're the ones i hate the most. yuck!,1 +ahahahaha so right. Im fucking freezing my ass off here.,1 +Im so jealous. But I'll be eating that same rice pudding in 9 days. Enjoy the fuck out of your trip,1 +all the emo people will explode :o,1 +and biggest. That would be a bad-ass name too. At least his middle name.,1 +sweet. I'm too chicken to read it cuz I hate "spoilers"';),1 +hate "can'r do" atitude. can do works almosr all the time.,1 +Damn. Oh well I can't raise my hand for every question. ;-),1 +I'm laughing at your "Don't hate me please." Can you imagine a man ever saying that? Not to be gender specific but...,1 +damn I'm behind,1 +because i'm a dumb ass.,1 +because i'm a dumb ass.,1 +lol! hey stop being modest. you OFTEN are a hot bitch. :),1 +but they love me for it. none of them giggle. its a love/hate thing they got goin with me =),1 +"""I hear what you sayin gurl but you mean to tell me you caint have friends??"" *insert piss poor false sincerity here*",1 +Haha! I'm glad someone else will admit to seeing (multiple times clearly) Gummo! I let someone borrow mine... lost. Damn.,1 +damn iPhone that's SHITE. Learn English slang,1 +Oh Shit! I am a yoga loser. But not any other kind of loser. I have already showed up once with no class alas.,1 + yeah and I woulda gotten away with it if it wasnt for you damn kids...,1 +we're talking threatening your ability to do business in a professional not-over-the-top way. w/o being a cunt somehow.,1 +maybe you should go punch him in the dick.,1 +that sucks =/ you'll get into the other ones.,1 +damn clean plate and the cl;ean bones lol.,1 +you got niggaitus and watch baby come in there and fuck with you.,1 +i'm late but my damn pic mail ain't sending nowhere. they said i need to add the app? wtf?,1 +fuck andre! it's strippers lol you coming home to him!,1 +Fuck off.. I'm not ready!,1 +Yeah. I know he doesn't mean to be a douche and that I'm a huge bitch for being this upset over it. But it still upsets me.,1 +Damn!! I was hoping you were giving me good news otherwise!,1 +try putting lemon peels around the base of the tree; supposedly cats hate citrus smell,1 +I love New HAmpshire well the white Mounts.I'm from Maine and I know I hate cold also hence why I moved to Fla.,1 +dont bother with low fat brownies,1 + yes.. a she-wolf in love is it even possible? Which team do we root for now? I'm a faithless whore - struck by Amor,1 +don't you hate yogurt! When you do recover from hating yogurt go to Trader Joe's get the Greek style kind it's fantastic!,1 +Stop it! I keep thinking you're going to say he's here! Now I'm waiting vicariously through you! Dammit! I hate waiting for babies!,1 +ohhhh like that... well then shit girl u shud be pissed. AAAND... u needa tell the BF his own blood is using his ass!,1 +lol tell her to go sit her ass down somewhere lol,1 +I hate when I see people doing that. I am with you on that one. Why do people think that is okay?!,1 +I have no clue what I've stumbled upon but I laughed my ass off... you might too: http://is.gd/a8cz,1 +Oooh I'm so going there this weekend!! I just hate malls at Xmas time. Bah.,1 +oooh I wish I could! but then I have to shave my widow's peak to get them to hang right. And what a bitch to grow back! LOL,1 +ugh I KNOW -- there isn't one!! And I hate when I go into a post and click it -- it just opens the jpg! YUCK!,1 +I imagine. Another thing every time I open the Reader my subscription folders are ALL open. I hate that too.,1 +I jokingly remarked to my man that I was an "internet whore " he thought it meant that I was a porn star. LOL He doesn't get it.,1 +Agreed. Fuck Twitter Grader and all it's kin.,1 +The JVC (LCD) Reference Monitor I have is in a word awe-fucking-some. :) It's great accurate and as good as it gets. It's ~ $4k,1 +fat ol santa may eat a cookie but he will also touch the youngest while they sleep.,1 +Ew :( That sucks! I'm sorry.,1 +you said fuck everyone!,1 +okay. Fuck me. Way to start the new year.,1 +well if u looking for more sex watch the fat boy freaking his pillow thats now playing. Ewwwwwww!!!!,1 +some retarded oracle peoplesoft login thing keeps coming up on my enrolment cart page and i don't know what the fuck is going on!,1 +ripping off Emo Phillips + ba-dum-bum jokes wouldn't get my vote even if i was the web-voter type.,1 +that would be nice too. because i hate feeling violated every month with no payoff.,1 +I do? Damn! But it's FOUR hours! After an hour + of plane ride!,1 +I hate math really do!but will be happy as well when I finish university!,1 +"""don't hate me cuz i'm beautiful."" jk. you're probably too young to have seen that commercial. HA. what's wrong chippers??",1 + We're having a BAD ASS gathering in May you should come. Of course the best part is the hanging out downtown after. :),1 +kicks dons ass. *HUGS*,1 +ass balls... lmfao.,1 +It's not weird you hate that. Me too but sometiimes the list gets a little unwieldy.,1 +#Paypal sucks. Someone is using my identity there and they refuse to do ANYTHING about it.,1 +aw man that sucks!,1 +freak passing shower. was walking by then suddenly a few big drops came down. thought oh shit and ducked in just as it poured.,1 +omgomgomg those shoes with the little flower holy fuck i want them,1 +Ugh. Half the time people pick up "Free stuff" from Craigslist they're driving a luxury car. Heh. HATE them.,1 +damn i'm trying to watch a movie...the tweets are going off the huck. :P lol just kidding don't get pissed alright? ?:D:D:Dlololol,1 +damn you have really become an ordinary man... man that sucks ass!!! lol :P,1 +how fucking sad is the OVA of Samurai X...i didn't want to watch that.. fuck i almost cried.. lol :P jk,1 +I HATE rain..wud rather the snow..crazy I kno..lol,1 +got it .. and I have read that! Gonna re-read tho..Im stuck and have been for a while..sucks! Thx for help--love ur stuff.,1 +might install now that you've acted as my guinea pig :D,1 +any workplace where that isn't safe needs to harden the fuck up :p,1 +that sucks *hugs* :(,1 +probably not but who the fuck knows what's going on with this show anymore.,1 +k im hella boredddddddd hurry the fuck up i saw my bro playing it game looks sick,1 +omg me too! The holidays need to end now plz. Ppl are soo mean and nothing is jolly or holly! It sucks!,1 +Damn that's a lot of money for tickets! I guess her little girl only turns 16 once though. :-),1 +i am going to work on a grassroots gay rights project that will involve the communities of color.,1 +suntem dar ne gandem cum sa gasim o mascota care sa o putem scoate din dulap cand vrem sa acuzam pe cineva pt nenorocul nostru,1 +what do you use then? cuz I hate Itunes,1 +Have you heard any J-Fish songs. if you want a sneek peak I can send you a few songs =) I have all his CD's I'm a J-Fish freak lol,1 + haha exactly! And I love YOUR new picture! I was wondering when you were going to use this cute ass picture! I love it!,1 +I like to look at it as "meeting their needs" not necessarily "kissing ass"... although if you can do both - do!,1 +Damn iPhone made my Brad & Angelina pick blurry! http://twitpic.com/rddb,1 +in the lab...all damn day i had soooo much work to do:(,1 +well lady I'm all for u comin here from frisco to hunt my ass down;),1 +fuck 'em,1 +I just giggled out loud because my dyslexic ass just read "My fluffy ass was rubbing off",1 +whaha ja maar het is zon raar idee dat ze dat lezen xD en dat BOB FUCKING BRYAR iets tegen me 'gezegt' heeft xD je moet vragen o,1 +weekend ofzo? 3) I still hate twitter 4) I love Gerard he's writing umbrella academy but I still haven't read it yet -shame on me,1 +I bet we are freezing more than you are. The North sucks. Ugh!,1 +That sucks. I was actually a guest on there! My first time on the radio.,1 +That sucks. Are you alright?,1 +DAMN! I'll wait a month before I send mine for a critique! LOL,1 +@EightysBaby man..... fuck the lakers,1 +yeah most people just think i'm a bitch cuz i got that screwy sarcastic sense of humor that tends to tick people off? my username?,1 +Dude. That "Sleeps with Angels" song can straight up have my ass bawling. I also love the song "Hey Hey My My" and Harvest Moon,1 +...i love my job and would hate to miss it...I'm depended upon and especially this week I'm needed for our toddlers parties,1 +hahaha. once years ago when he was sleeping I applied some to his lips. I hate it when guys hve better lips 4 lipstick than me,1 +all that I know of is the Revenge vinyl. u? and sorry for delayed answer my internet sucks and trips out,1 +The 401 always sucks between Cobourg and Kingston. I'll be doing that joyous trek on Boxing Day to visit the relatives.,1 +HAPPY FUCKING BDAY YOU OLD MAN!!!!!! <3333333333 CELEBRATE TONIGHT WITH A TALL COLD ONE :) wooo!,1 +HAHAHHAHAAHHAHAHA LULZ @Mod_Alex your STILL a cunt!!!!! hahahahahahahah lulz lulz lulz lulz lulz,1 +UNNNGGGG if he used that fucking word i'm never saying Epic Fail ever again..ooo i'd like to give him a sock in th..NEVERMIND!!,1 +hahaha honestly i fucking CRACK up on shit like that ppl need to srsly LIGHTEN up <3333 ya,1 +i hope theirs LOTS of cursing in that video... oh wait we cant fucking curse ANYMORE baaaaahhhhh DAM THEM,1 +FUCK YOU!!!!! I'M DIVORCING UR FUCKING ASS!!!!! HMP!!!,1 +paaaaaaaarrrtttyyyy!!!!!!!! wait no... fuck it.... move over I'M MOVING IN!!!! HAHA!,1 +psshhh!! your on the WRONG side of SHUT THE FUCK UP!,1 +that video made me angry & want to PUNCH Shirley Phelps Roeper IN THE FUCKING FACE!!!! MAN I HOPE THEY DIE! SUCH HATE! UNG,1 +did he really???!!!! OH FUCK OK I TAKE BACK ON DAN MARINO IM SORRY!!!! OK I BLAME ROMO AGAIN! AND WHITTEN! i'm through with them!,1 +i SENT it!!!!!!!! u'll prob get it in like a billion years since cingular SUCKS!!!!,1 +guess who made a fucking surprise in my dreams last night you butthead!!! thanks to you Martha Stewert loves my dreams! baaah,1 +Coat Rack Contest in the Fab Lab. I hate winter but this would help channel emotions into something constructive.,1 +Santa Cycle Rampage Ride starts at 10:30 at the Fat Abbey Bier Cafe (Juneau and Water). Bring your best red and white costume.,1 +Are you trying to say the saran wrap bacon fat and rubber bands I currently use don't count as REAL gloves?,1 +nerd!,1 +omfgshz. i hate lemonbars with a DEEP passion too!,1 +Hate to say but John's dad was a major OB/GYN (Yeah nightmare for me ) and he holds out that there are no flu positives:),1 +damn! Putting my chocolate cake to shame.,1 +LOL! Lullabot is my employer. A group of fun nice people kicking major Drupal ass all over the world. :-),1 +gay man,1 + let me know if you want a co-pilot tonight to keep your ass awake!,1 + Josh needs medication. Stat. Can i kick his ass for you now?,1 + lets fucking go tonight... you know you want to! Or at least hang out. I fucking hate being alone sometimes too.,1 +you are welcome to spend the night any time... but next time you steal the covers I'm gonna cunt punt you. Not really. :),1 +just to clarify- not really to the cunt punting... but really to the you being welcome to come over anytime!,1 +I will kick that pirate's ass if he got married again. Just sayin',1 +That it's that rare of a sentence is sorta depressing. Especially in light of @mariannemancusi 's "Loser Cam" Xmas gift to me,1 +i hope singing along- i'd hate to think i'm torturing poor little Pixel!,1 +damn right it should be horrible stuff YUK!,1 +hate to tell you but it only gets worse we're at 1440 in the UK and all my office wants to jump out the window!,1 +so do i! especially rocket. I hate celery though,1 +I saw that. what's his name! In so far as the fat bastard - what?!,1 +Noooo this is not caffeine. This is IT! Let's kick ass and then CELEBRATE! C'MON girlie. We got it goin' ON!,1 +Don't you hate that? I *always* recognize commercial voices and am all like Gene Hackman? Lowe's? Really? OMG!,1 +And by no one I assume you are including me...damn.,1 +My sound is being persnickety so I can't catch up on the vlog until I reboot which I'm too damn lazy to do now. But tomorrow...,1 +I always thought of him as Hermy the wannabe dentist.,1 +Me too. Now I'm dragging my mature ass off to BED! G'night hawt girlie! Woot!,1 +fuck you merten.,1 +you should probably reattach your fucking ass for you have laughed it off.,1 +That sucks - at least I have my iPod. Still least I'm not alone! :D,1 +Hot damn champ right here! Had the old school TT shell helmet on for the whole trip. Backwards even! Huoooooooah!,1 +Piss off. ;),1 +Have you seen Bitch magazine's article about twilight? about "absitence porn" http://is.gd/d2pt,1 +thats what i am saying...they need to pay me.thats m*ttaf*cking free promotion. ungrateful ass people.,1 +heh! ping me if you do come down to gay paris. We can interview eachother on the red carpet :),1 +I'm with you man. Here I am on Twitter at 20 to 6 in the morn damn.,1 +Oh hey that's good! Makes much more sense than what I had floating around in my head. :) (1001 uses for goose fat...),1 +Sony Vegas = fucking amazing! :D,1 +stop stealing my schtick whore!,1 + Depends. Will you sit there and hate yourself? ;) Would you be able to do a half day?,1 +You tell them to Fuck Off. They'll listen,1 +I've noticed he can't spell much beyond NOM and BARK ... sucks for him there's only one K and two Bs in Scrabble.,1 +Neat. Damn PS3. Maybe I can convince mom that dad's ps2 needs an upgrade for Xmas.,1 +That doesn't sound nice at all. As somebody who was made redundant with one day to trade last year with Swatch I know it sucks!,1 +I dunno did you offer me any of that fuck-ton of beer in your fridge on Saturday? NO,1 +You're quite right. I withdraw my aggressive commenting. Fuck-ton should be more widely used.,1 +basically we agreed that you/http://lofistl.com are awesome/bad ass. Not gonna lie i brought you up! ;),1 +I *thought* you'd be preparing! Best of luck - what a bad ass opportunity for you.,1 +gav that just sucks! - u ok? i think the brakes would be best to stay on for now!!,1 +I don't know about that... Drew's ass is pretty tiny. :) Knees work too... except Drew's knees don't work...,1 +Uh... yeah. Joe and I have been wondering what all the fuss was about. Put your ass in it make sure it's tight.. done.,1 +ha ha loser :),1 +I can share my gay boyfriend. He just left. Its 1 in the morning. You totally coulda had him from 9 to 1! Ill keep first shift,1 +i update from my phone a lot you can add twitter as a contact. damn bsa is getting all high tech.,1 + & @karkar I hate Walmart anymore. I'm gonna have to start taking my own cart with spikes and barbed wire. Maybe flamethrowers.,1 +I hate being behind those slow as plows. In a storm it's nice to be on the plowed road but I hate going that slow. Ugh.,1 +or moonlight and dryness. Damn that 5am wakeup.,1 +welcome to my world: you're sick some people think you're funny others hate you nobody wants to suck your cock.,1 +I'm jealous - I get all emo when I lack the season of all natures sleep. :-),1 +Wait if I shut down my phone company who's going to sponsor you in the emo olympics?,1 +there's gonna be a nerd party in utah on new years!,1 +YOU? FAT? R U SERIOUS?!? Remind me to slap U when I c U Saturday mkay?,1 +Hey at leat you got SOMETHING. Know what we get at work as I found out 2day? NADDA! Bah hum bug! Damn scrooges!,1 +damn that was hard - my last attack: gnocchi! If you answer to this you'll win,1 +get out of my fucking brain! I am not yours!,1 +I hate trying to hear over loud music lol,1 +do you get one if someone sticks their boot up your ass?,1 +damn that is shady. Why would they put out a false report?,1 +I do but it sucks at scrabble.,1 +damn won't be going to that.,1 +This guy was that weird solid fat looking type with skinny legs. More funny than scary,1 +here's how to teach you phone to say fuck properly. Don't tell your parents. http://snipurl.com/9iryv,1 +wow r u serious? damn did that period of time skip over you? lol,1 +damn! i knew if i had said nobu that auto-tune would already be hummin,1 +ew u slut get on skype <333333,1 +Same with prospective clients. I'm returning YOUR call dumb ass.,1 +dude no offence you're awesome but currently I think I hate you. :0),1 +Figured tis the season to be fat. For a bit. And then start working properly on weight in the New Year-A is coming to gym with me!,1 +You have no idea how damn tempting that is. I've already procrastinated by drawing roads and zebra crossings ;),1 +whats the operating system on it? i have windows vista and vista sucks bad..it is full of bugs still. shuts down and freezing alot,1 +wow that sucks! well i wish you luck with all that :) i am going to crash so have a good night ok and stay warm.its freezing here,1 +you're gonna get fat!,1 +LOL! not bad for a gangsta bitch...wo pretends to be classy...LOL! I love the holidays. My fav... 2nd to my Bday!,1 +@lauriewrites OMG...Margeaux can reach this octave range that I swear makes me see red! and she knows it. grates my fucking nerves,1 +you can fuck right off about that hoodie thieving comment,1 +point taken. fuck.,1 +grrr I hate that. I have an ex-friend who only gets in touch when they have something great to tell me about themselves... o_0,1 +Oh yeah. That would be a good one. I still think they could kick ass doing "Got to Get You Into My Life.",1 +by a str8 terms technically no penetration means you still have ur vcard but in gay terms she isn't a virgin. sex is sex,1 +whiterabbit819 stFu u ass i care and thats all that matters!,1 +y'all are so fucking classy. miss you!,1 +says "ahaha thankss. my auntie kim always says it grassy ass=] she's amazing.",1 +but you know what i hate ? the comments that are anonymous that i can't figure out who they are.,1 +Fuck yeah. I noticed that too.,1 +Yep it's blocking the absurd hate ur preparing to throw my way in 5....4...3.....2......1,1 +I don't think gay rights groups could force churches into gay marriage just as churches can't force gays to become straight #tcot,1 +yeah apparently anytime you use the word "hate" on a tweet your ass gets retweeted and subsequently followed. Reminds me of ☭.,1 +Bitch! You weren't following me!,1 +Hey don't knock the Port+OJ until you've tried it.As cold remedies go you're still sick but no longer give a damn. ;),1 +Now THAT's an adventure that I will pass on. Oh damn I do have to take a present back. NO!!,1 +I don't use the touchpad(I hate them) I always use a USB mouse. We are a toshiba family.. we have four,1 +Damn Jim idk what to say:/ Sorry man.,1 +ahhh yur a slut for that stache!! damn gurl...tug it once for me too,1 +Totally. The ass end of my Jeep is not but no life forms were impacted.,1 +Bitch I was doing laundry first. haha jk. Or am I?,1 +Mind your own state politics. Joe Smith was a mammal before a prophet. Some mammals are gay and even heterosexuals have anal sex.,1 + I'd like to get a signed copy of 'Running Like a Fat Bastard'. Pleez. Only this will complete my fitness lit collection.,1 +Hopefully I'll be able to get the damn things on- he's ferocious when cornered hungry or just feeling rascally...,1 +The ole Cell Phone Yeller in the Elevator. That sucks.,1 +I love them too. Though I have to say that Sylar is my favorite villian in the show. I love to hate him. Hehe.,1 +Yeah! This blond gay guy came to audition. I almost fell out of my chair when I saw him. He looked identical to chris corner!,1 +- and btw I hate the new Pepsi logo/can. Maybe cause I didn't get one in the mail...ha j/k,1 +I nominate @benmack for a Shorty Award in #business because he is a bad ass who says it likes he means it.,1 +just found the email buried in inbox - count me **IN** i've been on the receiving end of foodbanks growing up. it SUCKS BIGTIME,1 +hate to rub it in but it says 70 on the thermometer here. May have to do my beach walk early today to aviod sprinkles.,1 +did you see Mike Huckabee on Daily Show earlier this week? It got pretty intense with gay marriage topic.,1 +Avocado is my FAVOURITE 'good fat'. Hahaha... I'm afraid I indulged 2day and had my avocado w homemade cheese nachos & black olives.,1 +Mine I seem to fuck it up all the time. I'm off ~30 bucks. I'll leave it that way for 2-3 months and finally put an entry (cont),1 +Fuck you and your snow! Or bring some of it down here? ;),1 +We've maybe had 1" total here across 3-4 different "snows" My first time with snow tires ever and I can't have any damn fun!,1 +man! and you're texting while driving? haha crazy! damn you're lucky. i wish my parents would let me go! 30% chance i'm going,1 +aw that sucks!,1 +oh that sucks! apply for targets/walmarts,1 +haha i don't really like walmart that much either. hmm yeah that sucks :( hope you find one,1 +Hey! Remember me? Lizzy from the David Cook forums. How've you been? (I'm guessing pretty damn awesome right now... =P),1 +Reid I made it! urghhh... I hate shopping. The trauma of it sent me hiding under the covers. Or maybe that was the cold.,1 +Damn you for seeing the season premire over a month ago!!,1 +You don't even know that half trust me sallie mae is the one bitch I wish I could divorce right now,1 +HATE.YOU.SO.MUCH.,1 +I hate you.,1 +Damn straight!,1 +Hey thx! I just hate to have Win XP crash anymore than necessary. That is why I have been so conservative. I'm gonna try Chrome.,1 +I hate when it happens to people that are nice. They don't deserve embarassment of that sort.,1 +ugh you know ro fucking reminded me about red bull. i told her when i wake up my bibingka's gonna be sore. )-: nightmares!!,1 +omg is he like 19? MUAHAHAHAHAAHAHAHAHAHAHAHAHAAHA you're such a fucking cradle snatcher bb.,1 +faka... update your twitter you fucking homo sapien.,1 +we r so fucking on for real. I might leave after Josh but i can't wait! >_<,1 +dropped off some old 3.5" floppies. A System Disk and Mac Paint. Retro Mac crap kicks ass! - Photo: http://bkite.com/02RHw,1 +I mean you hate it but you bought it doesn't that speak for itself,1 +Could be some accounts getting removed after suspicious behavior. Damn spammers...,1 +Damn what the hell is the deal with the Drama Queens coming out of the woodwork lately?,1 +There was a MAD ABOUT YOU/ DICK VAN DYKE crossover about a decade ago. Carl Reiner reprised his role as Alan Brady.,1 +wait until you have a final cut on your documentary before the sex change. You don't want to fuck up continuity.,1 +freak yeah i do,1 +Yea its got a heatsink bigger than a server lol. Its a great machine. I am loving it except for the leg is bent. DAMN COURIERS GRR,1 +sure I could use a lil snow here. The people would freak out here. LOL,1 +im sad there's only 15 more minutes left! i hate how it shows only once a week lol,1 +dude.. I just think the twinke or whateva you call it... It damn cool.. LOL,1 +SWEEET you've just become cooler in my book or as someone said earlier today.. kick ass... so 80's :),1 +Amen. Thrilled to see Brad Sucks on Rock Band 2. Congrats man I hope you get some of those 80 MS Points. @bradsucks FTW!,1 +happy for you sucks for me! this should have been SNOW!,1 +immortal? invincible privileged all-powerful above-da-law I-am-da-law da ends justify da means I don't give a fuck I'm IT...,1 +i hate how it never snows there... and you live IN CANADA! do you want some of ours? I hate snow.,1 +i was afraid people would think i meant actual buckeyes! i hate peanut butter but when its w/chocolate its ok lol yummm,1 +what the? how the? damn it,1 +do you under stand how much i give a fuck?,1 +you can take the girl out of the hood but you can't take the hood out of the girl. Detroit didn't make me a pussy that's forsure,1 +im horny god damn porn fuck eon now I need real cock. where's ashley!,1 +I would only fuck you if I was drunk... lulz.,1 +bitch better share this vivid alt shit isnt doing anything for my vagina and its moistness. fuck.... EON I WANT TOSEECOPULATION,1 +you cock juggling thundercunt!!!! I have the best childish insults ever.,1 +Yes! All of those twitters were directed at Frank Miller and his horrible screen play! DAMN YOU FRANK MILLER ILL KEEL YOU!,1 +ZOMGZ Fontfeed! I am such a Font Freak®. I used to have 5000 fonts on my puter. The poor thing nearly choked to death on them.,1 +..........I hate SUVs. They're a great big ugly road hazard as far as I'm concerned. And very few people really NEED them.,1 +your first time? you'll soon be sick of the damn thing...,1 +damn australians!,1 +Oh that sucks. Why I blew off my own appointment yesterday. I just couldn't face the wait.,1 +At the C's before I hit the hay. Still hate Boston?,1 +yeah it really sucks I need to manage my time better I guess or maybe I should party haha. Oh well. C'est la vie I guess.,1 +slap a bitch? What you want to do is CHOKE A BITCH like Wayne Brady!,1 +I got fuck all for Christmas babe. How about you?,1 +--well...i had to pee...and my stupid ass lifted the seat with the same hand i was holdin the phone in...then...PLOOP!!!,1 +damn straight! I say you me and danie have an epic rap party over break since we'll all be off. Yes?,1 +haha someone told me katie (?) was a bitch so I was like ehh. Death cab & JACKS MANNEQUIN FGHSDJ <3 hehe,1 +Your John Mayer = My Jacks Mannequin. Andrew McMahon is my LIFE SUPPORT. Not to sound emo or anything ahaha,1 +LIKE BITCH WUSSUP! Ahahaha,1 +I just needed an axcuse to share it. I hate oatmeal actually.,1 + Damn woman you don't know your own strength. LOL,1 +I don't always agree with you... but I do this time! Slow the hell down and stop getting so emo about it.,1 +no she didnt yet. maybe she does hate us now. *sad day*,1 +lol... I have ass too..,1 +he hasnt scored 82 but he's taken a team to the finals damn near by himself,1 +that's what you fucking get for that fucking video!,1 +ass.,1 +That show sucks. It always scares you. And Boo Danny. He is a fail!,1 +yes & i cant fucking wait! I can hardly bring myself to review - i must but dont want to.,1 +fuck no _ I'll be out there by myself. That's my ALONE time. Meditate if you will. Me the pipe & the stars rflecting & thnkng,1 + I couldn't agree more. And if I didn't feel like such a loser I would say I win for understanding!,1 +Damn those Mythbuster guys! Anyone who works or lives in Alameda must be crazy anyway!,1 +lmao i hate you. <3,1 +i hate you! i want to be in bed :(,1 +i bitch slapped my cousin once.,1 +.....I.Hate.Him. He's.... UGGG!,1 +oh i am fine. But she will not be if she doesn't shut her fat fucking mouth.,1 +violent ass...,1 +fuckery is always welcomed..only second to hate. Speaking of which...I haven't told you how much I hate you lately,1 +a fat boy sweet talker?,1 +Why do you kombat when I have to leave the computer!! DAMN YOU!!!,1 +I wanna get him a ring that means "ur a great kid to fuck",1 +haven't the Palestinians suffered enough without having to deal with that fat fool......heh,1 +AHHH I HATE THAT..,1 +lol you'd go gay for Zac Efron,1 +"""If they would have cremated that son bitch I'd be tale grabbing his ass right now""",1 +So you are right... reciprocity is a bitch (Just not in the way that Lauren Hill meant it),1 +Grammar nerd.,1 +There's a dfference? Damn.,1 +mark Ya! Dick head old man!,1 +i hate people who update their fb status more than once a day unless absolutely necessary...tweets-thats what they're for!,1 +damn.,1 +So people are just ignoring me. :-( That sucks big time. LOL. Especially when I thought we were better than that. I see...I see..,1 +Damn you to hell for getting my hopes up. I though you were talking about Daley.,1 +LMAO. I was very confused. What a bitch she is.,1 +I never said anything about lovin ya dick cheese just that I say your name alot probable with fuck in there somewhere,1 +not on your life dick-tongue,1 +crutches suck big time. i hate them lol. hope you get better soon! :P,1 +esp. if someone is working for an employer supportive of gay rights seems wrong for someone to then not show up to work.,1 +regarding you and your tea obsession you have become SO GAY break out the Thermite man!!!!! Shape up,1 +the only show more thug is the nigga who be in the woods eating beetles and drinking his piss! that niggas GANGSTA!,1 + :-) My line in the sand: watching shows on my computer screen. HATE it. w/42 inch plasma & groovy sound you can never go back.,1 +what a fucking bitch.,1 +As opposed to a non fucking fuck?,1 +attention whore.,1 +/emo damn you.,1 +Dick Clark looked sloshed last night? I was thinking animatronic.,1 +This bad gay works for a company that likes to write people up for sneezing.,1 +Fat Tire. Steak Taquitos. RocketTransfer.com. AJ's on Court in DSM.,1 +losing winter insulation is one of the horrific side effects of Biggest Loser that nobody warns you about. It's brutal!,1 +I hate "Rag and Bone" so much.,1 +emo-hair+hip hop-fitted hat,1 +I would not be proud of that. That just means you're a whore or a polygamist.,1 +if he's upset with Brandyn's work area I'd hate to see wha he thinks of mine :P,1 +Whoa. Marc Blucas' new hair is a fucking crime against humanity. The horror. From loveable goof to douchebag instantly.,1 +Unfortunately I can't take credit for that blog-- I found it while surfing the 'net at 4am and laughed my ass off!,1 +P.S. "Fuckitty fuck fuck" is def. worse to say in a Holy Place. Especially if you're Catholic.,1 +also let him know his Irish accent sucks in some of the podcasts,1 +I hate .... you .... zzzzzzzz,1 +Hey... Stop twitting and post a damn blog!,1 +http://twitpic.com/qtt0 - O.O bingo is waaaaay to hard for me. hate it. i wanna fuck it..wait thats didnt come out right,1 +xD! i know. hmm ....i wonder how it feels like to fuck bingo hard .....hmmmm i guss i'll never know D':,1 +oh youuuu little bitch. Just keep your winter gloves away from your zipper and i'm sure you'll be fine.,1 +not to sound amazingly astoundingly gay (not that that's bad) but you sound like a man in desperate need of a few pillow shams,1 +as much as i hate auto-DM's i also check out links if they're music related.,1 +I'm blocking you because you have no value. Go back to telemarketing or some other loser marketing scheme.,1 +If only Edward and Bella were slightly less emo :),1 +@scanman and @asthepumpturns. Yeah I am a mean mean person. Horribly judgemental towards one specific victim. Poor guy. Retard.,1 +damn it.,1 +NO. You're in BATH. You worked your ASS off for this. You're coming home to GREAT THINGS. Have FUN FUN FUN. NOW.,1 +your mother's a bitch.,1 +that sucks for your teacher. poor guy. isn't your class full of adults? do they act mature like adults are supposed to?,1 +fuck yeah!!! That is so far above just not failing!!,1 +FUCK.,1 +fuck yeah!!,1 +well it is gay hippie stoner music,1 +aw man that sucks!,1 +Oh no! Everyone ok? Damn you rain! Ruining my BFFOT's day!!!,1 +WHO CARES I HATE THEM! FTW! Knitting and crocheting before bed <3,1 +damn.,1 +*sigh* oh Karrine. You said the phrase "Sluts with Butts" on a site called MomLogic.com. You fuck'n rule! :) LMAO,1 +Rockets... damn. makes me wanna turn ne-yo's gay ass off my tv and just sit here.,1 +wow that really sucks. LOL.,1 +that sucks I know he was looking forward to that hook up...,1 +fuck yeah. swing by sometime (after the 17th) and i'll take you to rocco's. yeah think about that.,1 +i hate her in every movie. she has one look. you know the look haha,1 +Read your post "Sincerity Sucks." Thank you! I feel less guilty for holding certain "sincere" people accountable for actions,1 +Maybe they're looking for Carl!!! That damn Carl.,1 +Fat Baby drinkinggg and listening to Duffy's band,1 +p.s. i hate you :),1 +I should brush my bangs over my eyes and join you in emo grief.,1 +It sucks :(,1 +yeah I hate this bitch and I'm glad the chief killed that other dude!,1 +@Heylin1234 oooh shit i forgot what i was gonna tell y'all -_O UMMM oopsie...ugh i hate my short term memory,1 +With the departure of the Sonics I've adopted them as my squad. I still fuck w/ CP3 and the Hornets but I gotta go Pacific NW.,1 +Damn straight.,1 +Have you seen his ugly ass? he IS the phantom. Women wouldnt sleep with him if he didn't woo us with melodies and faux-mance,1 +DAMN HO You sick as FUCK!!!,1 +Jesus fucking h Christ!!!!,1 +fuck you change your name. Do you know who I am? (yeah neither does my mom.),1 +to be specific he didnt choke her (right?) he bit her on the back while banging her in the ass. (just to be clear)... :),1 +still got that ass whooped haha.,1 +go cowboys!!!! Yup I said it. Two tears in a bucket.. Fuck it lol,1 +go fuck yourself.,1 +cause i just need to get my mind away from all the bullshit out here..im bousta say fuck doin music...just promote others...,1 +i mean damn don can you get back to ya own brother?!?!?,1 +dick van dyke is way cooler too.,1 +You kidding I bloody hate anime and I liked Bleach.,1 +Not necessarily while I do not agree with hitlers actions he was a damn good general and got germany out of a depression that,1 +I'll love him in the biblical sense just as soon as they chop his emo hair off.,1 +u whore...,1 +Quit the gay ex and you wouldt sleep so much,1 +fuck you man I'm a vegetarian today! That just makes it harder.,1 +HAHAHA. tom cruise "I WILL FUCK YOU UP",1 +That album is the fucking shit.,1 +yes? Yes? Fucking YES?,1 +@folub i'm hammered and want you both at Hot Damn.,1 +Y'know it's very stereotyped emo.. I know plenty of older people who follow the trend / cult the whole way.,1 +DION WHAT THE FUCK YOU SAYIN? LOL.,1 +: Dude you're gonna hate me! Here... more T-shirts for da T-shirt lovers : - http://snurl.com/8fhdw : ),1 +- damn you and your constant banoffee pie mentions!! Very tempting LOL,1 +Fucking pallys. I learned to hate them playing Warcraft III. And fuck rogues too while we're at it.,1 +Hell yeah! With their invisible sneaking nonsense. I almost want to play as one some time to fuck with people though.,1 +I was belting out songs from "Fiddler On The Roof" and "Rocky Horror Picture Show". I might have been a gay Jewish man?,1 +evilbeet do u not feel that when u watch jon & kate plus 8 its fucking "in ur face" and purely advertisements?,1 +jia..that is dead ass wrong,1 +I should round house kick ur al qaeda lookin ass in the face with my flip flops!,1 +ok! where is it then? send that bitch to me!! haha!,1 +I freakin hate that! For me it's "Hi Rose" Rose is my last name you idiot! LOL,1 +your ass needs to be in NYC for that shit!,1 +Please do...anything from you my sexy bitch!,1 +so i said listen cunt.. i hope your year brings prosperity and happiness. and then i got my gun and blew her brains out.,1 +http://twitpic.com/t47m - Srsly I hate it.,1 +Turns out I hate shopping too. Way too many sounds and smells. I just want to pee on everything.,1 +Just had a big ass waffle breakfast and am catching up on games from 08,1 +I DARE DAT ASS 2 SAY SUMTHAN ELSE STUPID U DA STUPID BITCH!,1 +FUCK NO I AINT PARTYN LIK DAT JAYLA U STUPID,1 +JAYLA U TOK DAT DA WRN WAY MEANIN U WEAR PANTIES ASS ITS NOTHN SEXULA SO DNT BE THANKN DAT,1 +N HOW BOT BARBARA GOT ANGIE ASS GUH ME N TELA WAS LAUGHN 2 DAM HARD,1 +Judge Chevere at the Daley Center..she's hispanic and a bad ass! Too bad i'd never want to go to law school..,1 + you'll get through it and win in the end. FUCK THAT SHIT IN THE FACE (as ange sez)!,1 +you're a bitch.,1 +sucks to be you,1 +I hate you so much.,1 +and the beamer was underwhelming. had all kinds of issues with the on-board computer. nothing major. just enought to piss me off,1 +He's an asshole. I'd fucking bean him for love of the game. Not starring Kevin Costner.,1 +Damn dude...,1 +WOW YOUR A BAD ASS... HAHA,1 +Yeah and T-Mobile Germany offers unlimited Worldwide calling to other T-Mobile phones. USA only offers Nationwide. Sucks.,1 +Scars on my face? Are you threatening me? I don't like liars threats nor unexplained coincidences. Kindly fuck off!,1 +DAMN IT EDDIE!,1 +can u be a lamb & add a *gay* category to ur awards so I can nominate myself & others,1 +yes...and they are about to be fucking DISOWNED. *grumble*,1 +Well fuck yeah!!!! how about allston? @xdeartragedyo imma try the one in jersey @evry1 I got my 2day bamboozle tics today,1 +uh uh u fucking bitch. haha dont take any coats skinny jeans slippers gloves bomber hats or scarves.,1 +we gonna make bklyn see what's up! Hell fucking yeah!,1 +Savor my ass. ;-p,1 +I'll be a crab ass with you. BAH HUMBUG!,1 +damn damn damn James....,1 +ok I don't care what @cyandle says about being PC bc that is SO queer. And ftr my gay friends would say something worse! ;),1 +yes yes so gay.,1 +SON OF A .... bitch! hahahahahahaha,1 +i hate you.... you know why,1 +u lucky whore!!!!!,1 +A BAMF is a bad-ass mother f*cker.,1 +Fuck that! I feel awful for you having to wait out there!,1 +damn i hate Ed Hardy,1 +pig(s) !!! Wow - always thought you had plenty of space but how many did you eat ?,1 +was just joking...hate people who act that way,1 +I do but I picture the fat guy in the leotard,1 +damn that sucks,1 +damn right,1 +ur a huge loser did u know that? lol,1 +i hate sewing. Period.,1 +don't worry karma is a one mean ass bitch. They'll get what's coming to them...,1 +retard?,1 +haha no gay stuff is good! cuz i tend to be attracted to females! haha jus chillen getting ready for work!,1 +i hate u like miniature dogs hate people dressing them in t-shirts and little booties.,1 +fuck u BIATCH!!!,1 +I hate you.,1 +fuck off,1 +That was fucking hilarious... WIN,1 +omg that fat dude should not be in leotards idk they made them that big lmao,1 +damn u i wanted to see sexy lesbian porn lmao,1 +@TitanLineAudio lol BJ's blow ass :P,1 +Damn! This is deadly - keep em coming! :P,1 +check it on your wii whore.,1 +No....Always been happy....never quite gay...,1 +get them all out of the dome ....NOW damn it...,1 +You'd be television slut.,1 +I HATE that!,1 +GO GIVE YOUR GAY LADYBOY HUSBAND AN OILY BODY MASSAGE WHY DON'T YOU. AND @yourscenesucks yes its true.,1 +OMFG I HATE YOU IWANNA GO ON NEOPETS :'( WTFFFF. YOU HAVE EVERYTHING I WANT.,1 +hate you so much,1 +lmfao! See this why I can't fuck w u! U kno I'm dead offa that Al B Shep!....,1 +LIKE HOW U SAY WHAT THE FUCK AND CLEAN IT UP WITH HECK LOL,1 +Thai sucks too many peanuts,1 +Wow! That sucks.,1 +it was in reference to his gay suit,1 +I hate them. So much.,1 +i am just so behind now . . it sucks.,1 +Oh damn. Saw the trailer for Dark City… Looks gooood…,1 +I'm sick of Tinkerbell. that bitch is making my movie life hell.,1 +That really sucks. :(,1 +every one laugh at the sad gay clown,1 +fuck you man. you can pick on garden state but leave pushing daisies alone.,1 +I hear you can cook your ASS off!!! =),1 +damn your fat you even got a turkey as your profile pic for good measure....,1 +Tommy blows cock! lol,1 +ah damn ok,1 +Pah. Loser. ;) Haahaha. Well done fella. Very interested to chat to you about it sometime!,1 +i didnt call in gay either. but my company donated 100 g's to support No on prop 8. ::shrug:: squaresies i guess.,1 +I hate Juno. That movie blows!,1 +I don't care about his fucking kids.....I want JP's kids head on a plate.,1 +fucking jp losman,1 +Fuck you and your family.,1 +damn.,1 +@TheSoXRoXmAsTer aw shucks you guys...are gay.,1 +Ugh. That truly sucks :(,1 +A COMMUNIST FUCKING DICTATORSHIP! Fuck Che Guevara. And all the t-shirts with him on them and those that wear them.,1 +You won't miss much. Her husband is cheating she's pregnant he's an ax murderer her son is gay. That's pretty much the soaps,1 +ah shit that sucks!,1 +antlers. nah fuck that. they look stupid and extend the paradigm of happiness seasons fucking greetings etc etc,1 +that does sound gay. I never had that in year 12. And thanks!,1 +yea dani thats kind of gay sorry to tel u lol,1 +band nerd alert!! Lol,1 +LMFAOOOOO. and he looks emo now? i'd believe it.,1 +oh. yeah. no loving for nikki. poor nikki. she's too emo.,1 +ITS GROSS. AND NOT NEEDED. I HATE IT! LMFAOOO.,1 +FUCK AT&T!,1 +damn yo I did!,1 +Dick through brains,1 +then eat ass! Don't eat ass though just eat...you ass,1 +lol ur whale penis,1 +I know there's a bottle of bourbon in that house. Hit that shit! Tap dat ass!,1 +That is bad ass.,1 +nerd!,1 +DAMN.,1 +Ouch. That sucks!!,1 +good! i hate digg...it's way too gamed,1 +Hmm...gay marriage is a subset of gay rights but they are not different animals entirely.,1 +ouch that sucks..,1 +i saw you had this thing so i made one too. loser i know ha,1 +thanks. i know i hate it to but it also makes me happy to see ppl that care. you made me smile so good job :D,1 +sigh.. I can telw you because altho you'll laugh at me at least you won't think I'm a freak or tell anyone.,1 +dawns a Fucking twat and @occultclassic that is the best song on the album,1 +damn yeah,1 +why do you eat so much you fat bastard,1 +lol. I know she's a mess. But ya ass was not getting up.,1 +Then I would be gay and I would kill myself. Don't become a boy please.,1 +yeah those darn gay alarms at CVS.....,1 +yeah im pissed. liek my body is tired but my brain isnt or is it the other way around? fuck idk anymore,1 +Yea that is some BS! I HATE MESS LIKE THAT!,1 +OMG you fucking got them didnt you?!?!?! I'm so jealous!!!!,1 +oh yeah! Radios powered by pork fat!,1 +Go back to your pork fat radio!,1 +was it the Nigella coca cola ham? that pig rocks!,1 +Fuck that shit. I told people... "DON'T MAKE THAT ACCOUNT!" and someone had to do it. Fuck that shit.,1 +hey fuck you <3,1 +that song is so emo to me,1 +ikr? It's so fucking gross. GET ONLINE AND SAVE YOURSELF FROM THE 'TARDFULNESS.,1 +the punk ass pistons?,1 +ur smater than me then. last year i was out on nye sick as fuck. came home with pneumonia,1 +FUCK YEA! THX! Id like to thank all my influences from my grandma (rip) to Sam L. id also like to thank myself for being great!,1 +LMAO!! Hot sauce indeed! but sheeeeit. you can take a picture of @shaydechelle wrapped in ME! fuck the dumb lol,1 +yeah and its really cute that i filmed two weddings that need to be edited and I CANT because my uncle sucks hard.,1 +ARGH! I hate that too!,1 +gah! Damn you spoilers! I'm only on season threeeeee!,1 +Oh man...that sucks!,1 +whooo. did you have to choke a bitch?,1 +i hate u! Jk.. But u can keep it.,1 +she took $60 from me $50 from my sis 2 separate nights. She says her stuff was jacked too. Don't buy it. Betrayal sucks.,1 +You're still alive? Well damn I just lost a bet.,1 +way to not text me back DICK. :P,1 +fuck yeah they do!,1 +holy fuck.,1 +i got the whale too. :(,1 +damn.. maybe ur next twitmance will be whole ass..,1 +sucks 2 b washed up.. gangstas paradise was the shit,1 +aw dammit I meant to call @graemem a lame-duck Scotsman. Thanks for fixing my lame-ass miss of a joke!,1 +@hermanos @jamessime wow I totally know that fine line between love and hate! #dead_by_january_i_didnt_sign_up_for_this_shit,1 +I never watch those show or even read the lists because they invariably piss me off.,1 +he's a retard. shouldnt he be old enough to know to not be so damn nosy and butt in on peoples relationship.,1 +Just keep your head up...you kick so much ass...,1 +I didn't call her fat at all! Keep your fucking nose out of other peoples business!,1 +oooooooohhhhhhh sh*t! Damn where all the white women at! Come on! Hahaha (so is that why celebs "crossover" when they make it),1 +ah damn.,1 +I hate those fucking hash tags.,1 +some loser had already. He did Daniel by elton john,1 +A pussy on my cock on my pussy if you wanna take it further. ;),1 +I've been called a pig if that helps. Recently even,1 +damn you.,1 +Hahaha! Well take care then. We would hate to lose you to your homeland anyways. Come back safe!,1 +and you're a smug cunt so it must be true!,1 +fuck yo moustache you young ass nigga. Step yo beard game up,1 +I might get in a snowball fight out this bitch!,1 +what if it could be all 3 that would stink on 2 levels but I bet it is a fat bonus or ur picking up his backyard,1 +newegg.com.... once u know u new egg.... can get a 500 gig for fucking 30 bucks on there,1 +a semicolon sounds like some sort of gay sex act gone wrong,1 +I hate it when you get "blue" teeth. LOL,1 +hour meetings foe a job you're failing at because you hate it your bentley that you don't even drive cuz gas is so expensive in,1 + Damn :(,1 +...fuck jared leto. i forgot it was his bday. 25th HIS BIRTH 26th MY BIRTH ECHELON THROUGH THE BACK DOOOOR.,1 + damn 'reply' button ... -.-,1 +agreed. UGO sucks ass,1 +it's the damn music ugh terrible!,1 +Also you are not Canadian fuck.,1 +yeah... it sucks...,1 +i hate those DIY post office things here in #ALB. no matter what the lines are still insane.,1 +rogue. I hate you and your ability to spell correctly. though some of them were red but they were communist. not rouge.,1 +I hate chris,1 +u know what................. ima put jourdan on your ass.,1 +omg that so fucking sucks,1 +fuck. :( <3,1 +this sucks ass!,1 +fuck yo couch! In yo face!,1 +FIRE HIM!!!!!! lol lame ass mofo....,1 +get your ass here !!!,1 +Nuno Bettencourt ftw. Damn!,1 +Fat ass!,1 +and most of them are ugly and fat..lol,1 +i couldnt agree more. HATE sandra lee!,1 +i'm ok now darlin :) i just hate my body sometimes. it hurts me when it's most inconvenient. i'll be ok... :) thank youuu,1 +http://twitpic.com/taap - fat.,1 +http://twitpic.com/v2mo - lol.. hate u both..,1 +http://twitpic.com/vhtp - LOOOOOOL HATE!!!!!!,1 +awwwwz poor little emo girl,1 +Damn skippy.,1 +that sucks. People are stupid.,1 +hate you both!!,1 +hate u,1 +Injections don't work in Vista? I tried in XP didn't work there either crazy bug or something :(. Damn you C++ Win32 API!,1 +it is not only terrible... it really sucks.,1 +AND DAMN I JUST LOST /AGAIN/.,1 +dude that sucks!,1 +if anyone's a loser it's YOU.,1 +lol whore bath...funny.,1 +Fat Boys have a new song?!,1 +A gay couple getting married in NYC isn't going to change anyone's idea about marriage. Divorce has redefined marriage.,1 +Heores Season 2 sucked! Full of emo shit!,1 +I LOVE Pocoyo!...because I'm a freak!,1 +i hate you.,1 +i didn't laugh fag.,1 +Pretty sure it's CO2 and H2O produces sugar but damn that was a long time ago,1 +Well that sucks.,1 +lmfao! bad ass!,1 +wow. your dad looks like a total bad ass!,1 +You coming to work today E? I know it's Gay Day and all. I wasn't sure if you were gay or just running late.,1 +Damn if TJ doesn't like your music it must really suck. This guy will cosign anything,1 +old ass nigga!,1 +they stole my slogan!!! I hate them for that!,1 +That happens here in MD too. People totally freak!,1 +bitch... lol jk,1 +why would i accuse you im SUPER FUCKING JESLOUS OF YOU,1 +kiss my icecubes formerly known as my ass cheeks.,1 +that sucks balls!,1 +I hate that too!!,1 +NERD!,1 +YOU KNOW IT BITCH. :D,1 +No God no. Fuck no. Fucking fuck god no.,1 +Gypsy bitch!!!!!,1 +LMAO!! I seen that that dude was mad angry... then got his ass beat,1 +fuck you shane lol,1 +oooh that sucks. ibuprofin,1 +enak aja! nick carter ga gay!!,1 +ohlala dago ktny tmpt nongkrong gay :D,1 +@BikerSwag damn! No kidding!,1 +Man fuck Alton-Darby.,1 +Sigh. Fuck 4chan.,1 +haha I always say that! Girl or not I too can rock out with my cock out! Hah,1 +I hate em..,1 +He's so fucking annoying. I would just tell him fuck off and it's his fault he has an unverified address >:/,1 +yeah and I am the man in the relationship @kRockXP your my bitch.,1 +D:! That's horrible ;__; This sucks.,1 +fuck off dude don't waste my time damn spam users again ...,1 +fuck off dude don't waste my time...,1 +you own a gun? remind me not to piss you off anymore.,1 +FUCK FUCK FUCK FUCK BIIAAAATCH!,1 +damn straight :),1 +damn you hater! lol,1 +OMG your so MEAN .. really really mean +_+ i hate you .. hifftt,1 +cunt? Whore?? Lololol,1 +fuck u and ur fucking break =/,1 +wow that sucks.,1 +LIES! I HATE HIM!,1 +damn straight,1 +I hate you so much you stupid New York... douche. bagel.,1 +I wish I could punch you square in the face. that's how much I hate you right now.,1 +you are a twitter/last.fm whore! :P,1 +Doh! That sucks!,1 +i hate you for both those statements. lol,1 +fuck up foo.,1 +i REALLY hate you,1 +ur gay? me. u. mall. shopping!,1 +God damn it Louis!,1 +Nerd alert!,1 +SHUT THE FUCK UP! What?! Why does Micky Rouke have ur #?,1 +Freak.,1 +VTU SUCKS >.<,1 +8 fucking am.,1 +HOLY FUCK! GIRL YOU CANT DO STUFF LIKE THAT!,1 +i hate pret,1 +That sucks!,1 +jealousy makes me hate you now hahaha,1 +And I HATE gangsters >.>,1 +haha no I'm just trying to fuck with him,1 +i hate u,1 +i hate u. looooooool,1 +Lolol well i hate u. K thx <3,1 +I will super hero my ass out there and blow the tire up myself!!!,1 +that sucks big time.,1 +damn!! *goes off to call God*,1 +FOR REAL!!!! I NEED TO JUST STOP!!!! REALLY!!!! FUCK!!!!!,1 +gotta hate that shit,1 +So you were a geek and gay at a very young age ;),1 +You fucking rock =),1 +yeah it sucks :(,1 +Thats so fucking stupid for you to say,1 +That sucks:),1 +God damn. That's some stocking up.,1 +damn girl. that was fire!,1 +makes even gay men question their sexuality.,1 +OMG where? that sucks!!,1 +lawl @ fat bitchez.,1 +you're a fat bitch? I think you just called yourself one. Lmao... Well if you wanna out yourself in that category... Ha ha,1 +fuck yeah,1 +Eat twat you twitter whore.,1 +That sucks ...,1 +what happens when someone tells u gators suck ass lmao. U pull a gun or stab them to death???,1 +god damn you.,1 +nerd. :),1 +aw that sucks.,1 +I don't wanna sound gay or nuthin' but that sir... is an arousing pic.,1 +lady i wanna fuck your tumblr.,1 +that sucks!,1 +FUCKING ELLAS A RETARDED CUNT ALOT OF PEOPLE COULD DO A BETETER JOB THEN HERE SHES RACIST AGAINST BLACKS,1 +MOD_ELLA IS A FUCKING CUNT,1 +haha ugh this sucks :(,1 +ass get out its ur last day damn it!,1 +awe how gay :P,1 +oh no...he grew out of it (after a few ass whippings)....he just steals girls hearts now (he's 20). But yea he was a baby klepto,1 +damn that sux,1 +he's gay like u lmao. And the rest of the guys are alergic to fruits. *wink* lmao.,1 +U stupid bitch. I said Its in my car u always at work or chillin with then regis niggas. Don't piss me off.,1 +hey man! You =gay! Lol jk,1 +your a pale whore..,1 +after I kept getting caught I just said fuck it lifes too short and I wanna sing off key fools!,1 +you damn betcha,1 +ass.,1 +hot ass mess!!!! hahahaha,1 +omg! that really sucks! anything serious?,1 +@nightmaremyles fuck yes to both of you. <3,1 +dude. she's fugly. i think ur a desperate ass cam perv.,1 +hahah ass :P hehe,1 +BITCH...you got a working Zune and I don't like it! Yea you got one...BUT IT AINT ENUFF!,1 +closing now. some gay xmas thing,1 +Wow! That sucks.,1 +I hate FCC they are evil,1 +fuck you,1 +damn straight,1 +I'm late to the emo-ball.. I'm not even dressed. WHY un-follow you? What did you do now (pft- can't take him anywhere...),1 +i will but now the only problem is im realllyyyy not looking forward to seeing some gay show,1 +wash yo' ass!,1 +that sucks!,1 + you came up with angry gay guy...,1 + twitter whore!,1 +is officially too gay to function!,1 +... this is so post gay it hurts .... NSFW! http://tinyurl.com/6d9ew5,1 +I hate you,1 +hell yeah fucking losers lol,1 +Fuck yeah,1 +na just a bitch of a teacher!!!!,1 +it is. Hate that LOL,1 +aww I knoow I hate that! :-P,1 +you're so gay. I hate lonestar.,1 +shits gay!,1 +fuck you Devi. slit em'!,1 +well just go to the local whore house!,1 +no way. they REALLY hate you don't they?!,1 +@ryanruppe damn you...,1 +fat guys are immoral there should be a proposition to keep them from marrying VOTE YES,1 +you're a nerd fail,1 +fucking ayeeeeee,1 +SHUT THE FUCK UP BEFORE I PUT A HAMSTER UP YOUR ASS!!,1 +YOUR MOM SUCKS ASS. Don't be such a douche. It's obviously not done. I'll add the fucking parm when the noodles are done.,1 +I hate you so hard right now.,1 +http://twitpic.com/vme7 - that sucks!,1 +we talked four days ago!!!! emo cowboy fan :),1 +Especially the gay cowboys. Ha ha.,1 +i BET YOU WERE SILLY ASS! lol,1 +You're such a nerd. lol,1 +I hate you and your steelers.,1 +fuck betty she killed me...,1 +fuck yo life nigga,1 +@farwyde Cock your gun.,1 +@design_doll Cock and bull,1 +I hate them. I eat them for dessert. I will keep following you. I believe in your cause,1 +"""marinates penis"". That's gay dude.",1 +Male Chauvinist Pig. :P,1 +wow! You're a real cunt!,1 +OMG that is a total bitch! Those jerks play that game here too except they write big fine$ with the confiscations!,1 +His ass needs to be put on blast so now his wife can see wtf he's doing.,1 +payment schedule...been there...sucks ass,1 +fuck em then! heh,1 +That sucks.,1 +That sounds like Charter. I hate Charter.,1 +YOUR INSANE BABBLE HAVE YOU LOST YO DAMN MIND?,1 +You know all about some interpretive gay dancing.,1 +hate you...,1 +hahahhaha I hate that!,1 +fuck you.,1 +fuck you haha,1 +whatever about the Gay Byrne voiceover shame on Eason's for running Christmas ads in early November!..,1 +Son of a bitch!,1 +Drupal sucks.,1 +Rooster is my bitch!,1 +Rooster is LARRY'S bitch!,1 +oh man that sucks!! LOL,1 +That really sucks.,1 +that sucks.,1 +ha! Go fuck a chickhen!,1 +fat bastard,1 +gay + high on crack + Razor sharp vagina? sounds like @andymn to me,1 +you mean we chatted about how I wish I were a gay man??,1 +faa lalala gay apparel daa da da daaa yuletide carol la la lala laaaa....,1 +Ok is it gay day today? or are those some cute azn girl socks u sexed,1 +Fuck yea it's the bomb,1 +WTF emo ass lookin bitch >< *sigh*,1 +suck my cock bitch. i am allowed to be scared of whatever i want. *z snap*,1 +Fuck.,1 +YOU ARE FUCKING BR00T4L,1 +ewww hate it hate it hate it!,1 +I hate it SO SO SO MUCH.,1 +hate. you.,1 +Son. Of. A. Bitch. :-p,1 +fuck you,1 +I hate it too.,1 +ha! sucks for u!!,1 +oh wow that really sucks. :/,1 +i hate you,1 +Oh that sucks!,1 +aww that sucks :/,1 +That's gay. Poor MCR.,1 +everything but you. Everything but you sucks.,1 +That sucks dude!,1 +Oh my fucking ~*gawd. *eye roll*,1 +aww that soo sucks D:,1 +GA has finally let out is inner ass and now everyone hates him :D,1 +Fuck you,1 +emo!lol j/k,1 +Damn girl ... Your house was dirty.,1 +I noticed that and you are not a bitch. The other thing that she also doesn't have is class.,1 +damn kenny u need emotional condoms and shit son.,1 +Kick ass!,1 +ha! my ass be bowling lol,1 +to get fat?,1 +i would hate that too. :(,1 +i hate you all,1 +/nerd *laugh*,1 +Ah. Gay!,1 +I hate you so much I just want to smash your face.,1 +Yes you are a loser... I could have told you that a long time ago...,1 +. . . HE'S FUCKING HIMSELF!,1 +yeah I got 2 backups for all that. I just hate when that happen. I been strugglin for a week now...handle that tho,0 +I hate using my BB but love my iPhone. Haven't tried the new BB. My BB is provided by my corp. I don't get to pick which model,0 +wow lol sounds like a lot of piss then hehehe,0 +not a damn thang..the typical rap beef. one person worrying about what the next is doing and the other respondin etc etc,0 +well damn!! where have you been when i have needed you 'Mother Time',0 +watching without a trace too...hate when i miss the 1st 5 minutes when the person disappears!!!!!,0 +which they do most of the time:-P I don't hate them either I wanted to be one once..but I figured out I couldn't live w/ myself,0 +haha fuck i wish i was there :(,0 +paranoid is wack as fuck...the best song on 808s is DEFINITELY Bad News,0 +in London I hate thee :( ENJOY YOURSELVES!!! <33333,0 +lollipop lolipop...oh loli loli loli....duh duh dum dum dum *Pop* Damn im so bad at cheeeering people up <3,0 +You pretty sure Angel's ass is fake too huh? I hated that 'I wont answer cuz conroversy is good' shit. That means FAKE.,0 +I hear that. I hate charging.,0 +That sucks. My furnace started making funny noises the other day and I almost had a panic attack. I don't deal with cold well :),0 +9na :)",0 +I hate your job too.,0 +LOL! I'm not proud of my inability to deal with the cold :( I hate the treadmill too but not as much as the cold...,0 +I hate upping more than downing lol @seanzageek Its pretty awesome AMD hasn't met release dates let alone beaten them in ages :),0 +Awesome :) I hate updating the BIOS LOL,0 +Looks like a good competitor :) Wouldn't touch it personally hate Symbian and Nokia Software :) My N95 is a bitch lol,0 +ok that sucks. Someone needs to remind them about progressive enhancment....,0 +Omg that sucks but it's SO funny,0 +lol i know what you mean. But i kinda am a nerd so yeah but still,0 +I hate that bands have wardrobes.,0 +that sucks dude sorry for your loss,0 +okay cool. I can help you guys this weekend. Those routers are a bitch to get working some times.,0 +i hate when shows take holiday breaks. its killer to my free time.,0 +I'm such a pizza freak... Mmm.,0 +Oh honey just hold in your mind the rankest thing a guy has ever done to piss you off and you'll have bitchy in no time.,0 +...okay. Maybe ONE more thing to look at on the interwebs. Damn you.,0 +Damn! now I remember that people used to call you Benyl! forgot that little detail you see,0 +pretty much all bus drivers are fat... Besides Flavio.,0 +http://twitpic.com/sbrn - we hate you phil. doesnt TV want you yet?,0 +Thanks Yeah shes fine they have her sedated..we hate hospitals so she was being a bit rude. So they knocked he out!,0 +hate friendfeed...especially since Scoble endorses it :),0 +damn. oh well. i'll have to go find someone who's trained or something...wait my WIFE is getting trained. now THAT's an idea!,0 +You're going too? Fun. @JesusNeedsNewPR I hate job hunting,0 +damn . . . now I really REALLY want breakfast food!,0 +ughhh that sucks!!!! How'd you get back from Sterling?,0 +I hate it. Horrible stuff.,0 +That sucks. Poor baby Andy. Hope he gets better.,0 +OMG again eating :P yaar u eat alot but u don't look so fat what is the sceen behind this :S,0 +wx in ny sucks! haha lots of snowww and blowing wind!,0 +LULZ is gay!,0 +Fuck yeah! :P Where've you been ...?,0 +I HATE when that happens!,0 +What I HATE are white collars on colored shirts.,0 +that sucks. Where are you trying to watch it?,0 +lol I hate you. And by hate I mean love but I still hate you XD,0 +my time sucks... having a difficult time MANAGING w/o the structure of college classes but I really want to work w/ you on it,0 +Ha! If I were your neighbor you'd be tweeting about that bitch next door with the loud music. Admit it.,0 +Stumped on that one...hate to admit it!,0 +Well well well...damn that sounds fantastic LOL I'm sorry what exactly was it that you wanted?,0 +ugh that sucks babe,0 +damn straight! Happy birthday Maddie!!! Xoxoxo.,0 +that is great. I would hate for you to have that big truck come by during the holidays.,0 +I've never found a way so I "star" those. I love GMail when I don't hate it.,0 +Hate what ?,0 +ITS FUCKING HILARIOUS",0 +I hate auntie flow too. I should be starting soon. :( I gained weight this week from pms (eating a lot)!,0 +How do you do that? I HATE my Blackjack so much I have almost resorted to violence?,0 +if the opportunity arises aye aye. God I hate kids.,0 +yeah hes fucking serious,0 +Being on fire is "safe"? I'd hate to see what you consider peril!,0 +Sure name your price. Oh fuck sorry I'm not THAT pissed,0 +fuck...I forgot,0 +i hate myspaces people you should know,0 +ah damn!,0 +the beef stew from that latin place? I fucking loved their coffee i wanna eat there again.,0 +AHHHH. Brandy!!!! I LOVE 'HUMAN' like a fat kid loves cake! Thank you for making this album. AHHHHH I love you girl!! OMG!!!!!!,0 +Dude. That. Sucks. :(,0 +haha thats sucks.. if that happened to me idk what i would have done.,0 +oooo she's gonna go kick your ass now XD,0 +I HATE tht,0 +whale wars?? sounds epic.,0 +can't you wind the flash levels down? I hate flash I'd rip the things off if I could...,0 +LOL!! It's ok to admit that you got fat or phat :-P. Hahahahaha jk :-D.,0 +-a",0 +drm sucks.,0 +don't forget ppl sitting around working in a tshirt/boxers lol. J/K my wife is a neat freak & believe it or not I kind of am too,0 +Crying. Literally. You win. I'm destroyed laughing and crying and I hate and love you all at once.,0 +All computers hate you back! Haha...good luck.,0 +Big Fat Quiz of The Year 2008 is on C4+1.,0 +damn it!,0 +Thing I hate the most = Alternate side of the street parking rules.,0 +Awww bless darling you know you can *always* wear a wig and stilettos. In other news: National Treasure sucks.,0 +Weird. I gotta say I love my pig.,0 +There was a SVT tweet-up last night damn I was down at BJ's in Cupertino till 7ish,0 +i hate it when people buy stuff between thanksgiving and christmas!! Cuz then you don't know what to get them!!,0 +Oh heck! I was all ready to pull a Dan Rather and pronounce Dick Cheney dead.,0 +In case it's not obvious the rabbit glasses and ass are not phone-cam pix.,0 +Hate them. If I'm not pulled in by their previous tweet content I might even unfollow. Basically still selling to a stranger.,0 +Actually I have some problems with the British pronunciation... And yes my Internet service sucks..,0 +those will sell like hot cocks....cakes...hot cakes...damn it!,0 +it's the power of having ass loads of money....some people could release an album of static and it'd still go platinum,0 +damn sorry to hear it,0 +see previous. Damn twitter.,0 +He's got NO right but that makes no diff to him. He's just still mad he went from "cotdamn!!" to "oh.....damn.",0 +if u hate shapes how can you pull shapes?,0 +OMG. GREAT list! I can add to TMI Freak. Folo one who shares stories about sex toys. No joke.,0 +I hate it so much! :),0 +Would you mind if I blogged about it to? Hate doing that without asking first! #cleanup09,0 +IT'S SO FUCKING CUTE,0 +i hate it when that happens :),0 +so he isnt gay anymore?,0 +are you still at school?! Ha!! Sucks to be you!! I finished two and a half weeks ago.,0 +and THAT is why I hate that movie/musical. Despite the awesome music there's no redemption and I love redemption.,0 +oh and go blue whale watching. forgot to say.,0 +I got a gigantic bad ass pizza cutter. It's not just for pizza anymore.,0 +Me will be snoring in about 10... tired. I woke up at 5 damn it all,0 +I work in McCormick Place & hate the commute to nwi. You probably wouldn't even need to rehearse with the repetitive repertoire.,0 +I swear I had to really force myself today. hate days like that!,0 +It really sucks most come on due to too much stress. I cannot control them. It has ruined a lot in my life but keep pushing on!,0 +I hate Heidi and Spencer!!!!!!! I want them off the show!!!!!! YUCK!,0 +Damn it all... I hate being trendy! LOL!,0 +thanks. it's part 2 we got stuck on. The rolling didn't seem to work. I'm a loser :),0 +yeah gymboy time for you to fuck those weights and do some plyometrics,0 +damn that's quite a long code...but one thing I can tell right now is that STDOUT and tty output streams need not be same,0 +u take CNN's word over mine? damn it. already told u that. ;),0 +word? oh damn! didn't expect that response,0 +ah damn Sosa not the Bumsquad fam.......Hopefully you didn't drop $600,0 +I thought 7lbs represented the weight of the burdeon on his shoulders. By the way the movie was pretty damn good wasn't it?,0 +You have waaaaaaaaaaay too much free time! ...but that's damn cool!,0 +damn shame right? Specially since there's so much uncut dope out there!,0 +hey- finally managed to book the damn tickets online- took me over an hour!!! PVR sucks.,0 +damn them! I'll link to another,0 +oh DAMN. I should be SO much more sophisticated but that IS a cool #song. OK except that last bit. eep. a little too #MS,0 +the new MacBook Pro?I am getting used to the tapping. I hate the way new track pad clicks. Too loud. Too hard to press.,0 +if Santa's magic dies he just becomes a regular old fat guy in a funny looking suit taking a 747 back to the North Pole,0 +damn!,0 +aww damn! I think we need to kick him out the league! LOL,0 +also need to know if it is needle free as belenophobic husband would freak.,0 +BOTH ARGHH!!!! I'm gonna nap cuz I'm emo right now.,0 + Damn him!! Oh well...worth a try.,0 +My friend is gay so it was kinda perfect - he said I could shop all day and then we'd go out. And no putting out! ;),0 +I have family flying in soon. Also I don't fly O'Hare in winter. My new rule. HATE. He's at a nice hotel though. :/,0 +I'm not sick unless by sick you mean bad ass. In which case I am totally sick. Sick with a "ph" yo!,0 +I hate when that happens!,0 +I knew it wouldn't freak u out when ur time came! Capture it if u can.,0 +dammit I need to get an iphone. no damn verizon...,0 +no kiddin! I hate wedding planning mania. probably the reason i got married by a justice of the peace with two witnesses.,0 +you're damn right I did,0 +I never thought of it that way - but damn - that IS a good name..,0 +He was a poodle of some kind. Toy maybe? I remember his name was Jack. So damn cute I wanted to just pick him up and squeeze him!!,0 +dude you must earn or have a lot of dough to shell out 50usd a day! Damn that's serious!,0 +it's pretty bad ass YO!! and the guys that run it kick ass too,0 +lol...I might...sun isn't up yet. Busy multiple projects and people ready to kick ass or "die tryin" :)) wErd,0 +niCE that totally kicks ass!!,0 +damn skippy trippy :),0 + man! I have an idea that you will LOVE & HATE!!,0 +is there a good intro to cucumber+rspec? the wiki sucks.,0 + when i was young i used to hate terry preichet!because i compared him to tolkien... pretty dumb in hindsight!,0 +I hate how the corporate world wants americans to shave everyday.,0 +It's just so damn cute. even the ghosties that KILL YOU OVER AND OVER AND OVER AND OVER.... *ahem* are cute.,0 +Damn Thats out of reach for me now. Thanks anyway. Ever tried this ? http://camstudio.org,0 +Thats cause they are School Girls! GAY!,0 +and also jus my lappy is gone so m usin last fm...othrwise who gives a damn...once its bak i'll hav all the songs so bbye last.fm,0 +ugh that sucks. Its good she cares but still I'm sure you'd be ok.,0 +Ashley",0 +damn you! was there grape? please tell me you've tried grape. its the best!,0 +damn I wanna go Ms Baker too!,0 +damn I wanna go see Ms Baker too!,0 +You should had me do that cleaning. Damn.,0 +yeah but are they stealing them from those damned stores that hold the poor things hostage in windows? i hate those stores,0 +Damn him! I had my milk all ready for some dunkin',0 +that sucks.,0 +I hate to say it but I'm day 14 :( That is the only item both my kids have in common on there Christmas list this year!,0 +it's cuz twinkle sucks :),0 +have a safe trip planes freak me out :(,0 +Will Tweetie ever startup/refresh with the last read tweet like Twitterific? I hate scrolling wayyyy down to see tweets i missed,0 +Ahh! Damn! Thank you! Is there any way to show them?,0 +oooh no be well that sucks - i know :-),0 +to bad i am the god damn WINNAR!,0 +ur telling me! Especially out on the back roads in east bum fuck!,0 +you are gorgeous as fuck.,0 +ouch that sucks.,0 +Yeah do you believe our kids hate steak? When we have steak they eat lips and you know whats. LOL,0 +Damn girl these are CUTE! http://tinyurl.com/8d8v8c,0 +I think I have the same nasty chest cough. It sucks.,0 +know you have the Yahoo T&C story too... damn what are they chasing the few customers they have away now?,0 +- thanks for following Austin Girl's @fatbastardrules. Fat Bastard loves pink stilettos & pink iPhones. Not afraid to ...,0 +- Austin Girl & Fat Bastard are giggling with anticipation over Kitty Kat's Halloween pics!,0 +- Austin Girl's Fat Bastard (Beagle) fibs on reading diet & exercise books really reading 'Guide to the Best Chow in Town.',0 +#NAME?,0 +I WANT TO...but i will be in vegas....FUCK lol...i wanna go see the wrestler...its in SB i assume? gimme the details,0 +Lucky u! Its summer here in Aus..bloody hate it when it gets over 35c...wanna swap? Ill make a snow man in thy honour! lol,0 +well I try my best. SOCIAL media..keep it social damn it!! peace love and happiness leslea =),0 +do you mind that? i hate that term.,0 +thanks sweety. Loki just rubbed me in with Ben Gay before he passed out for the night. too.,0 +I'm surprised you hate this movie so much - um what exactly is a good movie for you?,0 +oh man that was a funny tweet. I'm in tears over here. Hahaha. I hate mac "genuises" soooo much.,0 +smart ass - here http://thetyser.com/,0 +oooommmmmmmmg im watching biggest loser and i dont know who to vote for who are u going to do,0 +hey hey Biggest loser couples starts on tuesday,0 +that's the spirit! kick ass!,0 +no. no. no toasted ass. kaya toast please! :D,0 +he was yelling at me that golden axe sucks I have to play castle crashers. Which is the same game but newer.,0 +right now I hate you and wanna be you at the same time... Such a weird feeling. Btw Dirty Sexy Money rocks ;-),0 + how is your blog? Your blog makes me hungry. I hate cooking but like eating :),0 +btw - quick disclaimer in general I hate 90% of the "believers" I have met.. especially christards.,0 +today its warm though crazy ass Cali weather,0 +I hate it when that happens. I've been yelled at by many bus drivers in the past.,0 +on todays burn the fat blog. Did I strike a nerve? http://tinyurl.com/69xzth " A-Bud: I thought it was dead on.,0 +CAAAAARRRRBBBS & FAT - yum thanks for sharing ;),0 +i hate it when that happens :(,0 +that was when wrestling was bad ass. Raw is war against wcw,0 +Damn!! Thats cold! The reason I'm always there for my kids!,0 +I prefer no doz pills washed down with coffee to get my ass movin.....,0 +who ruined your day im looking for an ass to kick 2day,0 +something about piss should do. or zebras.,0 +oh blah. I noticed the used look that's easy to do but damn... green?? ARG.,0 +: that sucks! well maybe not... maybe i can get some things done before you start buggin' me. ;),0 +good point cause I need someone to take care of that damn pony,0 +I've had a few 'fat' comments. yeah cause I claim to be thin!!,0 +damn man. those look like some good eats.,0 +if we can get a big enough turnout. i can line up some sponsors for a kick ass reception. we've got till then to grow the #tpt,0 +lol....hate when movies get the poker wrong.,0 +Damn! Wish I was there!,0 +I have no doubt that there is a problem there it's just not the only problem. I hate mutilple variables in a problem!,0 +Damn they had frontiers there! next time. have you seen The ordeal?,0 +Andrew was being boring before so i stopped watching. Damn he has been on forever haha.,0 +i hate you for making me google that.,0 +Alyssa Milano is off tha market!!!! DAMN!!!! LOL,0 +notice they waited for me to leave before they kicked gordons ass. ps 90min wait at border.,0 +BET sucks except The Wire reruns,0 +cool. what kind/speed is it? my 500 has about 60 gigs left and i hate deleting things,0 +No you I hate you (because of PES :p),0 +damn! Next time It will be correct I promise ;),0 +Make it again. I'll post on it. I have lots of micro-hate.,0 +Safest not to get on the airplane at all IMO.Hate to fly though going to grit my teeth & do it again in Feb after 8 yrs. :-(,0 +damn I missing the leak! At a bar enjoying this ice storm.....an iphone work perfectly,0 +damn it i miss having pets now!,0 +damn it i'll trade you!,0 +ya so am i and i stay fat. Evil! You're so lucky. Its unfair!,0 +oh.. Hmph that sucks. My niece just tried to open one of my christmas presents.,0 +LOL ... no ... a very large dark sausage-like-thing made with pig's blood and spices. Surprisingly tasty despite that :),0 +fuck looking cute i'm strictly Timb boots & army certified suits,0 +not to piss u off but I got a cut yesterday.,0 +I'm not getting the firewood...its saturday damn it!,0 +got damn this dudes flow is boooooring. *sleeps*,0 +got damn man. that's nice!!,0 +Penn (shitbird) & Teller (I hate them. A lot) vs (the irrisistably awesome) Jamie & Adam? Sorry is there even a question in there?,0 +...they're fucking jeans.,0 +Must Hate Hitler.,0 +Wouldn't know Greys if it bit me on the ass. I think she's been a supporting player in some ish I saw already. Total b-list.,0 +alybrooke i can! I hate shopping!,0 +FUCK YES!,0 +Fucking useless ... Sling the Disability Discrimination Act at em !!!bloody terrible !!,0 +hahah! OMG that was the creepiest clip of crazy I've ever seen in my life and I hate that part of the trailer! AHHHH!,0 +oh I hate auto DMs like that!,0 +that sucks. I heard about their closing a few months ago. They were a great group of people.,0 +that sucks how many dogs? ...2?,0 +Heh! Parcells is a bad-ass who knows how to help you to find your inner bad-ass. Hey that sounds like a book.,0 +Thanks for the DM...I hate them 2 but another player over 100 million...that makes 5...Deep Pockets???,0 +I'm fairly certain you'll be seeing more of Kevin on Best Damn in the coming months. At least more rants if nothing else. :),0 +Damn I'm working @ home this aft or I'd drop by (my office is right near there). Don't suppose you'll be there again tomorrow?,0 +absolutely nothing being the point :P and i have gay exams tomorow i really should use this time to revise....but arts more fun,0 +dont hate hun.,0 +@inworship let's not start with the gay stuff I just watched Chuck & Larry!,0 +I meant a smiley face - darn fat fingers. I love your goal.,0 +Srsly me too. He is such a fucking dreamboat. I still spazz out when he sings EODM in Watching the Detectives.,0 +damn now I have to go for a run ...,0 +damn! nice to hear someone playing Q3A! missing it. Try a game against Xaero and let me know :P - Grunt laugh-> grr..Ha-ha!,0 +http://tinyurl.com/6d4a86 so fucking CUTE!!!,0 +http://i120.photobucket.com/albums/o163/kelcee247/0000diesal.jpg oh craig! damn him & his sexy hips lmao,0 +Damn I only got 1. I'm gonna get a complex now.,0 +dude I'm still pissed about that damn movie,0 +oh yeah we'd be soft fat and happy LOL!,0 +hahahaha damn right!,0 +awww man e'rbody coolin' my wild ass brother was buggin earlier so i went a drunk a 5th to the head wit my cuz bout noon but,0 +Hell yeah I cried... a world without buffy is a world without hope... Sarah michelle gellar too damn beautiful to die hee hee,0 +damn! Should have dome that,0 +You have serious iPhone keyboard accuracy issues krk! or really fat fingers.,0 +Tough time of year to keep the weight off. Without my bicycle commuting I'd be hosed. Road bike has some dust on it. Damn...,0 +I have that dream. I have the gay husband already but apparently he's missing a gene.,0 +I nominate @BadEvan in #personal because he's local cute gay and an interesting Twitter user.,0 +It's good to know that even people within Marvel hate Gambit. It gives me hope.,0 +lol I know. I'm not a damn fool.,0 +damn.. Intense.,0 +haha don't hate on my mad skills.,0 +not a fucking problem for me :),0 +me board and not feeln good From to much parting I hate Being alone times like this. I like boys ;-),0 +who u tellin i hate doing them im doing them now i was suppose to be orff an hour ago.....,0 +That sucks. I am sorry want me to vagina punch her for you since I am sure you hurt too bad to do it yourself???,0 + DAMN mood swings..,0 +true that. with more fat.,0 +sorry about that. I understand it's my epic failure in my parents eyes. I will be forever fat to them :( don't listen to them!,0 +ah traffic sucks!!,0 +Ha LOL. Don't worry. Josh and I don't exist on the winner or loser side. And the Pix.ly logo is on the loser side though.,0 +is any of them super bad ass?,0 +le gasp! I'm so jealous I fucking love NY!,0 +Dang Id hate to see whats in Twinkies!,0 +to expect a 20+ mpg auto that does not look like a God damn Easter egg or roller skate that is unreasonable. ;),0 +take yo ass to bed....lol!,0 +I HATE ART COMPLETELY! Did you have to do design and expressive and all that shite? I hate it!,0 +sucks that the rule is when u sell property back u lose a bit,0 +Thanks for your kind words about Sincerity Sucks. That's always been one of my favorites.,0 +Damn. Wizards beat sultans every time. I'll have to try harder. ;),0 +Oh no! That sucks!,0 +Wrestling with this 2. Yeah I'm different. This wk I decided "Fuck all that." With some I'll work hard to explain. Otherwise..,0 +is nibbling my ass while i sleep. i'm into it.,0 +just so you no my ass hurts more now. right where the leg meets the butt.. the cup-able part.,0 +i haven't been fed cock since saturday morning!,0 +or pussy.,0 +The "That's 'Smart Bitch' To You" one.,0 +Long day? I hate meetings. I HATE them.,0 +That's pretty cool. My first exposure to the concept was gaming in middle school. I was (am) such a nerd.,0 +you just love Plies "fruit snack eating ass",0 +they waiting for an Xbox or something? damn lol,0 +Damn we keep missing each other!,0 +Watch me fuck up typing on my iPhone... Hahaha,0 +LOL no I'm in Utah. If you tell me she has anothe son named Aeddon I'm going to totally freak out though!!!,0 + @ BrettLegree is a genius really. If he says it sucks it sucks. I work for myself and still have to use it. :(,0 +im glad u agree. i was starting to wonder if i was being an ass about that one,0 +I love that one hand it over or we'll kick your ass Santa!,0 +Damn you for stealing the heat.,0 +I'm scared! Pig in a suit? Were they all out of blankets?,0 +that is of course if our god damn modem stays synced...,0 +Tea sucks. Recommends 3 cups/night. Right.,0 +Damn it will probably take longer than that. I'll check when I'm at the post office.,0 +what club u @? Damn I fell alseep!,0 +Thank God for bootcamp",0 +You are so right. I hate commercials. I mute them whenever we watch TV.,0 +do you play? I have kind of a love-hate relationship with that stupid game.,0 +I fucking love Mr Egg! It's saved my life after many a messy night out,0 +I know! Damn it! My apologies I was flattened by the lurgy til New Year. Up and down to London a lot now so gin WILL occur,0 +wait wait i know: to drive you insane. have i mentioned that i hate spammers especially@hkdimon ones who slip through akismet.,0 +is that what's happening? we are freezing here in socal office too. i applaud the plan but hate the execution.,0 +i concur cold sucks but it rains too much in the tropics there's no real win-win,0 +well that sucks. lol discriminating against WoW players...though i can see the logic,0 +My friend has wii fit and it's pretty damn cool. Technology amazes me.,0 +hey I was wondering that too. Kept getting 'no service' was pretty gay. I used the pennytel app instead optus's loss ;),0 +I disagree. You're only a poser if you flaunt it and/or have your nose stuck up in the air.,0 +...it is pretty damn funny to think that Bush drives people crazy to the point that they resort to throwing shoes.,0 +Damn Good Gift,0 +Smh I thought Soulja Boy Would Do some Good Numbers....This is When Parents Buy The Most Stuff For There Kids.....Damn Bad Times...,0 +Damn...Just been Bad Luck For you lately My Boy hope things turn around for you.....,0 +Yea that Simply Orange is That Deal..I be Drinkin That 2..Man I Hate Water its so nasty i never drink it lol...Juice Or Pop Forme,0 +I hate it when I get sentences stuck in my head! It's so annoying!,0 +gluten and dairy free mix from @traderjoes . Damn good! i highly recommend. Silk soy egg nog's not so bad either :D,0 +you should come make that for me! I haven't had lunch today. I feel kinda sick again. That sucks.,0 +I figured so but I went with the obscure Peter Sellers nod. Me = nerd.,0 +Damn last tweet was for you :P,0 +ok I like this one...damn I wish we could these here in Oz...ROCKMOUNT FLEUR DE LIS SHIRTS FOR MEN...get the black/silver one,0 +#NAME?,0 +- sucks for you man. @JennJaye took weeks to get over her latest illness.,0 +- I agree. No More SteveNotes. Damn!,0 +ah damn...my linksys is v.5 won't work with Tomato.,0 +fuck yeah!,0 +damn I should check twitter in the morning I guess I would have known how bad out it was thanks to you! Yet I fell on myass,0 +damn I was also going to say that the girls might be shopping at linens n things,0 +How are you "fat" if you have a fairly chiseled face in your pic?,0 +I hate taking pic's. How do we know that your pic isn't stolen from a super model? LOL,0 +well i have other people following me outside of blogtv kiddies. i don't want to piss them off :-(,0 +Awesome. I make pretty good waffles but can't make pancakes to my own satisfaction. Too damn picky about them.,0 +I missed that?? damn!!,0 +it's a board game: http://tinyurl.com/8fv8hh - the instructions were so damn complex that i missed a whole bunch of stuff,0 + Hairballs I hate those things...,0 +totally sucks for him to go out like this,0 +Damn that's a short movie.,0 +hah!!! sucks being in canda! Roland we have bright sunny skys,0 +Yeah I guess so... God I hate them. You like the show too?? Yay!,0 +twitter's bugging like shit. my tweets stay on top while your guy's updates underneath. this shit is gay.,0 +.... nerd.... but I'm glad you are... when you get a chance can you update mine.. ha,0 +well hate 2 tell ya it may b 2 late 4 @davidpatterson3 mayb he should stay @ church all day :-),0 +I think it'll suit him. Just hate waiting for movies to actually come out :(,0 +Little kids. I love em. School aged kids...NO THANK YOU! Especially not these grown ass kids nowadays! *smack* LoL.,0 +mmmmmm cookies.... sorry had a fat moment lol whats up?,0 +I hate when I do that... or think I set it for AM when I set it for PM... lol,0 +OMG if your age is 58 i'd hate to know mine.....,0 +Like you had any damn good liquor in the first place cheap heiffa! :op,0 +And how is more "traditional" marriage threatened by gay marriage?,0 +I am bored as well; damn work,0 +and it's a damn fine one.,0 +damn it's a collection too? U freakin tease! :(. I gotta couple stacks on it!? LOL,0 +wait...92 mill!? i thought you said 9...god damn that's alot of money!,0 +baby don't hate me. http://bit.ly/nc2u,0 +that sucks!,0 +Jesper wants a big fat 60-day ban on MTF,0 +thanks. he's doing better stable for the moment. Hoping the industrial strength antibiotics will do the trick. Still sucks.,0 +http://twitpic.com/vkky - Those are kinda cute...I like leggins for the most part but I can't stand them damn stirrup pants ...,0 +lulz. Life sucks today. No happy people (authentically happy at least) or Aveda to visit. Jay's cousin is here though..yay?,0 +Don't you hate that. Any idea how they got your password?,0 +My blog sucks. No direction. It is just that I'd rather write about what I'm interested in than keeping to a theme :-),0 +I missed you again damn it.,0 +Damn must get ready for work...*loves* I miss U,0 +sweet but no hurry I know you are kick ass busy. Also it isn't het...,0 +that sucks =( =( i'm sorry *hug*,0 +that sucks! I hope you feel better soon *hug*,0 +@jawkdna Coke sucks Pepsi rules.,0 +facebook is better than twitter I have mine linked tho lol. make your facebook not hate me!! it won't let me see your page :(,0 +...I mean damn...did you eat yet with all that talk!?! lol,0 +Girl! That. Damn. Commercial. !!!,0 +Girl UnSung has had me riveted all damn night. Been recording them and everything but I'm sitting up watching. They are so good!,0 +Hmm that's a tough call. Honestly there are so many diff apps I toy with that I can't pin it down. I hate the stock today screen,0 +still snowing like a bitch here in Tijeras.,0 +What's goodie Jamz! ROTFLMAO @ the fact that T-Pain's singing damn near gives u seizures!,0 +oh that sucks :(,0 +you are a push up whore...one day it may save your life.,0 +Jamaican Oh shit I done started something. My great grandama is Jamaican & I am yell so I can't trust my damn self. LOL!!!,0 +Yes its a link to an article posted on FF. did the link not work for you? Maybe u have to be on FF? That sucks. Let me know!,0 +What the heck is wrong with the Bills. They are tanking at the wrong time. This sucks.,0 +damn. and now we got all the snow everythinnn was fixed back to normal.,0 +alright i can take the blame i guess.. just because you're so damn awesome,0 +you mean there's no bathroom fairy that cleans my bathrooms? UGH! I hate it too!,0 +People need to be more open minded and excepting of others beliefs. Merry Christmas is to speard joy not hate.,0 +and big kisses to you too doll!",0 + DUDE! let's make some fucking art!!!!,0 +that's a shame. It's damn good.,0 +cucumber sounds masculine enuf to me. Can name it "cum" for short.,0 +damn girl..how sad is that..shame on that wack-ster!!,0 +Ohh I feel for you I would hate to go until mid June. We get out the 3rd week in May.,0 +that is too damn cute!!,0 +what do you hate?,0 +FUCK YEAH.,0 +hey is your blog snowing? How cool is that! either that or my computer is just about to freak out... ;),0 +ha ha... there are times I just think I should be kicking my own ass... although there could be some advantages to being there?,0 +ok I think you are on the right track. just hate to see someone who is bright and motivated trip up on the details. its a curse,0 +I'll take a stab...send me a DM...I do this somewhat professionally on the side (former English major nerd!),0 +I really like it too. I don't know why a lot of people hate it.,0 +Your computer gave my computer an STD! Your computer is a whore!,0 +DAMN YOU!!! Kay commercials kill me every time! GRR! :P,0 +i think we should give the creater of the phrase "HOW DID U MET YOUTUBE BITCH" a million dollars.,0 +HOW DID U MET YOUTUBE BITCH?!,0 +HOW DID U MET YOUTUBE BITCH!?,0 +#humor @charlestrippy because he's the YOUTUBE BITCH.,0 +GET OUT HERE! :) come on bro enjoy some so cal sun! hate to rub it in but yes it's beautiful again today,0 +what site did you use for it haha I have to make a blog we're saying fuck joomla :P for now...,0 +stop putting your damn headphones on so I can talk to you...then maybe you wouldn't be bored unf.,0 +that sucks. It would have ben fun and you could have had pizza! If it makes you feel any better im stuck home with a tummy bug. Boo,0 +don't diet! I'm not trying until Jan then its hardcore dieting for me! And sucks about your boiler breaking :'(,0 +its my guilty pleasure..i hate it but i cant help but watch..*hangs head low*,0 +lol ok shit i am going to get so fat!!!,0 +damn homey. you taking the camera for some hotel reviews?...obvi?,0 +definitely (2). i hate getting stuck if others sit near me.,0 +In my next life I'm coming back as a nerd. Guaranteed. LOL.,0 +That baby would be the BIGGEST freak on BOTH sides of the Mississippi...it would come with its own baby BOB probably. Lol.,0 +I hate because. Everything in my life currently prevents me from finding any happiness. I need to change everything in my life,0 +I dont know y u hate this ad. I loved this ad the first time when I saw it. Something like 'take it back dude' sort of ads..,0 +I think I'm officially a nerd. <lateral lisp GO> let's go watch battlestar galactica and mythbusters picture in picture!,0 +humidity sucks. Makes my hair look terrible haha but it more than that it makes you feel like you don't wanna do crap!,0 +man you love my crazy ass no matter what and its the same this way! Best friends forever b!,0 +hahahahahah fuck awesome :D +faved,0 +@shivoo got a get together in the building. Dad's the chairman so gotta make sure i'm there. Cant describe how much I hate the idea,0 +a samosa in the canteen.... damn hungry,0 +I was a Firefox addict but then FF3 started to crash on my Vista machine at work like a bitch so I decided to abandon it....,0 +Like Damn! Iam a cool attractive young woman making moves in NYC striving for greatness...,0 +haha busy I hate the holidays ugh. How have you been man?,0 +Lol its not ruined I can always delete the partition :) I don't hate Winblows I like OSX and Windows.,0 +Seriously Cat 16 000? Seriously? UR a beast ... if there was a bloggin HOF I'd nominate u First ballot... Fuck Perez!,0 +no YOU'RE amazing... and i'm feeling Fat and Sassy,0 +I hate that salt is on my new car,0 +thanks for the feedback - i dont hate socialmedian i think with some adjustments it could work fine,0 +I just haven't had one in such a long long time. And that Moby Dick one is AWESOME. That's the best thing I've seen all day.,0 +No no...not saying I like NY necessarily just that I still hate FL,0 +I used to hate it when I was a kid... but now I love having my name spelled just a little differently! Makes me feel spehshul!!,0 +Dick is the defensive coordinator. he is who made their D so great but even so tomlin is head coach offense is included.,0 +mhmm dick has been doin well even so the team overall makes a lot of little mistakes they need to fix. we'd be a whole new team,0 +i almost changed the channel after petersen's damn horse collar!,0 +I'm now following your twitter. I agree the winter sucks.,0 +Damn!,0 +that sucks. We need to save $$ for the flight to the inauguration so we're only doing wings tonight,0 +Damn you should have accepted them and said your name was @stephbarnard,0 +I hate that! We are a family of taking on those no hope cases all the time. Your heart goes out to them Peta makes it bad,0 +Clearly you hate me :),0 +http://twitpic.com/t7y5 - Umm damn. I'm just sayin'.,0 +omg me too. for reals it's getting outta control. I wanna get off the pill man i'm hungry all the fucking time! Lame!,0 +ohh damn I missed him!!,0 +i have unknowlingly and unintentionally raised a science nerd. shall i tell you what you're in for over the next 13 or so years?,0 +i have a recipe for pepper cookies which is quite nice..but a royal pain in the ass to make. also only makes about 10 cookies. wtf?,0 +i agree. i've spent more time in my car this week than i did during all my summer road trips combined. i hate winter.,0 +wht the fuck Ever go get a Life I'm DONE w/ yr DRAMA & yr FUCKED up life & yes go ahead & RT if u rlly don't have a life,0 +I've truly been happy with DirecTV for a LONG time. However Verizon DSL sucks a duck. I'd love to have faster internet.,0 +gawd i hate it when it does that!,0 +That sucks. Once Dec. 31st comes it'll prob be more awkward huh? Or maybe not since some people will be gone?,0 +You ARE NOT! Who called you that?!? Me and @BethHarte have experience with tag-team whup-ass! C'mon Beth... let's roll. LOL,0 +ever fooled w TwenMax? Saved our ass plenty times. http://blog.greensock.com/tweenmaxas3/,0 +lmfao omg that whole podcast fucking rocks,0 +The video is kinda gay.,0 +Dude! Right?! I'm saying. What is UP with the mass illness this holiday weekend?! Totally sucks that's what's up...,0 +lol man damn!,0 +OH. MY. GOD. So damn cute!,0 +maybe later when they're all glistening in dairy fat.,0 + That is bad ass thanks. :),0 +Gay men love me. Wait till they all start Twittering each other. They will find the @cheeky_geeky.,0 +Your MIL is a brave woman. I hate that place. I'm glad my boys are getting too old for it now. *shudders*,0 +ha ha that sucks !,0 +@iandrea is a GEEK not a nerd!,0 +muahahaha that super sucks. i just shot ppl to death. eff the time trials takes too much time. only had the game for a day.,0 +oh well guess i'll rent oit for like 8 dollars...i hate blockbuster. can't wait for prince of persia when i get paid,0 +i told him it was urs but he dint seem to care besides it dosent work its broke...FUCK IM BORED!,0 +damn that took a while what a work out lol,0 +i love zombie flicks too! i hate horror movies but bring on the zombies ;),0 +damn straight,0 +YOUR vote isn't worth a damn cent ;-) LOL,0 +Im a retard and I know it XD you luvvers me lots tho!,0 +I AM NOT!! I cant believe you said that >.> Hate you so much right now,0 +totally :D i'm such a nerd :),0 +I realized I typed Laughing Ass My Off instead of LMAO XD huahahaha... keyboard-brain-error :P,0 +*gasp* I may have to terminate our intarwebz friendship because you hate Anne. *cries* ;),0 +Heh some smart ass recently posted that on the forum I frequent. There were gags aplenty. #thatswhatshesaid,0 +Ugh I've done that more times than I care to admit. SUCH a piss off.,0 +When you mentioned bacon candle I assumed it was made from the bacon fat -did you really mean bacon flavoured candle?,0 +Damn iPhone I meant wine and cheese,0 +Really? That's your take away from that crazy ass quote? Really?,0 +kick ass!,0 +Perhaps I will send you a link to one of my "fat" pictures so you can see what I used to look like. HORROR,0 +You? Fat? Never! And you might not be my fangirl anymore after you see mine. Kirstie Alley = Me,0 +Awww thanks. <3 You're pretty damn cute yourself!,0 +I'm gonna kill it. I hate how it looks like its going through but actually doesnt,0 +Yeah I was following that. That sucks :( Any night with a Dane Cook movie sucks either way though.,0 +sigh i just got done yappin to calvin and looking at baby pictures. he's still sexy as FUCK!,0 +me too lets start with our favorites... FUCK!,0 +: I totally relate; Love the stuff- hate the process- Personal shoppers or online stores...way to go,0 +- damn! I almost bought those!,0 +Yep the syncing is my biggest worry. And no control over the markup sucks. And not good for code snippets. Much to like though.,0 +Hang around Carlos Whittaker some...he'll help you with the hate. :-),0 +You are a marketing freak...I need to hire you as a consultant. :-),0 +506 was damn funny. Although if it's a redirection it should be in the 300s. :P,0 +Hope you feel better back pain sucks. Get one of those heated massage cushions for temp relief.,0 +BTW that sucks.,0 +Great photos of the reception! Looked like fun sorry we missed it. Damn Snowmageddon. :(,0 +T'was totally worth missing #hohoto to nerd up the holidays with you. :),0 +Damn. How much damage to new truck? Luckily I've only hit one and that was 12 years ago. I grew up in state with 3 deer per person.,0 +Wow! That sucks. I wonder why?,0 +Initial rkn was there's also fat and maybe a smidge of protein but then I realized you were talking about _that_ Milky Way.,0 +Just spent the day doing the same. Feels good and I am ready to kick some ass this year.,0 +Probably...but where I was today ran *both* a paper and online system - "online system sucks" was the comment,0 +I hate mad friday. Oncers getting their single night out a year not knowing how to behave.,0 +lol. understandable. it is a refined taste and I'd hate to get you accustomed to that lifestyle. :) To each his own.,0 +If only I were a #Jews then you would have cause to hate me even more. This is a war against barbarians in #gaza Typical response.,0 +Damn you for making me watch Brian Regan clips for my entire lunch break,0 +that sucks that the tweetup is at 3 and only for Jews - we were gonna see it early tomorrow :),0 +the 8-core whore? How does that work? I mean if there are 8 cores do you need 8 sticks of ram or what do you need?,0 +It makes me itchy sometimes. I have a love-hate with the website.,0 +oh well yeah I knew that..that sucks though,0 + yeah.. that sucks though. How about donna? she have salad dressing at her house?,0 +im not saying that i hate you or anything i'm maybe just a tad... whats the word im looking for... hmm jealous? Congrats! :),0 +Just you wait bitch! You'll see. There will be DOZENS and put together they'll ALMOST match ONE of yours time-wise!,0 +I don't hate DMing although the DM's could perhaps have a longer character limit.,0 +or better yet when you wake up early the next day phone them back and wake em up. Payback is a bitch ;),0 +Damn you!,0 +Twitter whore sweet! We could always talk on IRC but ummm this seems to be the hip happening thing these days!,0 +Damn why don't these people tell me what is going on?!?!?!?!? :P,0 +HAPPY FUCKING BIRTHDAY YA PONGO! :),0 +so mya's CD sucks? that's too bad. maybe the japanese will be more forgiving?,0 +yes sir. no hate to anybody but the cowboys...lol @djbigdaddy you cool regardless of your team,0 +hahaha thats my nickname when i piss people off and boyyyyyyy do i piss people off! haha,0 +yeah dude the default theme for WP sucks to decode and use for anything.. hence my never ending search for a plain GOOD coded theme,0 + that would totally get me all the fat chicks I could handle! Rock that at a Weight Watchers meeting!?!?! Good times to ensue!,0 +for one they aren't a "mac" company any more by any means. And for another January sucks for major,0 +ohhh duh! i think i knew that. think you've mentioned it before. my memory sucks. lol,0 +cos starlets are about 5'0"? damn character count lol,0 +Great post London totally kicks ass for start-ups. Loving all the UK twiterers defending @paulcarr's great post!,0 +thats so gay :-P,0 +Don't be teased.. Just get your ass over here and it'll solve the problem!,0 +Im in the same boat....I need to get my legs into shape. I hate squeezing into my jeans,0 +1) Find a way to shrink my big ass 2) Do something really great next year? Write a book or ?? 3) Spend more time with family..,0 +I can never get the balance right. Cheyenne Frank's and butter. It's either too weak or too god damn spicy and bitter,0 +Fucking awesome!,0 +Let me know if you get any takers. Mine is nasty too. We're talking three years of pop tarts up in this bitch.,0 +I still haven't caught up with Freak Angels,0 +*Chrysler closed for a month* Yes I know that means hubby will be home all day. Every day. Damn this recession! ;-),0 +I had ONE "tropical mai tai" yesterday. If I hadn't have already been sitting it would have knocked me on my ass.,0 +I hate to strike the "print is dead" gong but it seems like more than an attitude adjustment may be required.,0 +I think loving the Sound of Music makes you a nerd not a geek. It's a big club. I heart that movie.,0 +I want to say Duh (in an I vehemently AGREE way; I hate that blatant noise/disrespect). So Duh ;-),0 +delish! making homemade spinach ravioli if I ever get my ass out of bed.,0 +I hate you for not being at work today. Can't we play electronic catchphrase on FB or something?,0 +That sucks. Haha. :D,0 +Work sucks but christmas can be fun. -holiday hugs-,0 +LOL...Well if they don't deliver to me I'll send you a message to tell them to send my damn pizza..lol,0 +Goodness I hate talkin to those that act stupid especially when u no they're not. What we do to ''make a dunut'' huh?,0 +God I hate that movie.,0 +nooooooooooooooo! sucks! is it cold where you are?,0 +I meant one particular gift. Damn 140. I got deluged with stuff this year.,0 +The acoustic is a $100 Yamaha; I also have a Squier Fat Telecaster getting dusty in my basement. I'm not hardcore at all.,0 +Tony Romo sucks that's what. So disappointed in that guy lately. Just horrible... the only offense they have is Choice! (ex-OU),0 +early aftenoon- 2 pm - off to the market for fresh fruit then stops along the shore for whale watching and caching on way back,0 +I don't really like either version but my iTunes is trying to whore it out. What a pimp.,0 +Way cool! Thanks for posting this. I'm a super Christmas light freak. Neighbors are lucky I can't afford to go nuts...,0 +Poor dear! Stay hydrated fix some chicken soup and nap as much as you can. Hate office hand-me-downs. sigh (((Hugs))),0 +Egads! So sorry to hear that 2008 is going out with a snarl. Glad it's warranty. Water feature in roof sucks.,0 +I hate that...so many times I've accidentally sent ppl messages with duck instead of fuck in them!!!,0 +why is there cat piss in here??,0 +no I hate Christmas so that's not it,0 +damn that sucks lol.,0 +My ex is a moron.I hate him he's an idiot I should punch him everytime we meet..still..I care about him dunno why -.-,0 +Damn sorry you came here to vent and had to left even more pissed.You had every right to.hope you'll relax some.'night,0 +WOW! Really?! Damn I wish I had the ingredients for one in house. Was *just* thinking today would be a good day for a bloody too,0 +Summa Cum Laude. I am so impressed. I'm sure I don't know what those words mean other than "smart. " Congrats!,0 +tee hee! I consider the added fat 2B "personal insulation" - it gets dern cold here in WI. ;),0 +a tech was here 6 hours ago. I love your work but I hate having to use you to get things done right. Will email soon. Thanks!,0 +I've been called a social media guru before. not by myself. same person also called me social media nerd.,0 +will? they're already out nerd. they hold 6gb of ram too.. woo.,0 +I know...just get a damn blanket or put some socks on! im sayin!,0 +just terri and bwahahaha not a saint in the least...except for all those damn immaculate conceptions i had...MIRACLES i tell ya!!,0 +wow 8 years? Damn. What about watching tv with another person? I think we need to re-think our set-up. idea of TV needs to change.,0 +omg really??? what is it? will it be okay? Antibiotics can help? OMG it was from that damn Neti Pot spill the other day! LOL,0 +I don't like social karma much. Would rather skip it but can't afford to piss my friend off any more :),0 +who cares about normal people? Normality sucks.,0 +...And as a z-lister I am gloriously unaffected by FriendFeed's downtime. Sucks to be Scoble though. ;),0 +@KillaHills "Diva's" don't dance all they do is bitch......lol. Now that was wrong and funny all in one.,0 +DAMN YOU FOR CATCHING UP! I must ding 28 before you get back.,0 +I hate that,0 +Dead Like Me isn't that the one where that girl dies and then chills with other dead people but she's still alive? It sucks.,0 +damn that sucks! we've had our primary data center loose power for 2 seconds. Thats long enough to take down our VM Cluster,0 +damn! 600 people in the Dutch VMug. I've never been to one with over 70 people.,0 +oh yeah.. that is super weird.. But i will trade my ass off ;0,0 +its right on the wrist.. It was so deep it didnt bleed and fat came out of it.. *barfs again,0 +That is very sad. My prayers go to the Culkins. Really sucks.,0 +those Tamales look damn good. Now if I could just get a few and drink warm milk..,0 +Me too! Jocko the ass clown! Miranda asked him for a monkey and he refused to make it gave her a butterfly instead. Total douche.,0 +I have learned that I have to slow way down which I hate to do but if I want to continue with what I'm doing I have to do it,0 +I guess my lil man gets it from me too but simedays I think...damn it I must be annoying! Ha,0 +How da fuck do we 'posed to keep peace?,0 +she is right though. While life kinda sucks for me too there's a group here that still cares.,0 +You'd have to get outta the pool damn fast.,0 +You came late to the "Hate on Kanye West" party LOL.,0 +"""Fail whale"" refers to the graphic on error page when Twitter is over capacity. It's a whale being carried by little birds.",0 + 19 tabs in 1 window (hate windows love tabs),0 +@womenwhotech I like *looking* at snow. Hate getting out in it. Of course it's not likely to stick around. Not cold enough.,0 +ABOUT DAMN TIME!!!,0 +#tcot If we cannot laugh at those who hate us who can we laugh at? I'm not sure what that means but I'm going with it.,0 +iphones are overrated. everyone i know who has the g1 loves it. also i hate typing on an iphone. you should hold both before,0 +amen sister! I avoid WalMart like the plague. HATE IT. I do Target instead. lol,0 +damn yo! Party much? Are you out every night? Thanks for coming to our party BTW.,0 +damn can i drop the track and email it to u?,0 +don't you hate the plastic tree for that? Lurking in your closet waiting for a chance to strike... cunning planning...,0 +ewwwwwww that sucks. I hope it goes much better than you expected!,0 +just having one of those I suck ass days :(,0 +I know nothing of guitars but looks damn nice! congrats ;),0 +Damn being on the cutting nerdyedge.,0 +Sounds like it's Fourth Meal time! (Actually I hate that zone too. Usually just sleep it off.),0 +damn...,0 +*damn BB be going hard on them boyz*,0 +where the fuck is X?,0 +just warning you. Once you in those beds at the Intercontinental your gonna wanna fuck. Too sexy....,0 +Damn that sounds good! lol. Now I don't remember what I wanted to eat tonight.,0 +Oh no. I HATE a thief! Ah well what goes around comes around.,0 +dude after last night goddamn I am beat the fuck up. And it's NEGATIVE 44 DEGREES up here in Winnipeg. So crazy...,0 +I would have wanted a cake with a big old file in that bitch... Break me the eff out!!!,0 +is there a good way to NOT copy formatting in text? Or strip out formatting? I hate that about OS X apps.,0 +Hector kitty has major kitteenip addiction. Must find him some of that special extract. He'll FREAK!!!,0 +well im just makin sure!!! I hadnt heard from her in a while & i hate it when people are mad at me!!! I just had to make sure,0 +Well I was just makin sure!!! Id hate it if you were mad at me!!! I hate it when people are mad at me!!!!,0 +how about loser buys the winner 2 months worth of diapers? hehehe,0 +No didn't hear about Palin's church. I actually turned news off 4awhile lol It's bad thing but when spreading hate it returns,0 +Im a pig I can squlour (new word again) all I like.,0 +i hate that.. delete delete restart yuck,0 +oooh sorry - that sucks! I had a pizza attack & ended up making them at home - nothing as good as greasy restaurant variety though,0 +dont hate appreciate!,0 +haha I know the feeiling! We were staying in a hotel recently and the electricity went out. Ghetto as fuck haha,0 +that's what every dude has said that's seen it! Damn I wanna see that shizz,0 +oh haaaay jesse! I miss yer ass.,0 +yeah where the fuck where you! Shouldve been there :),0 +hahahahhaahaha I hope you kicked his ass!,0 +is crowded. Damn.,0 +doesn't matter. Lost. Loser. Not the winner. Didn't cut it.,0 +lol it alraedy feels like I spent most of my life at HEB...Damn I have after 27 years...sigh,0 +damn i missed it,0 +that sucks. sorry to hear that.,0 +that sucks man hope you find him soon.,0 +you totally need to follow @TheBloggess you'll laugh your ass off!,0 +nope--they'll think you finally got fat. just sayin. get those cards out.,0 +If Bush were 1/3rd the bad-ass he pretends to be he would've caught the first shoe in the air and knocked the guy out with it.,0 +All us GBP's are fucking tight. We've all been through so much shit together.,0 +personal presents now that kicks ass.,0 +- Daniel are you doing any fat loss seminars in January? I've heard from lots of Aussies who want one! You'd be great!,0 +brings a tear to my eye.... work it J Fat.,0 +having complained about Clearwire I may wish I had it later. I love my iPhone but the AT&T service in this area really sucks.,0 +I hate when that happens. BTW where can I get one of those guns?,0 +1005 agree. I hate bullet points. Images are superior any time. @presentationzen has a great book on just this.,0 +Yeah I enjoyed the old set too but low prices nerd lust and a good offer for my old tv via craigslist and here we are.,0 +fine I hate you too,0 +"""The Best Damn Sports Show Period Rocks!""",0 +yeah it is. i have to get a pc at the house though this coming to the library crap sucks on the weekends.,0 +Mine has to. It does it when I'm in the middle of typing a message and its really starting to piss me off.,0 +oh you know i can so totally kick your ass :),0 +I would love one just don't touch my fucking helmet. I would hate to go all "Franks and Beans" on you. ;),0 +Back at ya I have Fat Tire at home!!!!!! :),0 +It's damn near lunch time for you if you were up at 4:30a.m. don't you think?,0 +lmfao I hate it when my roomie's dog licks mine but Naboo doesn't slobber too much. When the dog licks it gets all sticky :(,0 +I don't blame you...I don't drive in snow either. Fuck snow!!,0 + Just rain here!!! Damn! :(,0 + I hate that also ~ at least they should try and make it entertaining or something!?!?,0 +http://twitpic.com/tywj - you tryin to prove you're a nerd/geek too? Too late we knew that! I promise! =D,0 +http://twitpic.com/t9za - owwwwwww damn.. dedication tis why I admire this man!,0 +i know change the channel i hate this program,0 +I haven't seen the fail whale in a month or more. Saw it today!,0 +I missed this yesterday---love "cheeses my beef." But yes they got it wrong with the ribbon. Hate the ribbon.,0 +Feeling cheeky? @Facebook is on twitter - why not throw a snowball at him lol! (I hate those damn notifications!) lol,0 +I agree with your LI assessment - and the fact that you have to $ to get introduced/email/contact really sucks too!,0 +but then don't all your tweet show up on your FB status? I tweet 2 much & it would piss off my FB friends.,0 +Damn right. He probably doesnt.,0 +@andsoitis26 ouch. 2nd time I ve been called a fat ass this week.....,0 +That sucks. I don't remember how long ago we had gas prices that high.....,0 + i don't have those folders ... /wordpress/wp-content/plugins and /themes /uploads . i hate the 2.7 interface already.,0 +where ur ass been?,0 +THAT SUCKS!!! haha,0 +damn I woulda came but i used my last dollar & dime @ Wendys,0 +try it you jive time sucka! I'll put Cinque on dat ass!,0 +lmao!! caught dat ass talkin smack!! you dont want it with Bubbz NOOOOOOOOOOOOOOOOO!!,0 +man i cant even dl that damn myspace app & I've been feenin for it!,0 +I saw *fail* whale today more times than I can recount,0 +at this hour you have to go to work? what do you do? I'd hate to drive at this time of night w/all the drunk drivers on WI roads.,0 +good I'm working on Maps by Yeah Yeah Yeahs and another track on hard/expert. because medium is fucking boo-urns.,0 +oh fuck yes! that's awesomes!,0 +fuck yes! I love it when straight boys gimme fun christmas stuffs because it NEVER happens! thanks! I feel special. hahahahahaha.,0 +holy fuck Sir Charles can't swing for SHIT. that was AWESOME. that wasn't a golf swing that was more like a dry heave.,0 +they should've just given him a snow shovel and a grapefruit would've been less embarrassing. seriously that guy sucks. haha,0 +gotta hate those sinus infections - feel better soon ;),0 +Maybe we could have a mock @richard_barley day? He is such a Dick........ :P,0 +I hope you dont hate me too much for pointing you in that flights direction?,0 +nice! is it real? LOL abt op. freak out the in-laws. :),0 +whats wrong with them?",0 +sucks aye.",0 +I was one of those of the ppl! Damn near left my Berry on the train LMAO,0 +What is Bromance? A gay love reality show? I don't watch TV unless its Grey's or Private Practice lol,0 +You shoulda been a cop fuck hip hop! Lmaoooo I wanna do the Diddy dance in our video!,0 +That's bc every1 aint hip-hop my dude. LOTTA posers out there? I can't even fuck w/the mainstream sumtimes....,0 +Aww here u go! Lol Don't hate on TJ. He's an Adonis! Haha!,0 +I'm just a retard. I did it last month with two other cards. I paid them a day after they were due. I'm NEVER bad with bills.,0 +That is heresy! There is about 100Pancheros to 1Chipotle down here-it sucks. The first one I had was green cuz of st pats day. Ew,0 +Don't say anything to freak him out (that includes all of you CSPers) but I'm pretty sure her mom already has them married.,0 +Oh damn Jodi. Do you get to keep your healht insurance?,0 +The spammers recently decided I'm lonely fat and have bad credit. I liked it btr when they thought I was a limp and bald man,0 +Be happy it's not "I HATE YOU YOU'RE RUINING MY LIFE!"... that'll come in about 8 more years.,0 +got damn...you musta had them puppy dog eyes goin on...,0 +wrote u 2 respons but so fat fingerd neither workd! will fwd now 4 kicks. How'd it go & did you do it?,0 +is actually up to twit? the fuck. . .,0 +Ron is a dope producer i mean damn the man did Ether. im just not feeling his new sound. these old NY rappers seem to love it,0 +I hate you tomlin....,0 +you're not wrong.. I don't hate you. I take it all back. My mustache apologises.,0 +parking was a bitch around 2pm!!!,0 +not really just want to bitch i could never get to piss at the kid.,0 + When the kids in those commercials scream at their parents...I get so upset. Saying shut up and I hate you....terrible.,0 +rebellion there's no goddamm costco for 100 miles! im a loser if I order just ranch from the diner down the road huh?,0 +thanks I'm terrified of exams. Yeah my hairs a bitch to do tbh takes like an hour and a half to straighten.,0 +oh that sucks.,0 +Why do you hate all Canadians? :),0 +Sorry I take that back. You obviously just hate your daughter. My mistake.,0 +I'm not only at work I'm making three others work as well. Who's the biggest loser now?,0 +**I love how new years brings out the inner twitter whore in people LOL gotta get to 500 by 2009!!,0 +Tomorrow night Michigan State vs. North Dakota on the ice. Straight up. Loser buys dinner at The Publican. Game?,0 +ouch that sucks. happened to my uncle while driving last year,0 +which sucks that they won't accpet my Canadian Passport which actually maybe I should be a bit irritated about LOL :),0 +LOL I had completely forgot there was a comic strip called BC :) But the real question is why do you hate your paper boy? LOL,0 +damn you got home late!,0 +the leg up one.no thank you! i am toooo fat for it! i always thought yoga was easy.thats cause i never tried it! i am SORE 2day!,0 +Thanks. It sucks but at least we're warm! And it's a Courtyard by Marriott so not a dive.,0 +I hate that when I'm out and want to Twitter something and I can't.,0 +oh I know you gave me my epiphany. Now let's kick 08' in the ass and start again,0 +lmao..ass juice! Woohoo..Stella <3,0 +My mom would love it. Damn you Twitter. You make my friends convince me to buy exorbitantly priced holiday goodies!,0 +JFK off to Paris...No days off I'll still be online to diss your ass!!,0 +depends what your after? sirloin or the butchers favourite rib eye which are also economical but have a bit more fat ;-),0 +omg omg omg yes yes that's it...that's perfect! You are fucking awesome!,0 +hahaha that sucks...having to stop at the home town not making backups.,0 +cause i hate the daytime...it's only good to be indoors then look i'm going outside now...in the nice and cold :-),0 +yo I was dead ass tired I past out at the keyboard woke up ate breakfast and went back to sleep lol,0 +...whoops to get caught up on Flickr 4 months sucks to play catch up.,0 +I love the weather when I can sit inside my office and drink coffee and look out the window. Sucks to drive 160 miles in it,0 +damn that you would have been a perfect YouTube video,0 +good times! They brought evrybody and their momma out lol had to head out to get a cabbie b4 the rush U know they hate going to ...,0 +Don't lie to me!! Yo don't do no damn work lol,0 +damn rite David the Gnome,0 +So true I hate a dirty bathroom,0 +my friend just bought one. It was like pimped gold and Black. It kinda sucks so I think shes returning it.,0 +I really hate this ThunderHead IPA by Pyramid Breweries. Fucking skunk piss fo sho,0 +OH NOES! Like chocolate ales are really fucking tricky they either rock or suck cock I will totally have to google those tho,0 +So jealous although I guess one should never complain about free beer... awe fuck it I will!,0 +lol why does jennifer hate new years so much?,0 +I really hate MTV these days and I hate it more every time I see it.,0 +Thanks!! It's going to be tough but someone has to stick up for the horses. PETA might hate me now though...,0 +gay by association...,0 +and china WANTS taiwan back im not sure Japan wants the Oki's as for Macau damn you portugese land stealers same as the British,0 +and yet you *still* get all your facts wrong? It's a damn shame man. ;),0 +Sorry I didn't end that sentence properly. Bitch.,0 +ok now THAT sucks.,0 +Yeah my Neice has always been able to just walk over. She used to come here without telling my sis.LOL Damn I'm gonna miss that,0 +yeah face book sucks because they use your real name... thats almost anti-internet,0 +True Hate to see Dre fading out...drop that album already!,0 +i think so too. xmas w my family has always been so fucking traumatic it'll be nice to not deal w their crap!,0 +hahaha! I hate driving alone... but sometimes carpool is the slow lane,0 +I haven't worked out how to integrate this with Facebook yet because I hate Facebook but Twitter is fun. Welcome :),0 +don't you just hate when it does what is supposed to do,0 +I hope Nova recovers quickly I hate to see another dog suffer :(,0 +uh well that sucks. you should complain..j/k.,0 + ...all that about your job really sucks. <3",0 +I feel your pain! They removed the PS2 emulation components to cut cost on the new machine! What you can play looks like ass!,0 +my video kicks your videos ass. Truth be told!,0 +Damn well THAT stopped me. lol Good thing it landed in my throat. lol *no homo*,0 +I've actually been impressed with Twitter lately - haven't seen the fail whale in a very long time.,0 +The golden rule is to treat people as you would like to be treated. They simply don't see gay people as "people". That much is obvious,0 +I'm being gay by using SQL Server,0 +I am. Hence the hate. But I love him rly,0 +you hate him d00d,0 +and I hate you hahaha,0 +wow. that sucks.,0 +Oh my! I'm not even that much of a control freak!,0 +Sweetie I'm about to head to bed. YOu need to too! I hate getting my days and nights mixed up!,0 +damn that's how u feel?,0 +with his fake fucking Cork accent,0 +my favorite is people who bitch about bad "grammer" and then use the possessive it as "it's" ... GAH!,0 +you taking the piss out of my posh schooling?!! *Grins!*,0 +damn form fill.. I didn't even notice.,0 +DOH! That sucks man I hope the rest of your trip goes smoothly!,0 +Re: legalizing prostitution. I hate to oversimplify but "Duh" seems so fitting here. Like most repression follow the money.,0 +I hate when that happens. I have been misplacing and losing things a lot lately though,0 +Major newspapers seem to be heading the same route. I hate to see it happening but it seems inevitable.,0 +oh my god. You DID steal my food baby. Poor thing. She's a bitch.,0 +damn you and your soul-stealing internet comics! i can't leave my house because QC has officially overtaken my brain. thanks!,0 +damn phone. It was supposed to be funny.,0 +I'm not sure how famous it is but it is damn delicious.,0 +Damn man you're on top of this! Your combined birthday/Christmas present might be a little late depending on supply.,0 +oh man that sucks. Sick babies are the most heartbreaking thing ever. I hope she starts to feel better soon.,0 +I hate this game,0 +Re: http://tinyurl.com/w2xzw - You are a HUGE nerd!,0 +LOL if you read that myb. it was just annoying bc i hate footballll XD,0 +thiz is fucking nasttty!!!,0 +and fuck you I am a miracle :D,0 +that's because Romo is a bad ass. You should like the cowboys anyways,0 +the fact that you're a bad ass soothes my soul.,0 +mostly about the gaza bombings. It sucks in todays world being pro-military. No one wants military until it's their ass in trouble.,0 +you got better movies then I did. That alpha dog movie I got sucks.,0 +damn dude... what's wrong??,0 +always the steelers! now i know for sure your a down ass girl lol,0 +god damn you beat me this time.,0 +damn you shay do a live show!,0 +it always gets back 2 college football trash talk doesn't it? why can't we all just hate the USCtrojans and leave it there?,0 +once again i agree... damn you are always right! baby!,0 +man you reply pretty fast on that damn phone...,0 +damn 3... thats not a good look man...,0 +early eh? damn.,0 +damn... it will pick up very soon.,0 +man i forgot that was tonight! i knew i was forgetting something... damn.,0 +hate in your blood is not healthy... i put that on my momma.,0 +damn. i guess i am the last man standing...,0 +I dont know. I like how dick in a box started it but I like jizz in my pants better simply because it just sounds better.,0 +damn rooster kept me up all night. I'll take a picture of him then righ after I'm getting the shotgun and blowing his ass away!,0 +Internet was down couldn't get back to you. 10 day forecast: http://is.gd/clbJ don't hate me. I think it's going to be sunny,0 +Look on the bright side at least you're internet relevant enough for someone you don't know in real life to hate.,0 +So all they did was argue about guild stuff the whole time? That sucks if so.,0 +Drobo kicks ass man I love mine!,0 +Teehee I fucking love you. <3 Also you always make me twoosh. :),0 +Per my other tweets I've (hopefully temporarily) stopped using Adium because it sucks up 75-80% of my CPU! :-(,0 +thanks hot ass! :P,0 +I'm jealous...he's a hottie. And I wanna believe he's gay too.,0 +I hate when birds fly over me. I feel like in gonna be a poop target. That's so not sexy.,0 +damn that sux,0 +damn man how did that happen?? at least no one was hurt,0 +DAMN IT you had to bring this stuff up when i have no phone to call someone or no boyfriend lmao,0 +where is the global warming. I'm fucking cold now,0 +Sleep? What the fuck is that?,0 +I hate snow,0 +hands down one of my favorite veggies (and snack) is roasted brussel sprouts w/ fat free ranch to dip it in.,0 +i'm still sick as fuck but have too much to do to stay home (that i can't get done anyway),0 +and with all the chaos going on today I'M THE ONLY FUCKING PERSON WORKING IN THE OFFICE!,0 +i have damn good health insurance luckily. so when i have a stroke today i'll be covered.,0 +slash retard off.. Missread that :(,0 +Dude that sucks. I hope it's not really a big leak.,0 +I hate tracking replies over all the networks. And Twitter for me is all about who I follow...not who follows me.,0 +damn this Xmas party. I want to be home playing it also.,0 +my UFC wannabe cousins and I do the same thing!,0 +@pidpoid Damn it! I've just splashed out £1.29! I'll check our Aroundme as well!,0 +good lord. :( that sucks.,0 +hopefully not candles. I hate getting candles. Its such a nondescript gift.,0 +did my cats freak you out again.,0 +ha! Alabama sucks!,0 +hellboy 2 was damn good.,0 +I've only seen highlights of Lott but I know Reed is by far the best today. I hate people arguing about Bob S and Troy P,0 +i got a D in that damn finance... oh well all the other classes went well,0 +that's a Damn good question ... a rose by any name ...,0 +... why all the iPhone hate? Did Steve Jobs break your heart when you were a wee youngun?,0 +damn I missed it.,0 +We spent the day down in Del Mar which was pretty damn cold so I can imagine.,0 +have you seen it before? We had a great time. Being a Python nerd help of course.,0 +little know fact. Betty still uses a rotary phone in all her damn commercials. Haha,0 +ahh damn your fancy ass cable! So hoighty toighty!! : ),0 +hi Pete hehe its funny when you get put on the spot like that one take no edits warts an' all (hate watching mself tho :) ),0 +I hate people who waste my time another whose technology I break,0 +Our galaxy sucks!,0 +Damn it I'm runner up again?,0 +After T3 I'll need to see some damn good reviews. Otherwise it's just going to the end of my Netflix queue.,0 +You bet! @Sashakane gave me the receipe! Totally authenic! I made a burrito out of the extra filling! Damn tasty!!,0 +i concur 2009 is going to kick ass if you have the right mind set,0 +that's the thing i love and hate the most! some peeps over due it that's what IM is for :D (me doing it now sheesh),0 + I so want to RT your bottom-feeding Tweet. It's too damn long,0 +serioulsy... I hate questions like that one... they totally miss the point.,0 +That would be called "Fuzzy Math" and "Fat Pockets".,0 +Damn straight Phil! I've seen it dozens of times and it STILL gets the blood flowing! :),0 +and @Thronkus Don't hate on the old people...they got spunk.,0 +would join but im on dailup blog tv sucks for me lol,0 +don't cha just hate it when that happens? specially when it's a tune from a lousy commercial.,0 +Thanks :-) I'm doing my best fuck this wind! It's been fun watching people slip on the ice though!,0 +The #9 This fucking blows... good thing I've had a good book to read. And I'm supposed to make an appt at 3pm?,0 +Damn it was really great... someone was requesting a trickster hobbit with magical abilities to work for them I voted it best of.,0 +well I was just wondering if there ws a way to just chat...cuz ur pretty damn popular,0 + Hey Claire! Yes my cake is double dutch chocolate with hot Carmel LOL!!!! Join me when ur ready. Somehow I made it fat free,0 +ROFL!!! The trick with my cake is it doesn't taste fat free...but it is. What more can a girl want? ;-D,0 +yeah I'm a sophomore and everything's rather easy. I just hate doing it. XD,0 +that sucks. At least you've got GB xD,0 +that sucks Pete. Just a random puke or what?,0 +Hate it! However Santa didn't bring me a maid or a dishwasher so here I am...,0 +call me.....i hate not having a working cell phone!,0 +damn that sucks.. u know there are 3 types of people on the force the ones who will hurt/help/stand n watch u ..,0 +I like Fringe too but how come everything circles back to his experiments in the 60s let some other science nerd have a go!,0 +did u piss off big bird?,0 +@Lgrun @cheapcheapcheap You know things are bad when you don't even get a fail whale. Just a "page not found"!,0 +Yeah next time he plays Ludacris maybe some G's from the ATL can cap his ass.,0 +I hope that's not porn coz if it is then damn is it weird shit you like to read...,0 +oh... then yeah that sucks :B,0 +yeah I hate that :B,0 +it's all about you cool cats down in the DLC. I just don't understand people who hate their jobs cause mine is so great :),0 +They do fear us; why do you think they hate us owning guns? It's all that stands between them and absolute power.,0 +And so it begins. Ugh. I hate winter.,0 +I guess he just like the attention... What a self-centered whore right?!,0 +Damn... You caught me! I'm CRAZY jealous! ;),0 +Haha! Damn yo! Bitches need to learn how to act! It's not a Blow Pop that you can chew on to get to the cum I mean gum...,0 +I'm a Heroes whore! lol,0 +LOL... My name was on Santas ass! thanks.,0 +HILLA! LOL Its late.. Fingers to fat for buttons..,0 +the nerd inthe shop lead me to believe it was a rechargeable!,0 +lmao.............It really is a wonderful thing is'nt it?? lol................damn makes me happy :),0 +I like the way you pop in and out.......of twitter I mean ;) My ass is parked next to my tree that's half decorated but nice,0 +Im pretty damn goood actually....lol.....how u doin?,0 +molten lava ... Hate US Airways! Worse customer service ever!,0 +nerd. *resumes Half-Life marathon*,0 +I asked what cod was the other day since Mr I'll Show You My Cock said it and got ridiculed for not realizing whaat it was,0 +wow that sucks (being stuck on the grapevine. Not the lack of 3g).,0 +You're working both Saturday and Sunday? That sucks.,0 +It won't take me that long in my SUV monster. I just want to watch you freak out as I drive in the snow.,0 +Made the pig bigger and sent it back to you again! ;-),0 +Don't you hate that. Feel your pain as I do that too often.,0 +Damn! No sorry! I was afraid you'd think that. Sorrrry!,0 +it sucks they only show parts of the game,0 +yah i think i can!! haha. i'm just gonna have to ignore his dumb ass LOL,0 +damn two days in a row lmao and once again mommie i had no part in this it was Gabby lmao,0 +damn that sucks!!!!!,0 +damn your right,0 +Damn. How are you getting out early? I'm stuck with no beer till 4:30.,0 +hate bros,0 +damn... And I thought 2 hours was a long time!! Thanks for exercising your right!,0 +LOL I hate you and your amazing scarf!,0 +ha ha fucking ha,0 +I wanna say ur the one that put me on to them. I can't remember. I met u online around the same time I met Frank. Fuck we're old.,0 +LOL I think I hopped on near the end of Aug? I used to dis the hell out of it. I just didn't get it. Now look @ me. Damn it.,0 +I'm honestly surprised that u still fuck w/ Twitter.,0 +well just DAMN!,0 +about damn time!,0 +I hate going out in summer for that reason :(,0 +@iglazer dick's announcement has to make the defrag fleece a collectible now right?,0 +haha damn...all it took was a pick up line?...SCORE!,0 +- change of plans if you're in my neighborhood before 8:30 would you swap with me? The 6' one is a pain in the ass.,0 +that's more like it! but seriously you're gonna hate emacs if you dont like / want to use lisp. that's its main draw,0 +Wow that sucks. Hope you make it home without turning into a snowman.,0 +Stingy sucks I agree but no need for anything "expensive" on a first date.,0 +says coffee is bad idea cause it makes you look cheap... I say fuck that.. COFFEE NOW.. hehe.. and see what happens later.,0 +Screw Haptics? Kinky! ;-) Yeah I've found that feather-light touching and certain angles of fat thumb help. Almost less deliberate?,0 +Hmm wonder who it was. Do you know local owners? Hate not being able to drive mine now due to weather!,0 +I have (and hate) Charter. They forced me to upgrade from 3Mb to 5Mb and then raised my bill 50%. A-holes.,0 +agreed but you can't sell what people don't want to buy. They want the illusion the magic fat loss pill can't blame seller,0 +Man that sucks. Srsly. I'd LOVE to see them live. But 500 dollars. Jesus. ._.,0 +too late! you have to work boxing day too? that sucks.,0 +Thanks! I'm a bit of a freak about those "looking back on the year" pieces each 12/31.,0 +Oh that's perfectly fine. He knows I'm also after his ass. *wink*,0 +makes me want to vomit. i think it's something to with my new comments system though was fine before that. technology sucks.,0 +Glad you are feeling better man...NOW GET BACK TO WORK DAMN IT!!!!!! :-),0 +I HATE having to rush while carrying my guitar,0 +Fucking incredible. He rocked harder than anyone I've ever seen.,0 +FUCK I won't be around spring in Charlottesville. I'll be in L.A....Summer Tour FTW,0 +That has happened to me before. They are usually quite speedy at rectifying the situation. Still it's a pain in the ass.,0 +ouch that sucks.,0 +I heard that too... wondered the same thing... i hate office muzak,0 +Well I'll be damn. Three years of using EE and never knew that. Thank ya! My life is easier now.,0 +White chocolate peppermint mocha twist. It's a fucking mouth full but a really nice holiday drink. I stick with nonfat chai though,0 +so there were like 11 Five Guys in Orlando...we never went there once...GAY!!,0 +that sucks. thanks <3,0 +I think the better question is will Rapattoni work at all on Mac? Geezzz - I hate change. Especially change I don't want!,0 +I agree & in fairness it's the smallest maternity shirt ever seen. I'm not fat it's just the only empire waisted shirt my size.,0 +Yes save my photos and show them to him when you really want to freak him out :P,0 +Nope a regular blackberry. Damn this 5 year tmobile contract.,0 +yeah that song suck santagold sucks too. nice picture i'm just seeing it ur skin looks good,0 +Books do kick ass!,0 +I think I've fixed my problems..other than the brain problem I have..damn..the wind is blowing again.,0 +damn! Do I want to come in tomorrow??,0 +Fantastic! hung w/ sk8rs in HS =) fat shame about iphone 'nomo'4 us 2-all Christmas a blur. help? y my iphone twitpics sideways?,0 +hate writing? I LOVE writing :P I'm contracted through January but if you need a 2nd draft or something hit me up!,0 +that is why we didn't "do" Santa. Giggles was afraid of the fat white guy busting into our house & doing "bad things",0 +i hate when i buy warranties then lose the warranty. The list goes on I will reply with more when I think of more.,0 +srsly why don't they reset the damn clock? Everyone I know does it :(,0 +Damn dude the last 3 eps of TrueBlood are the best,0 +"""its like it was a dream""....fag.",0 +what'd you like/hate about the process?,0 +I hate wrapping because I'm terrible at it. I always use gift bags. And you can use them again so it environmentally correct.,0 +hmm..maybe if you got off your computer and sat in front of it instead your ass wouldn't hurt. <O - ),0 +I'm up. See previous my night sucks tweet,0 +I bet im not even famous and I've seen and experienced it its a damn shame,0 +it sucks I dont even know what I did to cause the problem it started hurting monday and by wednesday sweeling up,0 +no smart-ass more than once a year and believe me she needs it. Even my cat is disgusted at Ela's personal hygiene issues.,0 +hilary duff is great. don't let her giant veneers tell you otherwise. she's saying you're not gay.,0 +its a protest for the gay marriage ban in CA. Ppl are doing it all over the world,0 +This place sucks get a good job so I can stay home please pretty please aww fuck it am begging you. Lmao,0 + DAMN. and I'm in Palm Springs for the holidays go figure. Where will you post Steve when you get a few?,0 +says the girl who throws a fit when someone calls her fat. Grow up.,0 +ohhh fun are u eating roasted pig?,0 +yes i hate the word GURU... Guess what I know label you a guru lol.. Let's put it on our signatures now and business cards lol,0 +That sucks. I know the stress you're feelin all too well.,0 +i just love that movie! damn it!,0 +I HATE MY CPMOUTER it sed on stickie note that they changed stuff around and they did it happend to others :Sss,0 +welcome back bitch!! We missed ya! :D,0 +- You KNOW she doesn't. She BARELY looks hapa. But LOL @ that one bitch from the one show.,0 +wow that's even worse than the blue screen of death from driver conflicts. I've been there too though. It sucks.,0 +dont hate me :(,0 +video quality mostly sucks for screencasts. that was the reason for having the original source.,0 +I can donate some booty as well. Ever heard of top ass? I got that and more.,0 +color me shocked... I hate to think @islandcubfree had anything to do with this,0 +dude I'm not even in LA. I'm in cold ass Chicago. But its nothing but a word if I was in LA.,0 +UGH I do too. White decks are a bitch to play against. All the circles of poncey protection. I play black red or green or a combo,0 +@jkjb98 NO FLASH? Fuck me running. I guess that's trade-off for video and sms pics. Can't have it all.,0 +That's like comparing apples to oranges but I STILL prefer twitter to FF. I hate FF with a burning passion.,0 +OMG. Get him honey! Flying Taintchoke his ass. Can't he read the fucking Shakesperean tragedy that is our server troubles?,0 +It was pretty fucking cool when it wasn't driving me insane. I worked for Toonami and AS for 5 years.,0 +Ugh. I fucking hate Ben 10. I remember how much bs it cause for my dept. when I was with CN.,0 +not really. u see my college is unfortunately a popular one and if i bitch people will know who i am so i need to be careful,0 +Yes that's the one. I refuse to believe Race had a baby w/anyone but Jezebel Jade. I hate his accent in RAJQ,0 +yeah I've been to N.O. recently damn shame.,0 +hey man i'd be screwed without slicehost's tutorial articles and creating new slices from backup images... I hate fresh setup.,0 +Re : future - some ass.. kick it :D btw ive caved in to fallout3 already,0 +damn right. Unfairly maligned is the poor sardine.,0 +damn right,0 +RO quests are fucking LAME. Collect ELEVENTY BILLION OF THIS AND TEN THOUSAND OF THAT. You are a far more patient person than I.,0 +Oh that sucks. Hmm maybe you'll get sick and need another house call soon...,0 +did you like the patti labelle sing along too. even went on arsenio with hr and did that damn song. Singing???,0 +i hate to say it but right now you are correct,0 +Wow that sucks. )c8 My condolences on your loss. I hope the HD springs back to life long enough to get the data back cheaply.,0 +You're welcome. (c8 Wish I could've done something more. Losing a HD sucks. )c8 Do u have an external HD to backup to?,0 +hiii lady! damn... i need some galoshes!,0 +damn for real? That's news to me. I'm 100% sure that's a tape loop tho. Zig Idris Earl... N.O. Drummers>everyone else,0 +not even...its just too fucking cold out im too fucking sick and its too fucking cold in my basement!,0 +aaaawwwww not the Rock em Sock em!! damn i think just drooled...,0 +damn tell Mo to stop bitin my shit!!! lol.,0 +LMAO!!!! damn i bout to bite that!!!,0 +damn that's my favorite ep. CLICK *Bugs gets the shit beat outta him* CLICK *Babies asleep!! classic...,0 +dont stick up for @primeluva..homeboy is fat! Lay off the ceviche my man!,0 +geez what crawled up ur ass my man im just messing with u...take a joke...,0 +that was quick...im bout to get this damn thing on my storm so i can be COOL>>>>,0 +ive had a salad damn near everyday since last week. THIS SUCKS!!!!,0 +u haven't heard?? i'm moving to LA end of january. we haven't spoke about that yet? damn... we'll talk more about it later.,0 +All I know is that Zunes suck for me. I used it once and really hate it since then.,0 +lol damn right!,0 +damn son right in time for break. Ouch!,0 +damn! somebody just told me its snow in germany..now im not ready to go anymore lol,0 +LOL.... You can't hate my Carmel dark skin!!!,0 +on the real even though Tracee has the biggest ass outta all the "Girlfriends" i fux with Golden Brooks...,0 +who is fat?,0 +Why is it funny to me that a 7foot damn near 400lb dude just said "wooosahh"? You funny dude. LOL,0 +Damn right. I guess we see the diff b/t him and t pain. Pain pulled it off on SNL a couple of weeks ago without the autotune,0 +I'm just that damn cool homie. You'll know what's up when I don't tweet for exactly 1hr and 56min. LOL,0 +turns out the earthquake was a rumor. Truth is a fat girl just slipped on the ice and fell.,0 +Radio sucks in the city as well at times so imagine in other places....,0 +Damn....your co-workers are classy...,0 +Whale Wars is kinda crazy...those hippie pirates are fools man...Their passion is cool & all but they do some dumb shit...lol...,0 +Damn that's crazy...And from the pic it looks like he "got grapes"....ahahahahahahaha...,0 +Damn that's crazy...Cali always has the some sort of natural disaster going on...Guess there's gotta be a catch...,0 +I just saw your message about kool-aid..I like to think my taste is pretty damn dope..And you can't get it down there? That's rough.,0 +NERD!!!! Ahahahahaha...good shit though...congrats...how you celebrating?,0 +Freestyle Fighting to start their trial 30 days. It is cold as FUCK outside.,0 +bet lol! i kick ass on tha wii,0 +damn its ollie's bday? Yall should stop by over here too!,0 +lmao!!! I got that same weapon. Used it last night. Although I hate using it. HATE IT!!!,0 +damn... I thought i was smart! Thanks!!!,0 +damn im late as hell!,0 +Damn technology! when it works its great... when it dont WTF!!! lol,0 +damn black is on twitter. Happy new year to the midwest stars...Trackstar and Black Milk,0 +shit probably!! Bitch was always looking for a hand out. I think that plus the paranoia.,0 +very sad to sell yourself but its something she has to live with not me. I'm just glad I found out! Damn recession!,0 +I was glad anyway. Bitch was was blocking my hustle. Now hoes sit back seat. MOB and that no bullshit till the grave,0 +Right now I'd demand a new laptop fuck that. Hit up @bestbuy.,0 +lol. The match was fucking epic.,0 +i fucking REFUSE to pay that much money for a laptop. not that i have it but still. the "apple tax" would turn me off if i did,0 +damn i didnt know i would have gone,0 +damn i woulda waited it out for the 360 pimp,0 +I nominate @GarnettLee in #videogames because I love 1UP yours and it's "his god damn show!",0 +ur probably at henry's.. it's gay nite lol..,0 +damn your gonna have to reach down into your dj jedi mind and pull it off. You can though,0 +I actually piss ace of spade so its not that bad,0 +yeah i just watched that my damn self. ridiculous.,0 +sucks to be me tonight....,0 +actually he took that damn Fat Joe song and just sped up the track... BUt i like Webstars better,0 +where's ya damn picture?!?,0 +as much as i wanted to hate it...that song is crazy!!!!,0 +Now you'll really hate me when I tell you I saw her live....twice....during the same tour. Nashville and Chattanooga.,0 +not blanket restriction. Definitive laws geared towards specific abuses i.e. slander libel obscenity hate talk etc.,0 +- :) And yeah I know I think I set off every nerd alarm in a five mile radius with that one.,0 +are you serious? That sucks!,0 +i fucking love that movie.,0 +spazmatics...they play 80's songs at the casino...fucking awesome.,0 +damn that will certainly kill your upgrade happiness,0 +Hey Amber! :) Hope you're staying warm. Hate the fact that I have to work but it's money and we all could use that! LOL,0 +@AllanGoesDMB I hate to cuddle...I need my space! For real!,0 +..hear that?" hahah and i was like yeah. i am a dmb freak :),0 +I'd be a lot more sympathetic re the Jets if you didn't look like Tricky Dick.,0 +damn. they obviously fixed the twitter website too. used to knacker it proper (as I believe they say here in the westcountry),0 +Harry Hill is the marmite of the comedy world. You either love him or hate him. Personally I hate the ****.,0 +If you hate that kind of revisionism you'll probably hate "Code Geass". Japan is like the South when it comes to its war history.,0 +I also walk to school a mile each way every day during the semester. I'm still fat. :-( I guess not as bad as I was. though.,0 +when i get fat you have no one to blame but yourself.,0 +the peeps of @gangplank just want to show how bad ass phoenix is turning out to be.. plus we like the boulder peeps.. : ),0 +now that commercial is funny as hell a damn blanket with sleeves what will they think off next?!?!,0 +it's big fat JAVA,0 +meh that sucks. I guess it makes sense but still...that's kinda lame.,0 +success as a gay? Beyond the snappy dressing and liking wieners what can I do to be a successful gay?,0 +I'll alert the gay-thorities.,0 +Yeah. I was thinking the same thing. I don't WANT to go work from a coffee shop all day! Damn!,0 +Wow. Dick move there Cobra Commander.,0 +When you label something does it disappear from the inbox? I too hate clutter in the inbox and only keep active e-mail in it.,0 +Well I have been in other maternity pants for several weeks but can no longer comfortably zip my "fat" jeans-Liz Lange mid-belly!,0 +lol cleaning i hate the dentist with a passion!,0 +woah that sucks :(,0 +or tight ass pants..smh,0 +it sucks but at least I get shit done unlike my good for nothing brothers lolz,0 +that sucks :(,0 +srsly though when the fuck has it ever been this cold here?,0 +I don't really remember but damn its killing me,0 +no but I'm fucking hungry right now~,0 +@icyfrance THANK YOU DUDES for kombucha! I am waiting to unleash the fucking fury on my gastronomics til later afternoon.,0 +we all need to be a bitch sometimes not a bad thing lol,0 +Aw!! you look way fucking cute today! I luving the scarf!!!,0 +damn its like there black bunny playing peek a boo. HAHA girl is still fucking cute though fo sho.,0 +I wish I could take the credit... fuck it I'm going to try to,0 +And that's why losing those people sucks as much as it does,0 +Need to spend some time with Moneywell but having to stick with iBank for now - even if I hate it.,0 +fuck yeah!,0 +Nope. Just like there's nowhere you can act an ass on the internet without the entire world hearing about it. Fact o' life.,0 +Hey no big. It's not my ass that's showing.,0 + i hate when they forget my extra 2 liter!!!!!,0 +112 feet long? Damn!,0 +Well "That n*gga sucks" and what? Lol Im kiddin :-),0 +DAMN!!!! I'm MAD I just left there now lol,0 +For some reason I really hate that movie and those books. Bunch of weak ass vampires.,0 +How's my favorite in the holiday spirit guinea pig this morning?,0 +http://twitpic.com/y2yl - That. Fucking. Rules.,0 +NOES! I am younger then @tirb... but... FINE! You fucking win... jeez.,0 +that's excellent advice. thanks. i'd hate to be trapped by my own clothes,0 +chica i am too beat to go any damn where pero i want pancakes. bad. :(,0 +awww damn. sending healing light.,0 +@nezua @cripchick at 0:37 "i hate black pepper!" http://tinyurl.com/69rbnb,0 +"""hatin ass"" is one of my favorites. thank you.",0 +chiiiiiiiiiiild! that mess is sickening. hate hate hate HATE it. ugh. it's so tacky. i blame freeway.,0 +i know - i just HATE IT! HATE IT HATE IT! LOL im such a horrible people-pleaser! made me nauseous to press send :o(,0 +#NAME?,0 +- welcome to Twitter! I'd love to see a Munchkin-themed Fail Whale ... :-),0 +It's good for what ails ye! I used to hate vegemite as a kid. Now though on hot buttered toast... nomnom indeed!,0 +That sucks dude I can give you all my media if you want a head start on getting it all back...let me know,0 +I try my 17yo is a band follower & I am the driver. So we have been to many cities & I hate driving. Next trip not till Feb,0 +He is still trying to figure out who to side with. And how not to piss off the Islamists world.,0 +it's called ooops... aim signed me off.. damn interents,0 +ha ha so fucking snobbish now son!!! .... lol.. I love it,0 +and we spent hours together (with her husband) picking out their favorites... so I use them... and then they say they hate that photo,0 +@joeljohnson corporate blogging still sucks because there's no strategy or measurable goals defined,0 +pig's ear beer festival,0 +Yes! But so am I so I can't hate!,0 +Hellz Yes! Remind me not to piss you off! Rember the candy bars I got you! Gotta play nice!,0 + LOL! I give @johnhenrymuller all the props in the world he is holding down a family and working his ass off though so he wins.,0 +Hey dude SuperJail is the fucking JAM. You can watch 'em all streaming here: http://tinyurl.com/5n55hg,0 +son i cant decide cuz the blackberry is sooo delish! oh and yea ill do that cd.. if i can find a damn blank cd lol,0 +I KNOW!!!! makes my fucking dayyy!!! shes HUGE,0 +Lmao I broke the shorts out the other day.. Thats why I sports a hoody and shorts half the damn time!,0 +Sorry all sucks. But let us know when you need a moving crew on the cheap. I can be paid in beer.,0 +Cure emo or Dashboard Confessional emo? 2 different sets of issues. Either need a razorblade or a girlfriend... What's the deal?,0 +Is Windows Live now a Facebook wannabe? http://tinyurl.com/6py66j,0 +it's a damn sight better than that 'mercy' BS,0 +don't you hate waiting on the cable guy.,0 +damn - i was excited for a moment - but they aren't complete books :(,0 +Yes Dick York. His animation was the best with that big nose and skinny legs. What memories.,0 +Oh well just try not to piss him off too much. I don't think I can save you from him yet. Unless the cars done...,0 +lol what? Tell Danielle that I have mad skills when it comes to reading people fuck.,0 +-Steffy-",0 +idk who she is I just found the link on /b/ couldn't stop laughing and then thought 'omglol Fray would hate her roflrofl',0 +Buaha atleast im doing my "fun" homework right now.. This is one ugly ass Squirrel... and it's not finished yet.,0 +Release your anger let the hate flow through you. And your journey towards the darkside will be complete.,0 +now it reads the drive then looses connection. Or does not establish a connection for ages. Sucks as it's alreadya year old,0 +Lol.. I def know how that can be I do payroll aswell!! We might be sum diva ass bosses okay alright okay..lol,0 +hahahahah..lol..lol... dammm your ass dont be playing but okay! Im serious! that was funny tho....lol,0 +Mon nite l8 ( 11pm+ my time) may work well. Don't have tokbox acct yet- my connection @ home sucks. We can try Skype or phone?,0 +wow...how much damage? did you get out and kick them in their damn shins? i would've. shin kicks hurt.,0 +problem is there's no natl media there. You can bet your ass if a hurricane hit Queens itd lead the news each night for weeks,0 +I hate aol email. its not 1998. wake up.,0 +LOL Keesha thought the whore island was directed at her,0 +Damn your taking me back tonight. Quik Cube BombSquad..Quiks whole crew had the best posse cuts. Except for Rap-A-Lot...,0 +Damn i wish i went out tonight. Twitter that shit up next time and let me know Haha,0 +i'm having an awful day though... i'm screwing up life again and my step-father's been yelling a lot and ugh i hate this!,0 +haha that episode is fucking hilarious!,0 +& aww that sucks :(,0 +More Snow The More I Have To Shovel :( I HATE THE EASTCOAST :(,0 +- Yep. Did I tell you my plan - which shd fund 50 surgeries in the coming year? No? Damn shd send you that email! :lol:,0 +Hmmmmm I havent gotten a whale in awhile maybe that will come soon....Maybe it's the SNOW!!!!!!!! NOOOOOOO!!!!,0 +Fuck that life is pain. Anyone who tells you differently is selling something.,0 +Damn yoooooooooou. @tarlynxeno And damn yoooooou toooooo.,0 +Well... that's a pretty damn good reason! Fuck.,0 +Weekends in general work better for people you illiterate cockgobbling fuck.,0 +Sucks u have to work wed,0 +that sucks man! what happened! -- network latency?,0 +hey loser you should call/gmail message meeeeeeee,0 +crikey - wish I had! Speaking of narcotic influence Solid Steel Podcast lyric "I would hate to have a clock for a face" WTF?,0 +or do you just hate crossing them in big chunks?,0 +LMAO - I did too! Just went into the cities and started slaughtering just to see what would happen. Some damn funny stuff!,0 +Ringo sucks - George will always be my favorite,0 +I told ya! Hehe. I reckon it was the RBL lists I told it to lookup that did it. I had to reinstall the whole fucking server! =(,0 +I wanna bring home perishables though and fuck paying for a Taxi.,0 +I am already the fat controller.,0 +I hate the Stonetalon Mtns. Stranglethorn I enjoyed last time I played there.,0 +why do you hate macy's so much again?,0 +don't you hate cofee?,0 +aw dude!! That sucks.. Well whever u put a new tell me:) nice job with the vids,0 +I worked with NPH last year and will continue to whore out this picture: http://flickr.com/photos/girlposse/2246322815,0 +I'm a font nerd so Sand Saref first made me think of Sans Serif and I definitely think the world needs anthropomorphic font heroes,0 +you're going to be at Genentech tomorrow? Damn I work there but I'm going to be at the Westin for an offsite!,0 +that sucks. Hope she heals well and that everything goes ok.,0 +guilt trip succeeded - damn you. On with the code! :),0 +yeah damn near engaged...he's well....living in KY teaching married kids etc.,0 +hate that place! Oh...i got my camera. The D40! It is amazing. Thanks for the help.,0 +@calraigh OMG Spotz mentioned my doggie ass thread in the directors commentary. I am so glad to have provided him some giggles lmao,0 +OH MY GOD this sucks cuz today is supposed to be shopping day for the B...,0 +get off vins frigging iphone and go finish the damn saab so i can go home!,0 +agreed damn good reflexes.,0 +I think it's left... we should just head to the left. or was it right? Damn. Fail.,0 +http://twitpic.com/w588 - YEEEEEEEEEEESSSSS! Those damn Salingers I loved them too,0 +ha it was pretty funny almost busted my ass a few times,0 +I hate when i get that bored.,0 +@Rosenbergradio Cipha Sounds used to work at Fat Beats he knows more than youd think,0 +Woah. Really kicking the nerd knob up to 11 there. hahaha Ok. I challenge you. For Christmas this year I got the following:,0 +talking about how FUCKING LOUD HE IS.,0 +i do every. Fucking. Day.,0 +BELIEVE IT. lol. I still love you. It's just that I would hate myself for passing up an opportunity to laugh so hard @ a show.,0 +lol. True. But I think my ass could use a down-sizing. Plus I don't have money for a new wardrobe just to accommodate a new ass.,0 +WHOA WHOA WHOA. You might have to fight me for it :) heh. jk. I just auto-assume that everyone is gay. Gets me in trouble.,0 +I think lobbyist & politicians are to blame for our investing in failing enterprises. I wish theyd stop digging this damn hole.,0 +man people gonna hate you no matter how humble or talented... im learning that within my own city ... they will be on ya bandwagon,0 +ROGER? No. He's not THAT gay.,0 +Their Steam games don't have SecuSuck. Add one more reason to the list why Steam just kicks ass.,0 +Dont get ur not close? That seems more normal 2 me. I'm not fake and hate all thats fake. Fake families r worse than none!,0 +Hope you feel better soon! Sucks to work while sick.,0 +I love dat damn song / they played it at Tooey'z / I felt like a kid in a candy store. HAHA,0 +I hate you.,0 +Therefore I hate you. Lol.,0 +Don't worry I won't hate you once you have to wake up and sending tweets at 6a again. lol.,0 +I knew you were cute and sweet but damn my teeth are aching!! http://xrl.us/GreenGiant,0 +and I mean it too! Love it when people tell the truth. . .even (and especially) when my ass is hanging out!,0 +NO. U can't sleep either? Don't you hate it????,0 +understand very well. Need you to share your diet secret. I'm porking. Ugh. Hate this ...,0 +Damn that is scary,0 +i hope sean penn doesn't look gay in this movie oh wait....,0 +Yep you're right. Think I was spending a little too much time looking at the literal "This sucks!" responses that day.,0 +Haitian...or...hate-ee-uhn?,0 +Well! Now I am acutely aware that you called me a whore...thx for caring SO much lol,0 +damn it smells good in my house :) I predict a good meal in my future :),0 +awww man sorry to hear you got laid off damn economy sucks :(,0 +that sucks. But I still love you.,0 +thats all that calls house phones these days :) damn telemarketers,0 +G'morning - It mos def sucks. The automated stuff hardly ever helps... :-(,0 +according 2 Paris Hilton "diet coke is for fat people" so if her theory is accurate it unfortunately doesn't impact intellect,0 +Because the public school system sucks. Both the Chicago PS and Evanston PS were open today.,0 +oh i know; i hate winter =X,0 +I thought I looked good sitting on my ass he disagreed :)",0 +nah no cubicle for me. Works slow though. So I'm trying to produce some writing. Somthing more than shit fuck and piss,0 +wah wah what the fuck....,0 +lookit the ass on that. How was it off the line?,0 +it's fucking retarded hope that helps,0 +can you let it drag you like a retard?,0 +i hate your mom and your sister. Does that help? You can tell them that. they might cry a little. but prolly not.,0 +fuck me! I'm checking tomorrow.",0 +I hate him. Even though we have the same name.,0 +give @ffckatg a break. Her body is awash with hormones (whore-moans) right now.,0 +tell your mom that i wear this poncho because she's being a BITCH! Or don't.,0 +another week?! I NEED a haircut like YOU need a hole in your head! (i will grow it to my ass if you want),0 + Newsy v 1.0 wouldn't have given two squirts of piss about work. Just sayin.,0 +and we've been waiting all morning. You need to quit draggin' ass.,0 +I gave my wife Neil Gaiman's 'Preludes And Nocturnes' and 'The Dreamhunters' for Xmas. Bloody expensive! Damn comic nerds! :-P,0 +damn crackers.,0 +wow that is bad ass!,0 +which Fujitsu SfanSnap model is it? I hate how the mac version of the s300 costs a lot more for the Mac version,0 +that sucks. I'm sorry to hear that! I hope everything works out for you guys and that you can still have a great holiday!,0 +EW! I hate waking up that early.,0 +Dang that's rough. i'm just glad there are jobs in Texas for people whos states economy sucks worse then ours,0 + That sucks make Justin come get you on his bike,0 +Exactly! hate that so many designers and retailers think "plus size" = "matronly". Or clothing cheaply made.,0 +damn it's all been hoovered now lol. Now chocolate brownies and vanilla bean ice cream. Prezzies opened. Romantic comedy asap @V zzzz,0 +did you get those pants from Molten Core? cuz that ass is epic! :D,0 +@bilbrauer says your an old balls and had me say it because his phone sucks :-p cheers.,0 +oh fuck yea i fucking love fake christmas. especially with fake christians. i think we called it chanukah!,0 +Damn it now I have an urge to move to Vermont,0 +that is one damn scary thought.....,0 +wasn't it fucking awesome?! I want Simon to go out with Josh Groban their combined curly-haired hotness would RULE THE WORLD,0 +oh yeah they are definitely in Norwich. And she had about £50 worth of post I had four letters to Australia. DAMN THEM!,0 +I hate him too but his face is sort of inexplicably fascinating. A balding woman with bangs would make the show more fun,0 +yeah editing and processing stuff is fine it's usually around exporting that ass drag takes affect.,0 +damn dude. that is spot on (wrt fb v twitter),0 +Started doing 10 a day and just worked my way up over time! Now if only I could get rid of that stubborn last bit of belly fat!,0 +Are we talking about the same problem here? I was referring to the general hatey-hate going on re: Fox... (cont.),0 +Fuck.. didn't pay them enough I guess.,0 +Oh crap... I just saw (and talked) with some of them yesterday.... that sucks...,0 +damn son how do I get jeffstaple status,0 +Sorry was offline for awhile. The Twitter Whale comes up when their system is too busy to handle request. It is Whale Graphic.,0 +I know...I thought he decided to stay here....that sucks. What I'd give to catch him under the mistletoe...,0 +- we need to have desing discussions... none of the artists i work with give a fuck past thier day job about art :(,0 +- *hugz* ...and yer on the west so its only like noon or sumpin. damn.,0 +oh no - that sucks - ouch!,0 +i hate firefox today. doesnt want to work at all - i have had to go on safari ;),0 +still at ex-husbands house! i will be getting it just not quite yet. hmmm that really sucks. stoopid ps3,0 +but dad sleep fail whale?,0 +why thanks. but damn do I feel old.,0 +Nope sorry. 2009 will kick 2008's ass. At least the summer anyway.,0 +yea I drive a punk ass truck so Im lovin these petro prices. 10 bux is half a tank.,0 +You always fuck around. LOL. :p,0 +Did she give you a shot? I hate shots.,0 +Let me just launch my ass to work then.,0 +pls consider using LDAP fat clients not thin clients unless you have a really good network & good server. How many kids?,0 +- blow it out your Manhattanite ass. Jeff Zucker doesn't pay for all of our spa days at Garren NY.,0 +I hate you.,0 +fuck yeah mall bangs,0 +Well I mean it *is* Call in Gay day today.,0 +yeah it was about guinea pig sized. Small compared to the cat-sized monster rat we saw at home! Buy I know they get bigger. ;),0 +@cbarrett We observed that it seemed a lot easier than when we did it back in college. We are less fat now than we used to be. :P,0 +that looks bad ass don't think it's gonna happen on this trip. I did see Hundertwasser's work on the sewage plant pix to come.,0 +So you hate the new trackpad? *sends Jack's Xmas present back to Apple* *innocent whistling* :D,0 +Are you trying to freak me out?,0 +http://twitpic.com/sqha - I would hate to be on the road with Seattle drivers in the morning.,0 +Huckabee can be pretty slick and glib but he seemed to stumble on the gay marriage issue. He made some odd sounding statements.,0 +Sorry for going the obvious/safe/kick-ass-game route: LBP or MGS4 or Resistance 2. All three are really awesome games.,0 +I blame the holidays! Family (mine at least) completely sucks; but worse than family is all the dang cleaning! Ugh!,0 +eats pig ears. Blah!! :/,0 +i hate you for that!!!!!!! ¬¬¬,0 +O'Malley our cat drank them all. Hmm maybe HE is the culprit. Damn cat has the gift of gab AND Leprechaun beer. For shame!,0 +What's with the iPhone hate?,0 +I hate you for introducing this to me. :-/,0 +Is someone a bit of a twitter control freak?,0 +but shotgun approach is spam and will make people hate you. Something like kzero.co.uk (but non VW) consultancy to help maybe?,0 +Noting that while you a mere cat may be keeking my ass w/ ur plethora of Twitter fans I am more handsome in a leather jacket.,0 +agreed @ FB external links. I hate being stuck in frames. Same with Google Image.,0 +yes the k-8 gig was not nearly as terifying as I had suspected. I didn't die and the kids did not hate me. Great fun!,0 +Been there way too many times... I hate it for ya!,0 +Don't you hate it when that happens? I wish I could isolate myself with my computer but alas no such luck...,0 +I'm sorry. It sucks that you do make an effort and you get ignored and afterwards everyone blames you for not trying...,0 +@SuzeMuse I hate when twitter makes me use dictionary.com - i feel so dumb! "monocled" - (I have 2 unglassed eyes - phew!),0 +Tears for fears! Oh well time for my third Heineken. Happy Holidays Fuck Boy.,0 +Don't hate on my popularity. Haaa!!,0 +Fuck! I forgot to watch.,0 +damn you lost all the players you wanted to ny sports teams. The Yankees are gonna be a force to be reckoned with.,0 +Yeah heading back to work will be your vacation. You don't do any damn work there anyhow!,0 +Didn't they say IE8 would be their most compliant yet? It seriously sucks.,0 +johnny pastramis...the best hands down!... damn i wanna fall out rite now,0 +@yeswhat damn ya had a slumber party?!?,0 +damn ya gettin it poppin early its ya bday tho rite? have a good one mayne...,0 +It was a ROTTEN Oak. Damn thing is about hollow.,0 +Can't tell you how many times I snuck that big bitch into my bag and had her coach me through a test. Too bad about her leg...,0 +Fuck Yeah!,0 +just put your phone on dilent or turn tweets off damn yo,0 +I hate those spam email that require forms - email is supposed to make it easier to talk not harder,0 +Yeah that sucks. Saw some nasty accidents going thru Bangor last night.,0 +Yer a fackin pussy.,0 +tx.. may you have a kick-ass 09!,0 +oh ow...i hate that.,0 +that sucks. i sent you what i think is a decent tag lastnight and will likely send one today for Lachlan. feel better.,0 +I am sorry to hear about your foot. That really sucks. I hope you feel better.,0 +i hate passwords.,0 +Well snuggles up in a most decidedly non-sexual kind of way. Hey I don't want Jaye kicked my ass! Well..... ;-),0 +Cane?!? Really?? Oh my...that's so awesome! ;-) Poor Jaye! That really sucks.... stupid internet!!,0 +lets never text again just twitter at eachother from now on. btw does DP stand for "dick pounded"? or what?,0 +DAMN STRAIGHT YOU ARE :),0 +damn straight you will be.,0 +damn straight you need to find your iPod.,0 +I'm fucking KILLER at the drums,0 +fuck yeah fuck yeah. FUCK YEAH!,0 +my brother does that all the fucking time. Its ridiculous,0 +Dick jokes ;),0 +http://twitpic.com/qcy4 - I HATE YOU MERIEM,0 +Hot damn I love Gambit!!! oooh they'd better pick a very attractive actor for him...mmmm gaaaambit,0 +IT'S LIKE YOU HATE ME SO MUCH GREG!!!! SO MUUUUUUCH *cries*,0 +Damn straight woman!,0 +Bitch ur crazy! Hahah mean I like mcr as much as the next guy but ur making death threats to bob If he doesnt anwser you.,0 +WHAT THE FUCK BRYAR! hahah people are making death threats to you.,0 +http://twitpic.com/tyu9 - Fuck that looks like fun!!,0 +Hot damn! I need to get me one of those Cuisinart DCC-2000 Coffee on Demand Coffeemaker.haha,0 +damn you guys got there early!,0 +SINCE PEOPLE AREN'T FUCKING PLANES! GODDAMIT!,0 +Damn Evan... you PIMP!",0 +That's how I am thinking about the Rick Warren invocation. (Damn the neighborhood is going to be talking about this.),0 +this kicked ass. http://tinyurl.com/3ryxxw,0 +The fuck? How come you're on the couch?,0 +Mine are: oh work fuck fucking going. Muchly proud. http://tinyurl.com/65kpkr,0 +Aw thanks. I don't even know where to buy a tree though. Blahblah I hate Christmas.,0 +i just hate it when i have brilliant ideas and don't record them. the ones i do record are just never as good ...,0 + I'm done...except for groceries....I avoid malls at all times...hate them.,0 +Ohhh those. I hate those.,0 +jbt kolika ti je ta kada... meni nikad nije palo na pamet da udjem u kadu... is it cause I'm fat?,0 +you re so mean :D :D :D but we love you ( in non-gay way of course :D ),0 +yep shoutem kicks ass :),0 +Oh you lucky bitch! I have to go out tomorrow or Saturday (ew!),0 +What's new is this cold ass air out here in Cali! Totally unacceptable. You gotta get that playtime in ;),0 +good luck gettin her ass to pay up! lol,0 +don't u hate unrealistic theories?,0 +really? i hate snow. it makes people slip & fall T.T and i'm paranoid of driving on black ice >.>,0 +I hate you. I've had it for a few months and I'm only medium.,0 +bitch. You told me all that. LOL,0 +no. I won't rape Aidan. And you are a bitch. And I'm done talking for now. I have some one else I want to talk to :),0 +adams bday tomorrow? it sucks i am so busy wit homework - josh and i were thinking we could do something thurs maybe,0 + Yeah smart!! Lets encourage kids to eat cereal that is pure sugar so they get fat AND rotten teeth. Lovely.,0 +Hate e anne and yeah i'd totally prty w/u lmao,0 +Just because the roads are WET is no reason to freak out. Maybe I should get upset when I do dishes because there's water.,0 +The issue there is that I don't have another Mac to do that. I'm the only mac in a surrounding of PCs. Grrrr! This sucks!,0 +has a stick up her ass.,0 +www.cantstopthis.net fag. It's this upcoming saturday.,0 +HAHAH! Dont feel bad I fail too. Im at work and still have hella shopping to do. I hate commerce driven holidays.,0 +Are you *having* brunch at Max Brenner's? Because I need to know whether to hate you this morning.,0 +Then I shall hate you retroactively yesterday for that. Look at me I'm all green with envy and spite.,0 +ohhhhhhh that always sucks! are you going to be around wny for christmas? ill be in SC from the 24th-28th.,0 +Oh..that sucks..It seems like xmas is passing faster this year then last year!,0 +yes i do and it sucks.,0 +damn that sucks. it rocks having around 6 people working on different pieces of the control system.,0 +damn dude. nice find. awesome work in there.,0 +damn looks incredible :),0 +it's weird... I usually hate country music but hearing it on the local level is quite different.,0 +I love this weather because it isn't that cold. What I hate is the frozen winds of early February.,0 +is picking on me and my love / hate with google.,0 +damn. Sorry you missed the show fam. Really cool of you to try and make it.,0 +Want more energy?...lose some weight..aka FAT both products Science-based..one has composite patent other double-blind study!,0 +you got a Chumby? rock on! if you make a Qweerty widget for it does that make it gay?,0 +i got you your "i <3 fat bitches" shirt. got one for matt and a "i <3 fat blunts" shirt as well. Joe is around? or he in LA?,0 +just got in damn tired. i'll give ya a call tomorrow,0 +what's with the lack of internet? is it comcast? are they being a bitch?,0 +the google iPhone app sucks! Vlingo is much better and faster,0 +I would hate to be your cable modem at a time like this. "Eek I'm next!",0 +u should not hate. http://tinyurl.com/2ezd68 3:20+,0 +"""hate in ur heart will consume u 2"" how does that make u sick? dont b a hater on will smith",0 +LOL! I'd hate to see you on the news. Don't cut anyone. RELAX!,0 +wow That sucks. when i was in jersey our hotel had free wirelss,0 +I am all a twitter hahaha! lulz. Shit. Sometimes I hate my job. Ooooh trauma. Later sexy.,0 +Well.. Sucks to be you. Oh well.,0 +bitch gash thrash,0 +i hate snow. you can give me yr car. if you want.,0 +OH GOD DAMN IT!!,0 +I know haha and the cold sucks but I get so excited when it does snow. They say it'll turn to rain so I want to catch it!,0 +lol. SAVE THE WHALE! post more.,0 +i hate when that happens.,0 +hope i didn't actually scare you or freak you out in @BradmanTV earlier lol,0 +*sends fruit basket* Hope you get better soon being sick sucks!,0 +CHALUPA!!!! I hate how TB is only open till 11... :/,0 +Så...To be honest i love you so fucking much because you're cute. Roflmfao I love abbreviations. Ah jeg er jo god! XD,0 +well some bitch..,0 +ahahaha. you're a nerd. <3,0 +I FUCKING TOLD YOU! GAYEST SHOW EVER!!!! WIN WIN WIN,0 +So sorry to hear that. Sucks that all transmission work is kinda like that. Argh.,0 +Looks like they are all sold out already. Damn.,0 +dude that fucking sucks. He was a cool cat. RIP,0 +Me too! I hate facebook! Transatlantic hi5!,0 +Damn that sucks! What the heck were MPs doing on a public road in the Central Coast?,0 +This is why I feel like I have to do everything myself It's a damn shame you can't trust people to hold up their end of shit.,0 +doesn't Ronson ALWAYS win??? That shit is dope as FUCK BTW.,0 +Those damn republican ninjas... what are we to do?,0 +Nice to meet you too! The moon was friggin awesome. Biiig!!! I tried taking pictures but my camera sucks.,0 +check that. looks pretty. it only sucks when you're in it.,0 +damn right.,0 + it's sucks did you get the message about it.,0 +What do you think about this in regards to your nerd daily lists: http://is.gd/a4vQ I'm just curious.,0 +Wow! Very impressive but you are going to get hate-mail from the Apple lovers. And the XP lovers. And the linux Lovers. :P,0 +Sucks when u have a cold! Have u tried drinking tea with lemon & honey? That usually makes me feel better when I have a cold! :),0 +http://twitpic.com/t9za - good god. that looks OUCH! although the splattering on the guitar is pretty damn cool.,0 +well two outta four ain't bad :D OW! i just realized i have a splinter... where the fuck did i get that?!,0 +god that sucks. that's how my job was for like the last 6 months or so i was there. thank frank for internet access yeah?! ;),0 +I hate that..... what was it?,0 +You are with your parents????? You poor baby! I love and hate vacationing with mine.,0 +OMG Sheesh. Its probably good though. Right balance of sweet salt fat heart attack diabetes and stroke all in one bite.,0 +Damn. That's pretty bad. Ewww...,0 +LOL - actually after having my bitch fit I think it could be Mozillla Thunderbird thats is causing the problem!,0 +it actually goes off the gay years scale! But thanksfully us gays stop ageing at 27!,0 +omg NO I DON'T hahahaha that's one of the very few songs I truly hate. drives coworkers crazy because they think it's awesome!,0 +tweets that 'Bill O'Reilly is Gay' http://tinyurl.com/97jrc6 Hysterical prank.,0 +That sucks smelly donkey testicals. I was up and doing house work then.,0 +Whats next? Should be put a CALORIE tax on the food we eat during the holidays ? I'm dreaming of a FAT XMAS..LOL,0 +damn. now im craving them from you tweeting them!,0 +Damn! Nice computer! Yeah it is the higher end model.,0 +yes please! I'd kill for a Guinness at work right now don't make me kill a bitch!,0 +that was a funny ass video!,0 +The ex-gay ministry Living Waters has one geared to high schoolers! JUST KIDDING! ;),0 +haha. a little off. but i picked up my 28 year old's sister copy that we got her for christmas and tried to hate it.,0 +don't hate Suai I'm hilarious.,0 +hear hear. hate that in all sports.,0 +...oh :( that sucks.,0 +Damn I knew Big tree trunk would get around ur way sooner or later. Do I like being watched by who?Big tree trunk or in general,0 +ask that nigga why he auto-tuned that joint if he can actually sing...I hate that shit...haha,0 +wake the fuck up!,0 +http://tinyurl.com/94v4b5 Seems like another reason to love apple/hate microsoft,0 +Me too - and now I hate KIIS almost just as much.,0 +Yeah it's absolutely terrible! I'm w/@cristyissues - hate the show!,0 +ha ha ha ha! If you cook them right they can taste amazing seriously! Almonds are good too. Sucks about the supplement :(.,0 +oh the poor thing! Sucks that you can't use electronic devices in a hospital :( 5 year old copies of That's Life just won't do.,0 +oh god...no more rock of love please...those reality shows are gettin old as fuck now.,0 +how the fuck do I know your name? I know I've heard it before...who have you worked with?,0 +I AM USING THE NUMBER YOU PROVIDED HOOR. Perhaps you shouldn't have given me some old fat dude's number. :D,0 +Cookies! And meat sauce! And mushroom ragout for tomorrow. And...oh damn where's my list? Gack.,0 +@akaMonty *HATE*,0 +Fat Bastard.,0 +Surprisingly I found that Oz wasn't gay ENOUGH for me.,0 +hate their commercial with mom relaxing with salad while kids play-that place is TOO loud and full of tweens w/potty mouths!,0 +uhhhhh that sucks! do you have a blanket in the car to wrap? I'd be worried about snowed in car though...,0 +uh yeah LOL! I wouldn't say thin really but I SO HATE exercising! I could eat less brownies I suppose ;),0 +You're such the nerd. <3 Also time to shower. WHEE!,0 +I played in those days too.. I like these days better. Running everywhere sucks balls.,0 +thanks girl and damn you @robertocstone for sending me that OJ da Juiceman mixtape cover. LMAO,0 +dont hate on my man booba. That's corentin's homeboy. He's a super sexy french rapper,0 +that sucks try this one http://tinyurl.com/yozen3,0 +i would if i could get done with mine...damn hgtv is making it impossible!,0 +my bitch of a sister sold ours. I had like every fuckin game. :-(,0 +I hate sisters,0 +I'm still on the fence. But I have a pretty good idea. All I can say is "DAMN. Damn damn. Really?!! Damn.",0 +ME TOO loved I&II... they changed Evys. I hate that. We're not supposed to notice?! It was also awful for many reasons beyond that,0 +Ah I hate doing that because I get confused very easily ... although it might work with Smallville,0 +Sugar was too much of a bitch. The old man deserved it.,0 +I'm sorry you get these....awful ! You can bitch to me anytime you have on kk.,0 +Being sick sucks although trying to smoke a cigar when your sick is the worst. Feel better soon and enjoy that stogie!,0 +Hate from a friend.,0 +DIDN'T GET A DAMN THING FROM MY CHRISTMAS LIST,0 +Ohhhhhh(my typicall Ohhhh) now I know which awards..has anyone ever told u that u r a loser :P,0 +Holy fuck yes please.,0 +bitch we're going to vegas call me when you get a chance for details.,0 +I hate that song and the dance and the gold UPGRADE bling in her mouth. Worst commercial ever!,0 +slice to fry size fat free cooking spray on pan salt & pepper bake 10-15 min flipping once at 375 then broil 5 min each side,0 +that sounds scary! Hope you didn't have to dive in after him. Hate those scenes in movies - totally afraid of walking on ice.,0 +Wow - sucks for you. Why didn't you wear your NRA pin or something?,0 +Damn!! That's your plug.,0 +i didn't sign off... i think AIM is being spazzy with me again. FUCKING THING HATES ME AND ALL I EVER DO IT LOVE IT. http: ...,0 +Rosenberg stay fucking up it seems. lol. http://tinyurl.com/5fhths,0 +Good to see you in-studio on red eye. Need more white hate in the sherrod seat tho.,0 +id feel bad for your weather but you see youre in fucking hawaii. Wahh!,0 +you only love jon because i rock the hate for him in the old stuff. LOL,0 +Oh UAL sucks for US-Sino flights! Sorry to hear that you will have to endure such pain!,0 +Damn you Pinot Noir and your grapey goodness!,0 +good call and thanks. Just perplexed by folks who spread fear and hate. worried they distract from real issues.,0 +ours has been too... i could hardly decorate the darn thing.. kept pokin me and hurting me! i hate real trees!,0 +after my surgery mine was anywhere from 45-60% of a normal sized bladder. My life sucks.,0 +@selcom60 Well he is sick but that's no excuse to be an ass at Christmas. I'm gonna get me a glass of wine and chill out.,0 +that's enough hate from you. I've definitely heard better things about fusion than parellels recently though.,0 +haha russell peters kicks ass!,0 +agreed re: winer not sure why I was stating the obvious must be the damn wine! how would you improve twitter though?,0 +Say "Yo" from Dick Hammer to everyone,0 +the only good thing about telus is there cell phones. Everything else sucks shit!,0 +Telstra Conroy seems a hate relationship as opposed to love hate but we need each other thing: sad 4 net.au,0 +IT'S SNOWING IN FL! A CHRISTMAS MIRACLE! AND LOOK A PIG JUST FLEW BY THE FROSTY WINDOW! :),0 +rboscia Well that sucks that you have to work. :( welcome to hipsterville. You are joining myside with apple :),0 +I don't hate you. I just hate some of the things you do. There's a diff,0 +I don't hate her. She just deserves the runs for cutting me off then flipping me off... ;),0 +glad to hear you can surf; sucks about your eye tho :(,0 +Damn! Don't worry! Someone from The Maines livejouranl records it and posts the video! :),0 +well fortunately for the gay people. and too bad for the prop8 nazis after the fact is spelled out in latin: ex post facto.,0 +April 3 @ the Loft or April 4 @ Mojoes; Craig Owens The Color Fred and The Gay Blades. FOR REALZ?!?!,0 +Get it ¿? Damn . And now you people @yuuppiitsannee and @hiiemily see why I'm terrible.,0 + it is gorgeous but it wouldn't be gorgeous on my fat ass!! hehe the'd need several more hefty bags...IJS ;),0 +ouch! that sucks! on 2nd thought u might look cooler w/ an eye patch!!! LOL!,0 +Just discovered ur recent blog entries (you can thank Jade for that!) DAMN GIRL!!! hawt!!!,0 +Well maybe you can at least be a DD for us. :P And you can stay sober enough to see my drunk ass! Hah hah.,0 +damn u for getting me on twitter lol,0 +why do you hate the piano? o_O,0 +btw i so do not hate you. ):,0 +exactly. Its a chick magnet too i think. They show their emo drawings to a girl of similar shape and she croons.,0 +I hate automated phone systems too try http://www.gethuman.com/ !,0 +That sucks! Been there. I have given up numerous times for the same reason.,0 +LOL! Thanks Christopher. You've just encouraged me to get off my fat butt. That's a good thing :),0 +@ginny_caputo My whole office is a big fat tumbleweed of junk and I have pens falling out of my hair. I need help.,0 +You're always welcome and it would be more fodder for my coworkers' everlasting uncertainty about whether or not I'm gay.,0 +the iPhone isn't the problem it's the damn monthy bill and do they have 3G in Pittsburg? Was on 35 from OK to ICT in Oct. no 3g,0 +burned thru 2-II's 3IIn's working on 4III's You read too many of those damn magazines. Never had problems unless THROWN to ground,0 +gotcha canon guy here @bradjward is Nikon nerd and you know he's Freddy Frugal,0 +don't let @tsand know he'll make me give up my "man card" but you just reminded me that I am missing the Jungle.. Damn!!,0 +u can lemme knw a css one =D but opacity n other sucks .. hehehe,0 +I do..my ass wanna go home!! lol,0 +lol...and the ones who are there for a ifetime...u wish it was a damn season!,0 +damn daylight savings time LOL,0 + Hey don't hate .... Whaddya have against the Blackberry Curve? Yeah - I know it's the same name as the Women's Gym Chain..,0 +i think its a strategy move. No video on iPhone. Why? Marget segmentation maybe...not to piss off itune's bred and butter...,0 +they hate Hamas. Do you what kind of terror Hamas runs in Gaza?,0 +images don't always speak for what they should. I hate violence. I really do. I hope things will be 'peaceful' one day.,0 +I think waffles have more fat than pancakes-have heard that waffle batter --> pancakes is better than pancake batter --> waffles,0 +dammit! You keep your damn dirty hands off my fruit gummy chews!!,0 +I kind of hate that place. It's so big I always feel in constant danger of getting lost.,0 +haha i hate it when that happens,0 +or they could just do mass downloading of the movie. THAT would piss off Summit for sure.,0 +aah! damn. i was gonna but something distracted me. absolutely no hang ups outing twittetfriendz. next time!,0 +LOVE the video of you skating and cursing. love it when you say fuck...kinda sexy LOL..how did you learn to skate so good?:),0 +Oh I get it Amici - Fucking Mad Cow Disease - Will feast on it and tweet the review - Thank You,0 +word I'm in gear and focused on this frigid ass night.,0 +Aww damn Majesters.. took it back to throwback Harlem yo @abanks32 Homegirl new spot cant be better than Famous Fish on 45th!,0 +Yea Famous with the damn downstairs deathtrap line lolol,0 +Damn the Mom cosign is heavy! That turkey must be bomb!,0 +Maybe but their snide comments about burying (their word) the Watchmen movie piss me off. http://bit.ly/bv3E,0 +a fucking sexy librarian!,0 +have you ever watched message in a bottle? i cried like a loser haha,0 +translation for the white boy: naty nobodys last name is The Ass. Haha,0 +daddys in the a? Damn I missed it....,0 +not hating on the BX at all.... hating on the damn commute!,0 +That sucks! My son's myspace got hacked recently it was awful!,0 +that just sucks. Now I feel bad for promoting their Xmas dinner on my site. Hate to recommened stuff that ends up sucking :(,0 +you're making me hungry! (& I just ate a Valerie croissant plain as I am getting fat). Haven't been there in years,0 +sucks. After jerking me around for days on setup they FINALLY applied free service... YEA RIGHT. Just got bill for time the promis,0 +I hate waiting for stuff to be delivered - the only drawback to online shopping is that I want my stuff NOW!,0 +: Infact blackberry needs to employ his ass on the campaign to make the ultimate blackberry that his ass can not break or lose.,0 +But snow is awesome! It's the temperature which supports snow that I grow to hate.,0 +Leave us strap wearing gay perverts alone! (jeez a little uncalled for?)...,0 +Yeah @jacklayton's one looks really good! @pmharper still looks like a tool with a slut.,0 +No I just don't give a damn anymore.,0 +Damn right!,0 +lmao u crazy ass ily,0 +u kinda are a freak but in a good way...ily :D,0 +im glad u hate the cowboys otherwise id hate u becuz I can't watch espn without hearing about TO and romo,0 +bread!!!! and not enuf eggs so fuck it aha,0 +more like earl gay tea,0 +theyre every hip-hop guys glasses...its a new trend from everyone from kanye to my friend nick gonzalez. nerd glasses r mainstream,0 +lets kick discmaakers' ass for christmas,0 +U really hate that iPhone don't u? I love mine,0 +Damn it you beat me.,0 +Tom would like to know if you hate him..?,0 +I shall eventually. Like after I get home from work tomorrow. Damn 10-4:30 shift that is sort of my sister's but not.,0 +I will have to show you a pic of my Yorkie babies! They keep me laughing and they make me crazy. Get off my damn couch! LOL,0 +Mostly good I think. Sorry to hear about your phone. That sucks!!!,0 +My problem is that I completely fucking hate Oz. I know how to write about books I don't like but Oz just defeats me.,0 +re: the hate crime in NYC: it was a combination of racial and anti-gay slurs. Why was the gay part left out of the story?,0 +Oh my god the summary ALONE. That is AMAZING. It reminds me of the fake SGA crackfic where everyone tells John he's fat!,0 +Yall damn New Yorkers are something else New Yorkers+Holiday Shopping+Crowded Mall Parking Lot= A bunch of angry people..lol,0 +Life's A Bitch 09' : http://sharebee.com/c0756ec0,0 +It's 09 and Life's still a bitch..... Haha,0 +"""background too damn busy"" I'd much rather c your ""Red Planet"" there - so incredibly eye catching extraordinary wild gorgeous",0 +LOL.. you just want a damn excuse for me to wash your dishes after those lavish meals we cook. VACASIA's when???,0 +that's Laughing Me Off Ass. lol,0 +hmmm that's a good ass question. Who in the hell would play Mason Betha? my votes for Curren$y actually. Fab is a lil older.,0 +yeah that's called my drunk ass taking a pic of myself on the carpet as I'm LEAVING! SMH,0 +did you see the video Karrine did for last fashion week? I act an ass! Eva Mendes Zoe Vanessa I was out there!,0 +There go the Mets adding to that high ass payroll for another collapse. Man i can take the Mets blowing another division lead!,0 +lmao I rock that Florida Evans ALL the time 'damn damn damn damn damn',0 +LMAO you fat?? I beg to differ. At least he didn't say he was sending Prince to your house to make pancakes! (Chappelle Show) lol,0 +nothing much except looking for you! Damn you were like Nemo! lol j/k What up giiiiiirl?,0 +how did it JUST occur to you that YOU have too much "damn" stuff? lol,0 +I've gotta admit he makes a really cute Waffle Bitch. @CaryRN I think I can even hire him out.,0 +Et fucking RER B !,0 +I'd have 2 say a nice ass & hips.,0 +HELL NAH!!!! Not the ass hole?!?! LMFAO!!!!!,0 +U would be a beast if u could get from the CO to GA by what 11pm? Damn...lol!!!!,0 +spice fucking a pumpkin,0 +oh boogie loves the freak train... all aboard!!! watch,0 +oh I hate that feeling!,0 +What did you do to piss off the flash drive?,0 +i got all my shopping done in november cause there was no way i was going to get stuck in a long ass line! hehee,0 +GOOD FOR YOU! Kick ass.,0 +damn sorry I didn't get one into AB when we were there.,0 +naah no fail whale here Twitter was just being merciful to the rest of us ;) #mcl2,0 +well damn...that sucks...,0 +Guess your 'bad ass' networking issues has Gears 2 sinking fast. Take a time out from the pushups and fix that shit!,0 +Damn I need one of those for my Elite that kicked the bucket yesterday!,0 +Did you know there are American Idol stars having a concert here on the 16th. Sounds like the kind of gay shit you like.,0 +Yeah that should be more than gay enough for you.,0 +Like bacon & eggs the chicken was interested and the pig was committed.,0 +"""What are you doing Dave?""... ""Damn-it Dave I need more power!!""",0 +I hate the Pats more than I hate boxed wine.,0 +'you can do it!' kick ass fdo!,0 +they have a clear ass copy of this movie @ G's babershop yo,0 +no but Dana Dane's washed-up ass came to the park once to do "Nightmares" womp womp,0 +I wonder if Romey and his big fat sister Naomi really exist,0 +I hate it when that happens to me I take tablets to get to sleep but they don't always work. They're kicking in now though!,0 +damn thats crazy... so you've never known the joy of Cinnamon Toast Crunch or good apple pie? *sheds a tear,0 +"""Flashing Lights "" ""Drunk & Hot Girls"" (never got the hate for this) ""I Wonder"" & ""Everything I Am."" this is my 2nd fav",0 +I hate it when that happens. Give 'em hell girl!,0 +Ha! Competing ass-kicking RED deals....hmmmm.,0 +this is just awful i'm really tired and will be dragging ass all day.,0 +Will do! Although right now I have no idea what I'm doing or how to fit everything in. Hate squeezing 6 months into 2 days!,0 +I totally agree nothing I hate more than to take someone a good bottle then they serve you a glass of their cheap shit!,0 +I think I got it. Thanks Zac you saved my ass.,0 +Way to go. We even talked (God I hate that word.) about you bringing her(?).,0 +The collectors edition is fucking amazing. Too bad it's $100 right? D:,0 +me too and hungry ass hell!!,0 +im tryin to think the last time i saw him also..lol",0 +damn that sucks for youuuuu,0 + Yes it's glorious outside! Lived one year in Norway: Hate snow hate ice more.,0 +gogo dancing is fucking classy yo,0 +Damn you're cool,0 +you son of a bitch wanting consistency and relaxed limits!,0 +that sucks. Hope you aren't stuck out there long!,0 +lol. I tend to have that problem as well but my inner liquor nerd pays attention for at least the first couple drinks. :0,0 +do you know how long I have been wanting you to say something to me? Then you go & fuck it up by saying the C word.,0 +- word up the Dragonball movie trailer offically has me upset. It's looks MAD cheesy & bootleg. Chow Yun Fat is the only cool dude,0 +agreed the VCs in Silicon Valley see it the same way recession through '09 2010 we start to recover. What a damn mess!,0 +eep that sucks! yeah i decided to wax my eyebrows and do my nails insted of homework...,0 +AnnMT He was the best host the Tony's ever had so maybe his mojo will work for the Oscars. Plus he's damn hot. I interviewed him once!,0 +Facial hair is a dominant trait among our east end nerd herd - 'cept the ladies tho,0 +- hate to tell u but u'v been Lucy for quite some time now miss...,0 +Start enforcing...kick some ass. SAVE THE TWIT!!!,0 +Bears are awful evil killing machines. Cowboys are cool...Jerry Jones sucks.,0 +Damon and Carlton from LOST are GAY!!!!,0 +- French? No he's Scottish by damn! lol,0 +- Damn do you go tanning every day? I haven't been tanning in like 6 months. I need to get my ass to the salon.,0 +- I wouldn't mind a wider ass. Haha. And some bigger tatas too ;],0 +- Aww. I know. It's a learning process and it sucks. *Hug*,0 +geeeeez. i hope you're wrong. bc i was a real fucking asshole. and it's only fun to be an asshole if you can stay anonymous.,0 +don"t lie you expect an immediate answer damn demanding women,0 +don't hate me when @shika comes after him for encouraging me :),0 +oh god no. Divorced her fat ass 4 years ago. But I am dating a girl... and she thinks 2g's are hot,0 +I'm a language nerd. Epic vocabulary ftw. Btw gf's real name is Crystal and she's on Twitter as @KoekjeMom,0 +is ok. Just funning you cause I hate your face. <3,0 +awww... finally stop lookin like some damn hippie?,0 +yay for good feeling back. When the back is sore/stiff your whole life pretty much sucks.,0 +I hate to cook and do simple things that sometimes get boring. If I won the lotto - I would hire a cook.,0 +did you ever bust your ass skate boarding,0 +I really want to hate you right now... :op,0 + Small Business Owners need an Economic Stimulus Package or some other return of OUR tax money instead of Welfare for Fat Cats,0 +Ha I'm ok. Just hate flathunting. Don't we all?!,0 +SWEET BABY JAMES i remember those days---Don't hate the player,0 +I've always have been and always will be uncool I'm still a Mac though one that runs OS X Windows & Linux. So I'm a smart-ass too.,0 +It informs me to stop fucking around and get to work... also gives me sense of community. So I'm half-serious when I say that,0 +I can't work at home either... it sucks!,0 +Your chappy is fucking gorgeous inside and out by the way. And thanks for the nod in the acknowledgments! Fucking beautiful!,0 +Gee I don't what my favorite is - the constant whining projectile vomiting or the volcanic ass eruptions. Super pumped! ;->,0 +good! fuck yo car but yay :),0 +FUCK! hahaha well that sucks xD,0 +is it? damn then id say hrmm...iono gah!,0 +eep. That sucks when good wine goes bad.,0 +Simple. Write that you hate all things on the planet earth and that you have an unhealthy fascination with Gouda. Keep'em guessing,0 +that's because they are bomb-ass-tic !,0 +post on violent youth curriculum http://is.gd/ex9m has me remembering the top bass ass bible verses http://is.gd/5WM4,0 +mourning the death of even our enemies is part of our Passover rituals. Jews do not hate anyone. But we do defend ourselves.,0 +It is; I hate winter.,0 +That SUCKS on so many levels it hurts!,0 +need to have a talk with Vader... talking out his ass about Santa now...,0 +45 pounds of mean ass shoe game tho. lol.,0 +i'on't hate on anything / anyone that doesn't give me a reason.,0 +Hey man thank you for the post man!! I really preciate it! Glad you liked it man!! Yea Pinky ass is retard fat!!! lol Thanks again,0 +no I dont they my peps/frens and they super...fucking comic book fiends reading to much like its they project smh lol,0 +i did that for a reason...they like my students when the bell rings...all programed to get up at the bell. that sucks!!!lol,0 +awe that sucks I backup at least once every 2 weeks,0 +i am almost to that point. which sucks because i had it set up perfectly :(,0 +what sucks extra hard is that it wouldn't even open and extra software was installed that i did not agree to. bif fat FAIL,0 +fat fingered! *coverage* is key.,0 +aww.. im sure you'll kick newton in the ass!! go go go go!!,0 +Hate to run into _him_ at Guantanamo Bay ;-),0 +Hamlet? Damn. Now I can't go and watch it - uv spoilt it for me.,0 +Aw that sucks. Hope you feel better soon. Have a cup of hot tea!,0 +I hate that the x and c keys are right next to each other. It had to be designed to keep us in trouble.,0 +Haha I should. What the fuck? Where at why and how?,0 +Oh lol. Yeah he would. That would be hilarious. Him getting charged for assault but doing none of the ass-whooping.,0 +Jericho's a cheater too?! DAMN. I'd be thrilled that he's single but you know how the saying goes: "Once a cheater..." :(,0 +Christ I now hate year 11. Though I'm sure lunchtimes will be amusing. :),0 +Don't you hate being a responsible adult sometimes? lol,0 +damn man. your find just made me hella depressed. you guys are doing a story on it correct?,0 +That sweater looks like Christmas on LSD. Kudos to your husband for donning that gay apparel.,0 +Is that your real name?? That sounds like a character from a Dick Tracy novel... LOL. Both tho recognized the name and pic,0 +The money is cool... it's OK... I do what I have to do. Hate the commute still but i'm hanging in there.,0 +i'll open up a new phone bill in your name... fuck your credit all up!!! LOL,0 +today what I need is a 40 ft mecha with laser canons and missile arrays following me around London bellowing DON'T BE EMO ta,0 +Oh No! i'm not sick but i hope you feel better. Whatever you got probably got it from that damn Russian!,0 +its called Motivator nice almost feel like it should reach out and bitch slap me if I'm not getting on with things,0 +@mattfink best avoid the pig rolls for a while http://bit.ly/qmqJ,0 +@jasonyates some code in a project is causing a shitload of testing errors all because its fucking up something it never used to,0 +Note who got the last link on One Dimensional Corporate Social Media Sucks. http://tinyurl.com/67rel4 Heh heh heh.,0 +I think there's a point where there's sometimes just too much ass. no?,0 +Same for me... Damn you ADD!,0 +Will do! Thanks. We'll update when pig story is on-line. That one is really hilarious.,0 +Like "Outliers." Many don't like msg--that much of success comes from circumstance. Ppl into "self-made" concept will hate it.,0 +it still sucks no matter how much though eh?,0 +eww. snow. ironic i hate snow when i was born in kodiak alaska.,0 +It's just painful/sad to watch. I want to be all "Aw good for him!" but in reality I'm like "OH FUCKING GOD MAKE IT STOP.",0 +damn sorry to hear that keep off of it for a while,0 +I hate dogs but I do feel bad for ur dog though that sucks,0 +I hate smudges. Used to keep a bottle of white acrylic and a fine brush handy. Mostly for highlights. Wite-Out turns yellow.,0 +beer + excess = man-boobs. Damn those phytos...,0 +it may not b ur students... they might just think ur music sucks!!! j/p,0 +LOLTOMINO at its best/worst! Ep 8 Laura's Cow I fucking lol'd. It's Monster that's giving me the most awesomeness though.,0 +That really really sucks. I can't believe they do that to you. I mean you SHOULD get those games in particular. Crazy.,0 +DRAKE BELL IS NOT A DICK.,0 +And after that you all eat apple pie and drink grape juice. Why? Who the fuck knows. Essay = complete.,0 +I am also a grown ass man,0 +...aka my son." Lol damn u twitter limit,0 +I'll hate it because I've been using 55N-40W-170N-OliveW to get to work every morning. Now it'll be back to using 270N ick.,0 +My poor mom works w/ people like that & she's highly sensitive to perfumes - has had to leave work a few times b/c of it. Sucks!,0 +You're not a scrawny nerd! :),0 +OK I have their bare bones (slowest) "highspeed" internet now & it's apparently all I can get. It sucks - I wanna go fast!,0 +They kicked ass huh?! Such a great show! Can't wait to see your vids & pics!,0 +damn girl. how many vodkas total? :),0 +THIS is why i hate the snow!!!!!!!!!!!!!!,0 +I am in Salem grew up in portland and HATE the seahawks... i cheer for them if it makes others happy and i don't like their opponent:),0 +that's about what I can do as I'm going to the gym and working out drunk really sucks.,0 +i have to work tomorrow too.Lucky you! Everyone here sucks.How do they do this routine for 30 yrs?!,0 +yeh It's happened 2 times this wk.I hate the feeling of first seeing the email tho.Panic. Hate assholes and hope karma works.,0 +The nerd store? For nerds?,0 +;) I'm more of a Doc Ock girl myself. And yeah nerd alert - I'd kill for Dr. Horrible underwear. Boyshort girl underwear.,0 +Really? wow! Avril she sucks. LOL! I bet that was the best NIN concert this year since it being the "last".,0 +MSI kicks ass! Seen them twice. Speaking of bands the Bloodhound Gang will be a few bands b4 NIN on the Australia festival thing,0 +Can I just tell you how many times I was called that as a (fat) kid? You may call me Kenny. Please!,0 +much fun was had. i'm fat and happy and will sleep well with images of movement and dave dancing in my head. lol!,0 +gewoon kutavond en toen kon ik ook nog niet slapen de hele fucking nacht dus ik ben maar gelijk doorgegaan naar werk vanmorgen.,0 +...yeah that sucks...try www.cdw.com... free tech support for 5 years after purchase. for a new drive!,0 +damn then I wish I could make it better for you... if you want someone to talk to then I am here for you... just let me know.,0 +If I told you you would freak. Let's just say. Not long.,0 +I too have taken the megabus and it was cheap and great! (Damn transporation snobs!),0 +well @askfrasco is still trying to figure out how to get my ass to UK in Jan! need a business angle!,0 +Damn Right. I don't even like that question on surveys. It shouldn't fucking matter.,0 +Why/how the fuck am I ranking above Fleshbot? Something's not right - maybe because you left. :) http://is.gd/a3Ah,0 +I just hate it when you pay extra for a *premium* service (eg. speedier) and what you get is <shit service. Shoddy.,0 +Oh yes we have a little snow as well. I love the snow but hate feeling cold.,0 +That sucks man. Especially when you rely on your connection for work. Been there done that got the t-shirt.,0 +Sure have. It sucks and I'm not on chronic meds which thankfully keep it under control.,0 +It's not OCD. I do it constantly to anything I read that has typos in it. And I really hate it when I realize I've done it too!,0 +I knew they were night owls but damn it's late. Glad it's something nice like reading and not craziness.,0 +yah I hate this weather too. gimme warm sunshine plse,0 +same. damn snow,0 +Yea its this curse I have. I hate it because I'm not a huge ditz but I come off as one when stranded on the side of the road!,0 +i have a little more money than that but not really very much. Paying for shit sucks.,0 +Hmm. Fine then. RAIN! I HATE YOU! NEVER RAIN AGAIN!,0 +Totally agree! I'm just a freak that worries if my dog is content. He's all I have to focus on obviously :),0 +No you are not I love my routine and I hate disturbance tis why I am getting a new office wife just started working from home.,0 +I realize that but how do you light something with olive oil and no flame? lol just being a smart ass.,0 +I am getting the royal rigga-ma-rool on it. Called CS sent email we'll see. Buts it's all automated now and CS just sucks!,0 +true. I love looking for deals being frugal negociating etc...but hate doing budgets!,0 +Fat Ladies ... England ... yeah I hear ya ... *giggle* ......... (was that unfair??),0 +All deaf. too fat .... LOL,0 +@jjprojects & any 1 else who cares 2 read (cont. ->) & the rest of them (Garrett??) - there's no more time left 2 fuck around,0 +damn herb you yelp A LOT. i looked up your yelp profile hehe.,0 +parking sucks at that one someone check out if the dt one is even cluck u its prolly faggoteaters now too,0 +Consider the good mojo sent. I hate IEP meetings.,0 +Oh now you gone and done it jules is turning on the damn devil machine I'll have her text ya,0 +"""Aww fuck"" she said...is that mean all's well in some alien Wii speak?",0 +it keeps demanding that your Wii and our Wii aren't friends. So she deleating your ass...and maybe if your nice she will try again,0 +i hate pornotube! youporn and pornhub.,0 +damn male best friends!,0 +oooh you scandalous whore. I just hardcore need someone to make out with. I'd hit up the ex but she's still in love with me.,0 +you all are just amazing thanks for making such a KICK ASS platform! Keep on rockin' the casba!,0 +request the cancellation of our account and was told to call 1-800-Comcast-Sucks while your analyst "has left the room" :( :(,0 +Wondering if the time has come for Wikipedia to be kick out of the top 10. Sucks that Google is being economical w/ natural search,0 +I will stick with the wine yet "try" to adapt to some semblance of moderation - but damn that's a tough goal Ha!,0 +LACEY'Z A BITCH WTF LOL,0 +Aw f**k. That sucks.,0 +@pokecheck Cheers! *raises glass* ...damn I need another.,0 +because they're idiots who don't even know how to do their own jobs. I hate centrelink!!!,0 +omg srsly? *hate* meantime @tetris_jeff suggests she should ask sarah. kill me now. rly,0 +I WAS SLEEPING FUCK OFF,0 +i really hate rss now. sometimes i think the problem could be solved by shifting feed readers but it's more pernicious than that,0 +Make It Rain (remix) - Fat Joe ft. Lil' Wayne R. Kelly Baby T.I. (some rapper I never heard of) and Rick Ross #rainsongs,0 +I hate to ask I should go read more. Coaching for you or do you do coaching?,0 + as you should she did a good job. I once wrote a paper in college "Breeding Hate" I see that theory backed up more & more.,0 +it was until now. everyone came back from holidays. i've only got one #gcpets client now. damn.,0 +@anthonyvoedin @bratzgames --- Reported Web Forgery! FUCK OFF! Stop DM-ing me. <3 Firefox 3 protection !!! :-),0 +damn I didn't even know they had that. But you can go to borders or that newsstand spot in the mall to get that esquire,0 +That's why I'm glad I didn't have to be on campus today. I hate the nice sheen of ice that seems to have covered everything.,0 +Damn I need more DRM free music so I can stream. At least I got pandora radio.,0 +see he's a bad ass & I always go for the bad ass guy,0 +my anniversary's tomorrow. I've BEEN that same crazy bitch for 5 yrs tomorrow lol.,0 +rat bastages. Then they use the inflated rents to claim "we're charging fair market value!" Fair my generously portioned ASS.,0 +dammit!! I hate twitter. Its messing up my piano flow!,0 +know the feeling it sucks... hang in there.,0 +just this guy in my year who decided he hates me because i'm a "tryhard poser" when hes never had a proper conversation with me,0 +*sigh - I miss Fat Witch Bakery. Or at least I miss NYC.,0 +you coming to fat cat?if anyone needs a martini it's you!,0 +That sucks.,0 +oh I'm sayin I haven't found it when I've searched :( it's so damn funny,0 +people who u like people who yu hate people who are loved and watched from different types of countries relationships!,0 +Yeah but that four bucks is delicious. McD's coffee drink SUCKS!,0 + Hate it when that happens. "lost someone" My followers keeps going 202 201...24 hours now. lol,0 +have you had New Belgium's (Fat Tire maker) Frambozen? It's way good.,0 + Crap I'd better get my ass in gear.... you're catching up to me!,0 +I agree. I hate the trend I see in which I get a generic DM after I follow someone. It's like an anti-welcome.,0 +Aww Andrew Ass Machine Teapot is just adorable for a Brit. You look fab BTW. B sure 2 follow @mariathemuse from AoA group!,0 +I dont know man. Theres a ton of them now and its so stupid. But cant hate b/c the top one is making crazy money.,0 +OMG! haha I would not survive I hate the cold.,0 +oh yes the cold is mind boggling and a big fat drag. I likely won't feel anything above 30 for many moons. can't wait to move.,0 +Awwww that sucks! Well hope twitter helps! Have you been on any forums today?,0 +damn your yankees! http://tinyurl.com/8vgfyp,0 +damn your yankees!,0 +- oh yeah! Actually these were done with no calories carbs or fat! Amazing eh? :-) -http://twitpic.com/v440,0 +Damn John that rocks! You must love it. We do pies for Thanksgiving and cookies at Christmas. Good stuff!,0 +dude that is one SLICK blazer you were sporting last night. Damn :-) - http://is.gd/bCRM,0 +i wish i worked at AIG. i'd be getting a swedish massage luxury corp off-site and a big fat christmas bonus check right now.,0 +are you trying to say bacon sucks?,0 +#NAME?,0 +(run by NASA) is kicking some Shorty Award ass http://bit.ly/LvZW,0 +if you add in the massive amount of sustanol and deca hugh jackman did the arm would grow back stronger..fuck it he'd grow 2,0 +dude! it's just a gay name totally straight show.,0 +How the hell is Dallas fucking cold? Has anyone ever seen snow down there?,0 +Yeah this global warming sucks.,0 +Ugh I really really really hate NBC sometimes.,0 +*smack* that's what you get for inferring things... damn republicans... *ducks* :-),0 +I think a lot of people didn't come in today so that helped. Damn the ice on the windows is fun... hopefully all is good later,0 +Ack still no power... that sucks dude. Hopefully it comes back soon for you!,0 +Yeah most fun Miami season in a long long time. Hate to see it end this early.,0 +No way he's like a damn ghost. I think he only exists AT Lotusphere...,0 +That sucks. Hope that gets resolved quickly for you.,0 +Damn..you have an excuse then.... I'm just wating on an instance to start......,0 +Dick Clark once asked my mother out on a date when she was 17. He was a movie theater usher. She said "No!",0 +Nah it was the review of that Clipse mixtape that just dropped. Tom Breihan is a dick.,0 +I hate that! Hopefully people see through that kind of nastiness.,0 +must have gotten sometime off with all that Twittering going on. It's about damn time.,0 +getting up at 5am to BBQ a full pig all day for annual New Year party at friends. Nothing like fresh pig right off the grill. oh ya,0 + I hope you hit My Big Fat Greek Restaurant for lunch!,0 +thank god i live alone and that it hasn't happened. ever had lemonade through the nose? fucking HURTS,0 +always thinking about your ass arentcha? :),0 +although it means early holiday and time to prepare for next year - it sucks either way though,0 +from Ginger Pig - awesome bangers and double lamb chops! woooooooooooot1!!!!,0 +and a copy of the sun on the dashboard! woot! fucking cyclists,0 +I hate it when bosses act like idiots. It's the number one reason why I'm glad I work for myself now.,0 +- I'm gonna laugh during ROBOCOP - every time that guy says "Dick Jones I work for DICK JONES !!" (aka D.W.),0 +As long as you are coffee friendly. I hate meeting non-coffee drinkers at coffee places... makes me feel like an addict.,0 +Dick. (Get it?),0 +ouch. i hate sore throats.,0 +damn hope you can work it out.,0 +damn cool...sure is possible..just click a photo and put that on gurrage.com- no registration or fees or anything necessary,0 +Scoot? I had my white board eraser stolen... it sucks.,0 +why the fuck this red light keep blinkin,0 +lays the smack down. Must-read article to get your ass in gear: http://tr.im/1xh8,0 +Good point. He followed the same path as oh every damn reporter who joins. Well except the "find the wild sex spots" part.,0 +I hate that. It's like they watch 2 min & start asking questions that you either answer in the vid or sidebar. Listen & READ people!,0 +Post-traumatic stress does horrible things to a mind. Especially when it's an inbred retard's mind.,0 +Oh Damn! Pop it in the microwave just as good. LOL,0 +<~Nerd Lol.. Thanks for making me smile with the reply though...,0 +damn it...I just lost my pro status in wii bowling - ever tried any of the wii ware games?,0 +Those things Freak. Me. Out.,0 +I'm going to Pownce until the fat lady sings they'll shut me off soon enough I've no need to pre-empt them.,0 +I CANT FUCKING WAIT FOR BOTH OF THOSEEEEEE<3333.,0 +Aww that sucks. My bf is so busy today too..I know how you feel :-(,0 +you're spelling nerd wrong!,0 +I hate snow,0 +good luck and kick ass!,0 +appreciated. what sucks is how they handle it. its like the nurse slowly removing the tape instead if giving it the quick rip.,0 +...DAMN STRAIGHT...you deserve the world or a least a peaceful ocean to sail your boat on!!! :),0 +dude come on. Considering the day they had today they played well. I HATE LA!,0 +haha i know i caught that as it was being sent! I hate it when people do that 2!,0 +FUCK I LOVE THAT SONG!,0 +oh damn...,0 +my 15 yr old likes to sit next to me on the couch n play fat bottom girls on the ukulele.. definitely FTW!,0 +I'd hate to see you become a Twitter Widow.,0 +Freak!,0 +it's not dumb if it werent for videorecording there would be no "FUCKING BIRTHDAY" videoclip from @bgdrummerboy34 's party,0 +Damn you really do read her blog....,0 +He's totally neutralizing all my Twilight horniness. Dumb-ass.,0 +-- but hopefully not the ass right? :),0 +- and occasionally "grape fruits" or my personal fave: "stupid ass huge",0 +Dave is a word nerd. ;),0 +lol! gay people make the world a happier place :D,0 +http://twitpic.com/uzdf - fuck! this is amaing! id tap that ;) maybe my bass and your bass can get together and like to ...,0 +no she'll be back. i say fuck it all.,0 +Yup. Three years is a long ass time. I'm just going through documents and stuff debating what to keep.,0 +I'm sorry. The situation sucks (I'm sure far more than I know).,0 +I'm so happy. I can't believe Lacey what a bitch. I'm so happy for Brandi M. Oh and the look on Megan's face - priceless.,0 +you really hate katy perry don't you?,0 +Pieces is such an old-fashioned name for a gay bar- like Glances or Mystique or Trade or Hombre or the No Name.,0 +Congratulations haris i didnt know that whose the lucky GAY ? I mean GUY! lol :P mwahaha,0 +Did Gregpa co-sign? You should totally get it! if not don't freak there's other lenders,0 +dude this limit thing is so gay omg. okay stupid question: ngl? haha. oh man. im so bad at internet slang jesus. lol,0 +Yes they are moving the ProBowl. Totally sucks. This will be my last year I am attending.,0 +Convinced a football player to change his view from "Frisbee's a pussy sport" to "I want to join this team!" with sombreros,0 +damn that's a nice spread of food! Looks delicious!,0 +LOL. I've got a few white hairs myself...damn this aging thing...,0 +damn I forgot to fully charge my iPhone so I can't even puzzle quest :(. Crappy blackout! Hope everyone is safe!,0 +I'm still waiting as well - hate i missed it in the theatre,0 +rly? i hate it its a better value to just make ur own contact form,0 +its funny but fucking true I sent 1 message saying 15 minutes and then 1 message saying that I was giving away a hammerburst,0 +that sucks koi,0 +damn...lemme get one of them lol! im waay far from @cathyrnmarie or you yet!! hahaaaahaaha,0 +A romantic comedy I hate to admit it my favorite kind of movie. A study said they give unrealistic expectations on relationships.,0 +$1 per account = pulled from ass just like his whole ehealthtrust model,0 +and we'll drink them with our pinkies up...because we're cl-ass-y like that.,0 +it is nice to have a social networking site dedicated just to footie. Have to weed the wannabe wags out I think. Bummer.,0 +Only too fucking true.,0 +No Paul cola is the fucking nuts. I would be a dead girl on foot without it. Exhausted. Up late watching Wall-E.,0 +lolll you probably would hate it too 'cause it's all creamy like with a creamy sauce! i usually love these kinda soups too. GRR!,0 +O__O holy craaaap dude that sucks!!! are you gonna try to get another flight??,0 +I hate chocolate covered cherries I'm sure thats at 5 or 10lbs.. lol,0 +ate not hate.. lol,0 +Who did you get the appt. with? I hate BACH the head nurse is a dumb bitch.,0 +Doing laundry sucks.. I'm just glad I have a washer and dryer otherwise I'd die..,0 +I hate ants.. I hope you get them...,0 +I was like "why the fuck is Andy up I thought everyone but Pete actually slept?" then I remembered the time difference.,0 +A big fat chocolate one. Interpret that however you like.,0 +true :) just informed no food til we find out if I'm going into labor soon. Laughed my ass off thinking on how unprepared we are.,0 +I hate to break it to you but a suit doesn't protect you from hot tub germs. ;),0 +Glad you made it home safely. I love it when you visit hate it when you leave!,0 +Thanks for the Favrd. All followers Fave and @shortyawards my tweets. Damn that was hard to say. Still here.,0 +bingo. I agree. Both are true. The yes on 8 pastor who showed up today seems positive "paradox" is impossible. gay mrge challenge,0 +*sniff sniff* "Ooooh is that...OW!...what the...I just got a cavity! Damn Cinnabuns!",0 +big fat fluffy flakes... so magical and beautiful and best of all it only lasted a few minutes.,0 +the walk in clinic. sick as a dog. Grr! I'm really starting to hate doctor's offices and hospitals.,0 +no...just something i was fucking around with on photoshop :),0 +i hate school. @SonoranDragon will do.,0 +me too i hate school it's supose to snow",0 +what does fat got to do with it?,0 +or posse as @derickrethans liked to point out ... damn spelling bee kid,0 +omg seriousss?? u know i have a hard time believing he's gay...maybe because i want to marry him? idk dude,0 +oh and btw your "LETS GO TO FUCKING SWINGERS" in the PPO forums also made me die laughing. idk why. but we're gonna go. dammit.,0 +Haha still working at 6:30pm on a friday? Damn!,0 +that sucks - I have had "those" holidays as well. FYI a cool mass starts soon at Holy Rosary @ 31st & N for some uplifting!,0 +gay. Too hungry.,0 +you should totally convince gerry to get that drumset. And that your parents won't hate us.,0 +Srsly? I was wondering what the fuck happened.,0 +i hate bees,0 +yeh it's smart I just hate not going in and I have lots to do. But this is the right thing to do. Blah!,0 +gelizzy is a cool ass name,0 +wow that sucks big time ... Not fun at all. Thank god it's not all the time,0 +my best use for twitter: twittering that twitter sucks. Since day one... :-),0 +my sides hurt from laughing so hard. Dick.,0 +Gone & paint that bitch's ceiling & then try 2 figure out how 2 tie these damn records 2getha.,0 +damn right. this is going to be so badass. you should cross-train in muay thai.,0 +yeah @sokeri harassed me into following. so i had to. the Internet promises deadly convergence of all nerd-lives. beware.,0 +holy mother of fuck. that video was epic...give me some time to try and gather words to express my confusion/enjoyment combo....,0 +you are the computer nerd :),0 +that sucks... hope your okay :/,0 +yeah its playing there in 3D! omgosh and the awesome cars thing!! psh im safe damn.,0 +are you okay??? that really sucks :(,0 +I think bromance can be between gay boys... it just isn't likely to lead to bro-rape. Just naked bro wrestling.,0 +yeah "gay recovery" is a crock of shit. That's why all these ex-gays keep getting caught cruising in public parks and restrooms.,0 +- yes. but i am getting tired of their 'hate the customer' funnies. Would be funnier if the service was better,0 +hahahaha word I was just myspacin and saw like 30 star tattoos back to back...damn that browse function,0 +hey Mo u used to be Mean Ass Mo. And the truth is the truth,0 +damn the end of an era huh? my favorite studio is moving. Gotta have one more classic session before the move,0 +u know I dont hate u personally Jae...LOL but u know macs always win in the commercials...,0 +oh dear. why the hellish week? im sure next week will be bettter! otherwise we'll just kick its ass!,0 +nooo it wasn't hate I just never used one. but check this http://tinyurl.com/3z2pkr I miss shows like this.,0 +XD oh it'll happen. It WILL happen. It just will take some time... To get his ass tied down anyways.,0 +Why don't you stop talking about me and have a nice cup of shut the fuck up,0 +Its easy if you just draw erotic lolis I suppose lol (or just draw Kyo's ass from Clannad),0 +Never forget the fat toad. To be honest Yanks looking pretty fn scary while Sox being sorta methodical... unnerving.,0 +DAMN! thats alot of lights!,0 +DAMN!!! Its 11 degrees in the UK and i feel cold! Feel for you my dude,0 +sucks eh.,0 +That guy is gay with style. People like that sort of thing. The other two were gay with BBF. Best Boyfriends Forever. That's NG.,0 +Sorry almost everything about digital distributed movies sucks right now and it's not looking to change soon. DVD + BD for me.,0 +damn. I'm good to go for at least a week now,0 +"""Here’s a reasonable review: The music sucks. The graphics are terrible. There’s no plot. There’s no gameplay."" Video games!",0 +Don't like hills either. Decided it'd be better to find a way to like 'em tho rather than obsess abt how much I hate them,0 +He's a poser! Run! :),0 +im glad you can drive. Cuz damn.,0 +I'll butt fuck Spencer with my antler,0 +shit! That sucks!,0 +hahaha okay. yeah twitter hates my ass. not getting ANYONES updates. Fuckers. LOVE YOU BIRTHDAY GIRL!,0 +Oh cheese and magnets... double damn! Take care of you!!! xxx ooo,0 +you are not fat! But cardio is always good,0 +Brutal...I hate when you pick the wrong day to drive....,0 +I think of it often with me doing my little show and seeing snow :) It was a cool ass episode.,0 +fucking iPhone auto correct.,0 +Hell yes. Waiting in the rain for a bus sucks already. But waiting in the rain for a 4.16 bus that strolls up at 4.30 is worse.,0 +15 bucks tho son? Damn.,0 +He couldn't give his boy a pair of shades or something? Damn.,0 +You name it it's contributing! Guess I just gotta get off the sauce but it's the holiday & all these damn parties get n the way,0 +Hate you! Hate Kansas! Taking the dog. -Dorthy,0 +BofA sucks! I closed my acct with them on Friday after 4 grueling years of horrible cust service.,0 +WHAT?!? Freak.,0 +I try not to go there much because I pig out lol,0 +Ur damn skippy love that noise. Any other recommendations?,0 +Agreed. I shall practice safe tweeting. Damn that sounds dirty lmao.,0 +Lol Nah it sucks empty inside and boring. :O Like you *sticks tongue out* j/k,0 +think of it more as the open ended gift that lets them have something that makes em happy vs a piece of crap they hate. ;-),0 +Bad ass!,0 +shew man! i hate late meetings,0 +i hate kings of leon,0 +pain in the ass right? Ugh. Oh well it's worth it!,0 +oh i see well frank kicks ass so any friend of his is a friend of mine!,0 +That's a damn lie.,0 +Ha. No whale tail. Newer turbo.,0 +Sucks. No cognac in the house.,0 +NNW keeps it organized for sure but when you have 3 000 articles to skim through it is just too much. Trimmingi the fat. I like that!,0 +safe travels and kick some ass in California.,0 +Me: 1 attitude sucks 2) like big plates 2nd helpings 3 like beer 4volumize with fries 5) like junk 6 eat big meals at night,0 +Yup! Wouldn't want me doing your wedding pics...the view from the bar usually sucks :&,0 +yeah i'm on it Mr. don't return calls for a christmas gift...and times are hard bitch..t-mobile can wait!,0 +april to may is humpback whale season in new england. We bringing hump back? No? I tried...,0 +I am so dragging your fine ass into tacky Times Square shops in search of that biker tee..,0 +Yeah snow! Hate it when it's too cold in am/pm to ride but it's warm and clear during the day. Feels like a wasted riding day.,0 +That sucks!...At least it wasn't like that movie must love dogs where these 2 people wanted to have sex but no place had condoms!,0 +damn I want some of em vmodas! :),0 +I'm telling you...lay off the damn 2gb thumb drives! Go back to food...I know you have like a supple of drives but damn it! lol,0 +is Rosario still dating Dame Dash? saw her n Olivers Stones Alexander..she stuck out like a stripper at a male gay bar..literally,0 +damn right I am.,0 +Off your face. Stonkered. Got the wobbly boot on. Got a gutful of piss. Drunk.,0 +Praise the lord. That show is trash. Don't think you even have to be a nerd to realize that the show is so out of touch with tech,0 +haha. Don't ever let it get that bushy. I hate when guys have extremely long facial hair. TRIM PLEZ KTHNX.,0 +aww sucks :( heavy fog is cool sometimes thou.,0 +well you better get sumthing to wake ur ass up...,0 +everything you like I hate everything I like u hate....hmmmm lol,0 +I hate that place too cept the shark tank,0 +i hate ppl who talk during movies my ex used to bug the shit outta me but i kept it to myself most of the time lol,0 +that bitch....HAHA,0 +ill let u know wut i think when i read it. btw dont hate your boobs lol n any ideas for your next tattoo?,0 +he put them damn cameras up on barlett thats why he get to keep his job!! not traffic ones either!,0 +i see you damn near passed out after that work out lol!!,0 +It makes sense in my head my body is shivering and screaming "I'm cold! Put some more damn layers on".,0 +point em out fuck dat,0 +where the fuck is our Bendele the whore?? Where?,0 +aw that sucks. it will get better the day's not over yet :D,0 +I hate my iPhone for typing twitted instead of twitter :),0 +Dude I was DYING. The way he ducked was freaking hysterical. Even though it wasn't cool at all it was damn funny.,0 +thats tolerance for you we dnt like what you think so we will rob you of your job. Sad and they say WE preach hate.,0 +I was out today the two homeless girls were not on their corner. I wonder if they called in gay today?!,0 +Cody and i hate you. Lol,0 +I saw that video when it was being edited... i think it's a bad idea to put sugar directly in your ass.,0 +you should also be careful what you put in your ass too! just ask @tristancrane about that 1 guy 1 cup video.,0 +Grrr! Damn you Pat! XD,0 +Well that sucks bro. And yes I have. Alcohol has played a wonderful part.,0 +rachel was having problems with her signal here at work...maybe verizon is fucking up?,0 +everything is breaking because of how cold it is!!! our internet was slow as fuck this morning!!!,0 +@black_milk Bro... French toast crunch is raw but nothings i repeat nothing is fucking with Golden Grahams. I like them by the Kilo.,0 +lol no doubt. i was going to have to take that ass to ohhla after the next one.,0 +damn near epic. thoroughly trashed and my cuz's friends are chill. depeche mode with a beat left my ass on the dance floor,0 +yeah 800-soapie-kha. ( kick his ass),0 +Can I just go one day without seeing flaccid black cock please?,0 +What's the big deal? I do that all the time. Of course I work at Zappos too. And I'm not sure if I'm a "grown ass man". Hmm...,0 +"""not to be a dick"" ... famous last words",0 +kiss my Midwestern ass!! Go back to the great lake region,0 +i looked for you guys when i was leaving but didn't see your tall ass anywhere. where'd you go?,0 +LOL Iowa sucks that is true,0 +yeah.. it's a fucking mess. i need to clean that shit up.,0 +nothings better than seeing my sexy ass husband on stage and with that white pice of trasler trash YUCK,0 +How Mr. Smith get the internet on that huge ass home theater? I bet he is cool to hang with!,0 +I hate you and you shall be shunned from this day like the Amish shun an outcast. If that doesn't work I will un-follow you.,0 +Youtube account? Oh Noze. I'd try the damn forgot password but it does not always work :(,0 +I know. It sucks. I've had to get a lot of people out of my life. It's sad.,0 +Tell him I'm going to come kick his ass! =),0 +I hate you. :),0 +no it's on a 30ft ladder. I don't get on it after like 10ft I can't gp higher. I hate heights,0 +aww that sucks.,0 +foreign pol gay marriage environment abortion womens rights if theyre raped...plus her views on community organizers #fs,0 +J.Mayer sucks the big one.,0 +can i have a monkey fuck?,0 +people hate on Cody for no fucking reason it seems. I don't know why.,0 +that sux... they be givin out fat vouchers tho when that happens,0 +Secret Invasion #8 is a C- effort at best. It leaves me unconvinced that Marvel gives a damn about anything they do.,0 +Heh...damn you're right. Shows you what a Bible scholar I am.,0 +-- "Never start a fight; always finish one." Wait. "We live for the One we die for the One." Damn...hang on...,0 +@AeonGotBeats One of the last times there was balance in hip-hop. Damn near everybody was on. All regions.,0 +Ol' writin' ass...,0 +:( NOOO dont takj about ti im procrastinating enough with twitter. DAMN INTERNET.,0 +get it for PC only 360 one sucks balls. Totally worth getting a new desktop for.,0 +I don't think so. were almost in Ken-fuck-me...I mean kentucky haha. so. actually just got in there now! haha kenfuckmeee! wo ...,0 +love the song hate the remix! D=<,0 +nooooooooooooooo damn damn noooooo its not like that! eeeeee why meee,0 +no cicar for 7th man! In this race 7th is pretty damn s-l-o-w (I struggled with Edmund Gwenn cuz I'd never heard of him!),0 +- I never thought about Writer's Revenge. While they're at it they can have Burke "phone in" to declare he's gay.,0 +Damn Jilly...Sounds like you're ready for war out on the grimy streets of Trenton...,0 +Fry's *is* one of the levels of 'nerd heaven' :),0 +yes damn predictive text,0 +ooh mate - that's very generalistic like saying all journo's piss you off. what is the cause? how can SocMed people help,0 +Thanks for getting me up off my ass to rock out.,0 +Damn that's some margin on a pig!,0 +i already follow you loser...LMAO...seriously i already follow you,0 +That sucks. It's 60°F in Boston today. Gorgeous.,0 +damn egobait.com is already taken to.,0 +Cock waffle...lmao maybe your list should be a small dictionary of terms to use in 2009.,0 +WHY CAN'T YOU JUST LET ME LOVE HIM IN PEACE?! HE IS NOT SPANKING YOUR SKANKY ASS EVER AGAIN THAT'S FOR DAMN SURE,0 +YOU'RE BEAUTIFUL AND I LOVE YOU YOU GODDAMN WHORE <333,0 +l: Are you going to bed now enough cock for one night?,0 +But half the charm is in the eyes! I don't think I could fuck a man with only one especially on his forehead.,0 +BRB SLITTING MY WRISTS JESUS FUCKING CHRIST.,0 +oh damn that's a good look she betta thank OJ for that one his jail time pardoned alotta black ppl facing time,0 +so cute that you're undoubtedly the gay lord of homopedia.,0 +yeah i forgot to thank you for eating the whole damn thing. yeah THANKS.,0 +that sucks I wonder why it was so messed up for you,0 +That's what I mean. I too am a NIGHT person hate doing mornings. Early morning meetings must be 11AM or later LOL.,0 +Investing is hard losing money is too damn easy. I should write a book.,0 +Hard floors are better bc of spills and smells but fuck the cleaning! Theres gotta be an easier way!,0 +damn! lol,0 +damn you right on time with that Get Throwed joint!! I swear me and the homie was just sitting here trying to think of the name,0 +With apologies to @chockenberry when I hear the name Dick Lugar I always think back to childhood and "hocking loogies".,0 +That sucks!,0 +such a pretty pussy have :),0 +just say "were you the one that grabbed my ass at the sing along?",0 +he must have found out that you are an internet celeb.. dad's hate that sort of thing. become a musician :),0 +yeah.. look at all the carbs in it. slim fast a banana and peanut butter is a sure way to gain mass(not extra fat from cals),0 +i really hope they don't fuck that movie up. i'm so nervous/excited to see it!,0 +like omg you are a groupie whore and he is too!,0 +I loved that episode. That chick was so damn cool.,0 +You'll become a super nerd if you dress up as a Gundam,0 +Why the fuck? What's the point?,0 +I wouldn't touch the mall with a 10 foot poll right now. The traffic was backed up the street when I drove by. Crazy ass people!,0 +Sorry I just hate anything that has a penga right now.,0 +funny ass movie,0 +Dude how do they manage to fuck up DNS? DNS just like IS...,0 +...the cold shoulder thing. So I'm not even sure if we're friends anymore. But don't freak cos I wos expecting it. XD,0 +just avoided a stupid ass fight. Some chick was tryin to provoke my cuz. But everything is good.,0 +haha nerd :P,0 +@angelzilla Honestly it's not enough to make me stop listening at this point. It would take a lot more to piss me off that much.,0 +you know..."queen" is poet for "bitch",0 +Back at ya bro! Thee Oh Sees are playing Thursday and I actually have some money now lets fucking rage!,0 +damn man. I would have left,0 +Hahaa.. Very true.. It might just be some condensation. Let me get some windex. :) Like my Fat Greek Wedding!,0 +dontcha hate that! the SLeducators list gets humorous retribution to folks who send OoO replies. I'm not gonna be the next target :),0 +Im watching it now...Ice is like an old uncle who can still rap and tear that ass up lyrically,0 +Yo it's a wack ass night here at boston college...people got finals and shit...im gonna have to make that special call..haha,0 +Hate is the New Love,0 +Oh yes I did... I can't stand to see OSU blow it ever year. I hate the BCS and it just goes to show what happens.,0 +i hate it when itunes effs up my music library ... it's happened more than once.,0 +But Clerks 2 said it was ok to go ass to mouth. Why would Kevin Smith Lie to me?,0 + Fuck! No way is that going to be worth it. Resist unless someone buys you the ticket!,0 +and @revengenow MOS will be ending in a chapter or two. you're gonna hate for the ending xD,0 +I hate GNS3 and I hate even more that people talk about it without having any idea what Dynamips is...,0 +Who just finished? Oh...oh...let me guess. Um....Britney? No that's no it! Paris? No? Damn! I'm never good at these games;-),0 +damn there is someones nana up here at beach with one. dont think ic an steal and get to you quickly tho ;(,0 +no kidding! dick clark was a corpse mechanically operated by the advertising companies,0 +i read an article on jobros and thought damn we should cash in on our jobro pokemon. Perfect stocking stuffers haha,0 +I got one fucking day of sprinkles and now it's back to sunshine and douchebaggery.",0 +I was already listening to Elliott smith and I fucking hate kanye west. He's not a valid artist or human in my eyes,0 +I told Derek to go fuck himself Devyn told us to calm down,0 +I'm watching the new Smosh video and laughing my ass off.,0 +My mom didn't like Catholicism because the idea of being a sinner from birth irked her and she loves gay people so yeah.,0 +ya i know! lol AND big thunder mountain broke down! i only got 2 ride it once! i got a ton of bad luck. i think u stole it! bitch!,0 +lucky bitch.....",0 +hate the auto DMs there's no better way to show that you don't actually care about your followers than to put it on autopilot,0 +Top Notch click! DONT HATE hater! u mad cuz u broke using a playstation as a cd player.,0 +question where the fuck is my father!? he has been MIA for like two days!,0 +Fair enough will get my ass around to doing it sometime later. Your voice has changed btw :P,0 +yeah that seems like he got some bitch in him somewhere or he could be brainwashed. I got a forum right now thats going in on BEY,0 +See it too A friend of mine uses acai berry but for medical purposes. {shrugs} Damn @ her being hella skinny. I may try... Maybe,0 +How can you hate Hugh Laurie!?,0 +... First thing I would do is go to the bathroom because I most likely piss myself.,0 +Um... I hate birds. Bleech!,0 +Yes. Take the damn pickles. I'm glad we've been talking virtually every possible moment. I have a feeling it will ciontinue.,0 +mmm nice. problem is - i hate reading blogs in hebrew. i can read them but it takes me longer and i have ADD,0 +awww. cum playz. we makin finger paintz on da wallz kinda.,0 +I seriously hate insects/bugs of all kinds :( even ants... wish there was some... anti-bug thing I could stick at my door and -,0 +but yeah it sucks Bl there's 25 maps and wanting to get on a specific one takes forever if you're unlucky. orz.,0 +Haha that's a long-ass tail!,0 +When was the first ICS? Was Emo Jesus created yet? was prior to March 22 2007 (1st live tattoo show),0 + you whore!,0 +awe man that sucks... I mean that's awesome!!,0 +only if you promise to not make me look emo or like a raccoon ;},0 +i'll give you a suprise if you catch up to me by christmas. Lol! Your followers would hate you :P,0 +Yeah...you'd have to post exactly.........a LOT of fucking tweets a day Hahaha <3,0 +I feel you but I also feel where they are coming from too esp if the money is good. Damn do I sound like a sell out? lol,0 +Lol I say gay all the time in the gay way and I'm pretty gay.. gay gay gay gay.. I hope more people get offended,0 +LOL damn.. for some underwear.. thats dedication,0 +I hate that!! If you're on a roll w/ writing I'd stay home =) Unless its something crazyyy going on,0 +dammnn! Long ass day lol,0 +damn theres really no females like that lol. have fun for me thoughh,0 + i was bored by her. i was sitting there like a nerd like "oh thats interesting",0 +I don't hate you promise,0 +girl these kids are lazy these days you gotta stay on them. my oldest is a neat freak but those other two..... DAMN!,0 +GIRL YOU MADE ME SPIT!!! ROFLMAO!!!! YOU ARE TOO DAMN MUCH!!!!!!!!!,0 +Hahaha I'm sure Bronx can beat some ass. I saw his bass on the internet. It's not as bad as some other names I've heard,0 +Awwww! That sucks when that happens be strong love,0 +ooo ok. Thanks this is a good time for me to be ill. Sucks i cant call out...too much work,0 +"""Is it duncan if it's I'm gonna be so....hug him...because I love him"" Backing out of the hate quotes? =P",0 +Thank you. I'm sorry did you e-mail me already? I seem to have misplaced it if you did. I am a loser.,0 +I fucking forgot it. So mad. Just have my phone.,0 +somewhere quiet....goin to the mountains..and i hate to say this but that Nuvo shyt is nasty,0 +funny how folks get mad @ southern kids makin up dance songs..then a grown ass man does it and its all good cos he prod ether,0 +You're lucky you're not currently in Bethlehem. Try having to constantly hear it. I hate it more! And the tourists suck worse.,0 +ive also made yarn and synth hair braid ones. Can wear as pig tails or one big pony tail,0 +:-( That sucks... I've got pretty muscular calves from dancing but usually do okay with the lace ups.,0 +its gay. Went to sleep at 3. Come and ill make Haha,0 +@sspitsbergen here's hoping the fuck has to duck shoes for the rest of his natural born life.,0 +@blackslashwhite LOL fuck you guys wish I was hanging out somewhere cool http://tinyurl.com/a4nst2,0 +good have some for me... im maintaining sobriety for the night... sucks.. as a matter of fact have three.,0 +fight camilla then bitch!,0 +she sucks. :),0 +OMG I hate when that happens :(,0 +Damn son you drive a tank? It costs me less than $25.,0 +Now you can talk about how your wife bugs you to stop playing games all the damn time when you write your reviews! Congrats!,0 +I should know better by now but I'm really thinking about picking up that new Lumines... Damn you Mizuguchi.,0 +- can be quite a rough routine but I'm gonna rock out with my cock out! Doctors orders ♠,0 +- u can't help but fucking love women like that! Damn ♠,0 +- Damn right! So wats the 501 on twinkle town? ♠,0 +furthermore they do have gtalk integration what twitter couldn't handle and some kick ass rooms.. very interesting..,0 +actually Andre is more squirrely than the Kia. I hate it a lot.,0 +omg dude i'm sorry! that really sucks! wear pants or opaque tights! 1 time i ran into a fire hydrant (yeah...) & was bruised 4eva,0 +damn... please teach me to be as awesome as you...,0 +i would hate to be the twat thats being twitted. *ehem*ehem* but then again its better than being the cunt thats called,0 +In CA right now and it's wonderfully warm. My father tells me it's cold and miserable in Ohio right now though. Sucks to be him.,0 +It's fucking brilliant is what I think.,0 +I hate that I always do that I don't interact with anyone at family things like that.,0 +um how does a big fat no sound,0 +that is NOT fucking cool how dare she say that.i hate racist pigs! you guys are great ppl and im sorry ppl take advantage of that!,0 +http://twitpic.com/yn2s - you are SUCH a nerd baby...suriously....,0 + feeling rusty myself just got my ass well and truly kicked!!,0 +needs her ass kicked - this is 4 car events in 18 months and keep getting worse,0 +damn dude!,0 +FUCK ME !,0 +Damn hope you getz better soon !!!,0 +Ah shut down is a common fuck up on OS X86 make sure you do a -v -f at darwin !,0 +Meh my internet connection always sucks.,0 +Thats good. I hate it whe people ruin things for other people,0 +God damn the Mets hahah :(,0 +Ah. Hate it when a good fantasy team winds down at the end of the season but it happens quite a bit. No. 1 seed curse. #ffb,0 +how gay would that be!,0 +LOL damn. great article though. too bad it seems to be airplaning for someone :-),0 +It was a great fucking song thougu,0 +That sucks. I wish you strength.,0 +The new B. Folds single sucks. It's a Regina Spektor song featuring Folds. It's so much her style not his.,0 +I still think I could design a better twitter client. If only I could program it. Damn you Objective-C.,0 +You must not mind finger prints all over everything. I hate smudges on my CDs.,0 +can u please make sure you fed the damn thing too... hehehe,0 +:) I need a volunteer/guinea pig. Send one my way?,0 +He's been my guinea pig for years. Hopefully my prof credentials don't rest on that ;),0 +As much as I hate to resort to the old sub-standard of inquiry.... orly?,0 +FUCK YEAH! You know what goes good with cookies right?,0 +Oh Jen I'm so sorry. That really really sucks. Try some disposable cameras for Disney.,0 +ass I wanted that burger but my better judgement took control of the situation,0 +pig pen is hotter :P,0 +you're killin' me. so we can conquer the space-time continuum on mac and pc but we can't copy a fucking nested folder?,0 +damn datz alot of tats but l00kin good beezy which one hurted da most?,0 +LMAO life in the fast tweet lane. i never fail whale yet.but than again only 709 tweets.does that matter?,0 +I hate it when I have no day job and can't just sit around reading or writing. *sigh* :D,0 +head ass I'm in chicago actually with VMarie lol,0 +good luck with the event. Clearly you've been busting your ass for it. Hope it goes well!,0 +Dude that sucks. I dedicate this hot chocolate to you bro! Hmm... yummy!,0 +It's latent hate over the fact that my bucs suck.,0 +damn even I don't often do that much of a vat tour,0 +At least they only want a 3-5 minute promo. I hate when they want a 15 min promo- all aspects get covered but it's too boring,0 +Can you believe we had another suburb wide Blackout - damn Christmas Lights! Johnny Walker Blue Label by Candle light,0 +Noah and the Whale!? That makes me think of Saturn commercials. :),0 +i hate you right now you woke me u last night and then i had a crappy sleep i feel like shit now.,0 +lol!! And for the record that shit didn't do a damn thing to help. Whatever. ;),0 +just waiting.....aaahhhh.....too damn long,0 +I can understand if he want's to stop touring maybe he wants to have a family or something but no touring sucks :(,0 +i hate u but not really,0 +It even stopped between floors and alarm was going off. Some dude finally helped me. It was damn funny.,0 +afraid not! But high fat patries just what's needed when feeling fragile I'm pathetic Ive no stamina for nights out these days,0 +Wow! We won't be above freezing for several days..No need to share your frigid air Canada! Pretty but damn cold.,0 +Matt this game sucks we need some Sharks mojo!!!,0 +I hate Lucky Charms. Who really wants to grub on stale marshmallows? Gross.,0 +I always watch My Big Fat Greek Wedding when it's on. I love Under the Tuscan Sun & Crossing Delancey too,0 +I would have done the same but been a bitch about it lol,0 +@katiebabs I am not the target demo for an emo teen movie so I suppose my op of the relative hotness of the actors matters not.,0 +I'm glad to know your trusty little saturn kicked snow's ass. Snow had it coming.,0 +- damn I hate it when the weather doesn't help my team - and that is New York -north - should be cold and dreary - LOL,0 +#NAME?,0 +#NAME?,0 +- can't hate the skins - their owner sucks - like Al davis - both need to retire - but not give it to their kids.,0 +fuck that...invite ME to the geriatric party!,0 +you and me both man...its not the destination thats in question its that damn journey...where is that pesky fast forward button?,0 +I see you homie....Life's A Bitch 09': http://sharebee.com/c0756ec0,0 +I got my system working in here. I'm multi-tasking my ass off!,0 +i ain cutting my phone off until i see developed land. i need gps tracking shit is damn near haiti!,0 +Damn guess I ain't the only one having a shitty day...LOL Hopefully I can restore my joint when I plug it up to iTunes.,0 +still miami just got through customs. these fucking immagrants are driving me nuts! 2nd language my ass fuck em' all...,0 +your pal jaron",0 +Save a Fighter Pilot's Ass by Oscar Brand. Funny shit.,0 +Isn't lovely? Fuck You Penguin FTW.,0 +look out for the best line "damn the budget",0 +Damn I have no memory of that spin-off. I'm reading about it now and see Lamont went off to work on the Alaska Pipeline...,0 +I'm working from home... but that's cuz I'm swamped and have a dental appt not cuz I'm gay. :-),0 +please don't hate. :-),0 +Ohhh that sucks - talk about irony... Can you call anyone to pick it up & bring it to you?,0 +FYI: That leggy gay moose is a Cariboo btw.. :) Happy holidays!,0 +definitely need to; part of my 09 goal thinking spring time. Not moving in this weather. It will be damn sweet!,0 +That's what I'm sayin' my man. We all know Taco Bell ain't fine dining but DAMN. Free tacos? C'mon people.,0 +Hate them.,0 +Hopefully it's not layoffs. and if it is you better not be one. you make kick ass sites.,0 +damn show off with yer hacked iPhone!,0 +liked you last video like your views =) + insomnia sucks lol,0 +damn right free wifi everyday at work for me lol,0 +Hot Damn!,0 +The ass was feeling better. On the bus now about to die from all the bouncing. Ouch.,0 +Well I'm not there yet so thankfully I only have to freak out from here. I call my contractor almost daily though. ;-),0 +10 hours? Of sleep? In a row? Damn! That's merely a pipe dream for me. I haven't slept more than 4 hrs in a row in decades!,0 + well I have elf's on my side so you know your going to get you ass kicked,0 +he is cuz Syler killed him he knows how to kill some one. Because he is bad ass as he is über. I think I like syler don't you.,0 +I had the same thing on the 24th. It sucks big time. Drink Gatorade!,0 +i was forced to watch the pats for too many years... FUCK THAT SHIT!!!!! haha,0 +Sorry to hear that lol. You are going to hate the keyboard for twitter & texting.,0 +I own the 1st gen iPod touch and typing sucks. That's why the Storm commercial clowns the iPhone indirectly about the keyboard.,0 +LUCKY BITCH :(,0 +unemployment sucks in NJ. In Pa they lookat you your highest quarter and pay you per week what you got in that qtr,0 +Twitter is going a little crazy today. API problems stream problems DM problems. No whale sightings to speak of though.,0 +It completely kicked my ass. Many of my bits are quite tender today.,0 +welcome to NJ! We aim to piss everyone else off.,0 +ate there Friday and it literally blew my mind---so good--but its not a Fat Louis type of place--much different vibe,0 +oh no! Just read about your tree. So sorry that absolutely sucks. :-(,0 +Now I ask ya would you give a fuck what kind of pants the son-of-a-bitch who shot you was wearing?,0 +hate to say it but getting very close to relegation zone!,0 +HEY no talking about my ass!,0 +you hate loud people like us?,0 +that sucks. gonna replace it or build a new system all together?,0 +DAMN!!!!",0 +why does watching Will & Grace have to mean you're gay?,0 +because you HATE ME! I thought the 50% off sticker was a nice touch. (:,0 +And I see why you turned his ass down! Dis some bullshit!,0 +Yes and I'm sure his monkey ass does too on the effin bus everydamnday!.,0 +Hey Navi! Whats going on with your damn Twitter account? Same issues eh? 2009 Time for a new start!,0 +LMAO! That girl is syck! Hell I wasn't even born in 1977. Special ass!,0 +Damn it now I have that Kiss song in my head. (Fortunately I like that one),0 +I really hate the countdown pack also rite I got these hot as six rings I would post a pic but my friend got them,0 +I guess congratulations are in order but now you have to write a damn dissertation. What is the topic?,0 +Thanks but we have one in a bag somewhere. I hate to take yours just in case you need it sometime. Thanks for thinking of us.,0 + do you hate wikipedia?,0 +hope ya get to feeling better. Sucks when I miss out on Lifegroup so I know how ya feel.,0 +hahaha I knew you'd hate it,0 +dude that sucks go steal a stapler or burn that mother down. We always include our Temps!,0 + hey I didn't complain! Especially since today I am in total bitch mode!,0 +Fuck yeah!,0 +is a dirty dirty DM whore. Retweet. Please.,0 +is a cock-measuring dirrrty DM whore.,0 +An appropriate tweet considering the cock measuring. Shall we do it over you?,0 +it still exists and all 90 000 of my comp. Employees use it. Hate it. Far too limited,0 +"""frankly my dear I don't give a damn"" :) come and get it !",0 +I'm sure you are not a loser !!!! it's always good to have a do nothing day!! sleep well ...peace,0 +"""WATCH OUT. TOBY MAD."" Is this real? (please say yes I need to live in a world where Big ASS Truck Rental and Storage can exist)",0 +Hey checked out the new podcast laughed my ass off. I missed you guys. "Got a new ball belt you're gonna love it." Classic.,0 +"""Well Ho-Ho-Whore!"" ""Gasp!"" Classic.",0 +// i hate you,0 +- it's a sweet deal and product. Customer service sucks pooh tho.,0 +Why bother doing anything? (Post-nerd procrastination?),0 +Why put off tomorrow what you can do today? (Nerd test 101.),0 +Cock-up theory a better one Al - I made a mess of the 2.7 upgrade. I've done it again since on another blog - went perfectly :-),0 +I didn't know it was such a controversial cigar you got people who love it hate it and people who want to try it again LOL,0 +tempted to ask what ass flakes are. dandruff? never- nevermind.,0 +sorry it took so long but I am a Grizzlies fan. I am originally from Memphis. Things are looking up with Mayo and Gay in tow.,0 +damn that's close to where I work,0 +yeah they wack right now... Need a big man and to get rid of sheed iverson and rip ass...,0 +sucks but that's life now we'll give all our tips to @martindeboer :),0 +same here. fricken sucks.,0 +piggy-chain is a keychain in the shape of a pig In which you push a button @ it turns into a flashlight.,0 +I dunno.. but it's damn annoying.,0 +YAY! I'm thinking abt that again. Otherwise fone b blowin' up. Plus reading links on BB sometimes sucks.,0 +SUCKS don't it?,0 +Sucks don't it?,0 +I hate the Dickens out of you. 12:30 tonight. Covert ops.,0 +I hate the idea of purposeful personal branding. How about just have a personality and be yourself...online and off?,0 +actually if ur gay you have the same exact right to marry as if ur straight.,0 +There are more Eagles & Cowboys fans in this world than any other football team. I just hate football right about now.,0 +Good ones! Mine is "Merry Christmas Kiss My Ass Kiss Your Ass Kiss His Ass Happy Hannukah" burst out laffing every time....,0 +He's not worth fretting over. There's better people who still love you up in this bitch.,0 +The movies are way better. Movie Light blows ass though.,0 +Great! Now I've got that damn "Thank you for being a friend..." song stuck in my head...your dream is my nightmare.,0 +Damn man that sucks. Do you think you'll ever get another cat?,0 +He's kind of like a gay male version of Edith Ann I bet. http://tinyurl.com/6a8yrr,0 +haha yeshhh you are and you thought i was gonna think its gay -_-,0 +damn your doing that with your iPhone camera / wife me both love it.,0 +And we are having a pig roast and beef and goodies tonight before midnight with some of the people - I'm going to be dead tomorow,0 +Haha dont cry when you drop him off. Hate to see him hit you with one of his remarks in a moment of weakness.,0 +Sylar/Peter? FUCK YEAH :P Us in the middle?,0 +Haha yeah. Jack's already gay. We're just trying to get Zak to come out now XD,0 +don't you hate emotions sometimes? Sneaky things.,0 +that damn camera!!! lmao,0 +Beans are sadly gassy and cause pain. I might try non-fat yoghurt though.,0 +My gluten-free newly fat-free diet is also not avenaceous though technically oats are not glutenous.,0 +Yep. We are tweeting each other too. Mostly with messages like "U R A NERD." Indeed he is the man of my dreams :-),0 + :( that sucks.,0 +I am aware. Patient advocate in ED patient admin. Now preface launching into history with "kind of in the industry." Sucks.,0 +yes i am sick too too too too sick. it sucks. i hate it.,0 +i may go with velour track suit. just have to find one! because i hate shopping even in the best of circumstances,0 + wow! that is funny! i'd be soo disgusted if anyone pulled that on me! they'd be bitch-slapped.,0 +Well fine they can call them seat protectors in Great Britain but in the US of A they best call 'em ass protectors.,0 +Damn dude -- they're all short sleeve shirts! Wanted to order a long-sleeve ringer. It's winter man! Any chance of adding?,0 +Ooooooh - didn't hear that story! Have a bad feeling it likely makes us (Canada) look like wannabe dorks on the fashion radar..?,0 +yes i do hate that. ;),0 +we've been catching up on lost. the truth is i dont like it very much but it sucks you in because it's so freakin' weird.,0 +Wow-this is fantastic! How did I miss it until now? my resolution for '09.. loose my baby fat (not from childhood). #GNO,0 +hate emails??? for you?? i dont believe it,0 +i hate PC's too!! Argh :-),0 +it's actually a cool phone great feel good size nice keyboard. Not sure if I'm staying with my Touch or changing. Hate decisions!,0 +movie is surprisingly fucking awesome! go pick it up!,0 +How bad ass is that?! lol,0 +I hate Aaron. He needs to go away. Interesting Comments: Chuck is the secret love child? I CANNOT WAIT FOR NEW EPISODES!,0 +don't get me started about my slumlord. Did you make it into work? It's NUTTY outside. I love this weather! (but hate winter ttc),0 +I bet they hate their lives deep down. They always treat me like an idiot when I'm there.,0 +hahaha i did txt him back and say gay u woke me up now i cant sleep hahaha wat are you doing? im so bored but cnt sleep haha,0 +Excellent Point RT: @tdhurst any good fraternity would have pickles always in stock. not so sure about the ass tattoos though.,0 +right there with you! woke up thinking of a hundred things I need to do. hate that!,0 +Fuck! Are you dead?,0 +#NAME?,0 + Damn! I better get busy I only have 29 updates.,0 +i just love the speed & simplicity cum features of Google Chrome,0 +Eeeek! I'm scared of the dark. I don't really believe in ghosts but that would still freak me out.,0 +You're right I hate you for saying hat!,0 +I hate having a bunch of pics in my camera roll,0 +Yayyyy! Damn irish bitch! Congratulations!,0 +I gained this week too I hate it b/c I knew it before I went in and held my accountability and wi. It makes me determined,0 +oh ok I know what the fail whale is then! Thanks!,0 +why can't I bitch about AT&T? I have it for god's sake. I hate the boys club...,0 +let's get ready to rumble lol what a loser he is. Let's get ready to never give him the mic again,0 +Damn!,0 +You would hate to see my sister :/,0 +~santi~",0 +I feel really sad for the fourth fat cat who can't play in the tunnel!,0 +Sure. Well long day being going to five stores in a row. I hate shopping.,0 +Well damn you just made this Jersey boy drool alittle. That's how I like to see my Jersey women step out. You have great feet 2,0 +Owww I feel you babygirl. I swear country boys and girls are so fucking thirsty. You stay on your NJ shyt you will be fine!,0 +hmmm me either!!! well wait I've had like two... maybe more I dunno... I hate having my photo taken I do know that much!,0 +Tough love is key. Though I'd never do that to my brother because he has done so much for me but she sounds like a bitch.,0 +Twitter updates my facebook status you big dick. That way I don't have to do both. Not everyone is nerdy as us with our twitter,0 +the only thing i hate more than the man is a raging UTI.,0 +If you really like Of Human Bondage you'll love anything by Shakespeare. Sorry... I'm a Literature nerd and English major...,0 +gotcha. No probs here but I expect her to stay up all damn nite next year. :),0 +I usually reserve this term of endearment for my sweet @Ginderelly but.... HOOKER! I hate you. No I love you. But I hate you.,0 +That's because Lithia sucks.,0 +I would pull the "I'm suing your ass",0 +That's good. It's a bitch to start a computer/laptop from scratch. Music isn't too bad.Do you know what happened to your mac,0 +aw I'm a cap too. I'm so gay. Anyway I'll be in ny around then...,0 +hey Houston isnt that bad...who am i kidding it sucks anus,0 +i guess thats true.. when it rains in ny it sucks but there is always shit poppin in ny.. orlando is boring :(,0 +im in the same damn boat!!!!!!,0 +I disagree. Freecycle for clothes sucks. Rarely do people post pictures or include good descriptions. Maybe for kids clothes ok.,0 +loooove that game! Haha I used to be such a Nintendo nerd!,0 +I cant leave yet and i had to pee but there was water all over and i didnt want wet socks cause i hate that. Lol,0 +gorillas + apes always make me cry. mama apes nursing babies worst. 2nd are bored ass-scratching primates. but kids dig zoos,0 +on Reservoir...they were walkin...u kno my loud ass was like "ommmgg hiiii"...haahaa,0 +Ay nena..this punk is outta control. His visit went well tho..they took his stitches off but he was actin like a lil bitch whe ...,0 +wat! u playing drums! good shit! who da hell else has the ghwt set up? i need2bust there ass (no homo if its a dude that owns it),0 +hop off my driving ok im fucking stressed out cuz of that shit. @theotherpplwhodidntreadright ..i was not talkin about ev's tweets,0 +omigosh hate them! I wrote a huge literally enormous sharpie-d note on my door & ran downstairs every hour. Victory at last!,0 +if she gets that xbox for me. no one will ever see me for about 5 months ... you'll find me mad fat smelly with a huge beard,0 +SEND MO NEY....LOT'S OF MO NEY Roflmao",0 +oh this sucks . would love to hang out but I am heading to Costa Rica and won't be back until the new year.,0 +I hate your direct message. Thanks.,0 +ugh I hate the tangle struggle. It will be in a damn pony tail all day and I go to brush it and its like a damn jungle.,0 +for real! That's awesome! I love and hate it at the same time the presidential debates this election made me super heated.,0 +LOL NO KIDDING! I would be scared for my life if I were somebody tryna fuck with you! I have no older siblings I'm jealous!,0 +You're so gay you don't even like boys.,0 +you will do fine. good luck. go kick some ass!,0 + oh ratz I hate that. It's on Gizmodo http://tinyurl.com/4vge9r,0 + I do. Why is it Americans feel the need to be an ass when they travel?,0 +and Red Carpet Ready handed my ass to me tonight in a good way. I am pooped!,0 +hate you,0 +Listen. I love the Lord. But when I get to heaven and he asks "JG*... why were you such a freak?" I will say:,0 +You damn right! LOL,0 +trust me. I'd love to say FUCK YOU GMAT! But Georgetown Northwestern and Uni of Chicago would say then FUCK YOU JG*,0 +damn what you getting in to,0 +well damn! Do it big!,0 +the entire congregation was gay.,0 +Agreed. Is Dick Clark setting an example of what to do or not to do? Very sad to see him now God bless him...#nyetwarty,0 +late about big having a movie coming out. didnt tupac have that movie out called resurrection a long ass time ago?,0 +I hate it when that happens! Forgeting badge.,0 +u r NOT a loser I think ur swell sir!,0 +I've been waiting for over half hr for the damn red line. Today kinda sucks!!!,0 +damn after seeing that one I know I didn't win anything!,0 +Happy last day @ Y!. I'm sure ur gonna continue to kick ass at @raptr and that @seldo will miss u dearly :-),0 +your hate can't penetrate the total happiness and warmth I feel as I sit beneath the palm trees sipping margaritas #tequilaggedon,0 +I hate it when I do things like that,0 +no I hate the news! They showed that 51 things girl. It was like they discovered it but it was featured!!,0 +tell her you are gay :),0 +is spreading hate and mistruths...somebody school him #gaza,0 +i twissed you! (twitter-missed yo ass).,0 +damn girl lol. do you kill 'em w/ kindness in real life too?,0 +sucks. why/how are you being forced into that?,0 +in other news y'all gonna make me get back online just to see this lookin' ass kitty vid. *shakes fist*,0 +i hate "the line." i also hate the loud "WHEEL OF FORTUNE" sound bc that usually indicates a spin and EVERYBODY rushes over. nosy.,0 +not w/ praline yo. damn. pure defecation on my breakfast.,0 +you don't have a mac? i'm super shocked especially w/ the line of work you're in. macs piss on PCs all day urrday.,0 +For serious? No fooling? Fuck yeah!,0 +okay not more. But equally. I'd welcome a Moby Dick shooter if it doesn't have a lot of cut scenes...,0 + #tcot if I only had the time. I hate it when conservatives say stupid things that make us all look bad.,0 +UGH! That sucks! Do you know if they found it? Stresssss :( I'm sorry,0 +I swear Michael Scott-esque loser somehow infiltrated your acct & bought lots of womens pantsuits & fur coats there.,0 +hehe...that's too funny. reminds me of when a student drew a picture of a 'pigpen' as a pig atop a pencil. :),0 +I freakin HATE THAT and anyone that knows me this is a top peeve of mine!!,0 +Haha! Well Cyprus Bank's web interface sucks... So I'm considering trying out Alpha Bank. Also my landlord has Alpha bank... lol,0 +Maybe there's no snow but there's a little bit of mud when it rains and there's kat/dog poo and piss on the streets... lol,0 +Btw have you seen School Rumble? It's fucking silly and stupid but awesomely hilarious. I'm half-way through the first season.,0 +damn right mami!,0 +Totally agree on AC/DC. They are damn near the perfect rock n roll band.,0 +Sucks about the van. Any mechanics you know owe you favors? Also thankee sai for the package! Got it a couple days ago.,0 +No worries man. 'Twas a question from me but $800 later I found out what the problem was. Stupid fucking fuel pumps!,0 +BWahahahahah!!! Now you know why I had to take extensions on my damn documentation projects!! Stupid Twitter! *kicks his gf's pc*,0 +That majorly sucks! Sorry to hear it. I'd be SOOO pissed for days! Do you have insurance on it?,0 +the new digitally animated one kicks much ass i think its called degeneration.,0 +It's a necessary part of growth to shed the fat that was piled on during the boon of th 80s. #hhrs #tcot,0 +damn those cute puppies!! How many gadgets I have lost for them.,0 +That site just tells me I am fat LOL,0 +it's all about filtering. In addition to being less fat my main 09 resolution is to be mindful about how I spend attention.,0 +Lol and thanks for the challenge but I think I need to be a little less fat first. Didn't know @karrock was local?,0 + mr big dick daddy 4rm cincinnati....ooooowwwww!!!!,0 +May have to end up getting a MAC myself... and an iPhone... Although just can't get used to the touch screen. Fat fingers.,0 +yep i hate working with threads.,0 +@johnwilliams713 I hate you both.,0 +Actually I think we all hate this weather so everybody just stays in all the time,0 + While searching for leather binders for their Bibles they use The Joy of Gay Sex as an insert. Handy.,0 +Shit I hate the tough questions. Is maybe a valid answer?,0 +No he's a cunt and wants a web site!,0 +Fuck I forgot. Will watch now.,0 +well fuck.....,0 +I remember trying one of those when my teen was a little one. Those damn tents make u wanna commit murder!,0 +i was up till 2 am messin wit toys and batteries. now i got a lil t-rex making noise in my house. Damn noisy toys.,0 +stay warm Kyle. that sucks. we were lucky to get ours back today.,0 +Hahaha... I guess I m loser now. I dont go out much! When I get my new job maybe I will visit Longhis :),0 +Thanks... you are the sweetest! :) Are they fat free?,0 +myspace does not hate you.,0 +that sucks I hope u can get out of it...where did u apply to?,0 +Often I feel like the only Jew who does not equate "political criticism of Israel's actions" and "hate for all Jews".,0 +Vote or die bitch!,0 +oh wow dude thst one hell of a kick ass mission!,0 +I hate to hear about all the accidents. People need to slow down and be more careful and even more so during the holiday season.,0 +dead ass lol,0 +ooooh! Don't make me come out there now! Whatchoo know about silk's freak me? Nah wait...you need to lose control first,0 +I have you beat - amazon and a bunch of poser stores email me too haha,0 +I hate to tell you this; your good name is being used for phishing! You should change your password. http://status.twitter.com/,0 +Damn. That is tired.,0 +btw i saw your gift last night. You are going to freak out.,0 +Well then get some damn sleep ya dumbass! Lol,0 +OMG! To damn funny. U need 2 video that shit. Lol,0 +I hate you.,0 +damn twitter. Sheez...,0 +Its freaking me out. 1999 wasn't long ago. But 10 years. FUCK.,0 +i hate blackbird cause it's never enough food,0 +after that aired on cnn my mom wrote me an email asking i knew about emo and if i was ok...WAT,0 +those damn kids ruin it for all of us!,0 +YEP! HATE LIFE right now. HE is a computer hacker geek stay@home dad whom THEY HAD to move out of STATE!(she's a DR.) long story~,0 +cont. I would get embarraced I didnt do drugs but was like a HUGE man with what I could handle?sucks I guess if I wanted to ; ),0 +wow... I feel like a real loser now! ; ) haha better get my but in gear!,0 +Thank You Thank You. I would hate to get banned from either but. Phew! My bad...,0 +Hate to say it to you or hurt your feelings Justine but your Steelers are going DOWN next weekend!,0 +Damn. Next thing you'll be telling me Rumple of the Bailey isn't a documentary.,0 +way to hate on me before 7 am!! Yes and to ALL you tweets...I made the Lightening McQueen cake.,0 +y do u post pictures of fat girls all the time. Does it make u feel better?,0 +lol fuck it ,0 +what up freak nasty.,0 +damn! good job.,0 +"""fuck the recession""",0 +hate you...it's freezing here...my nipples will freeze off before I get home,0 +slut...just pelvic thrust anyone,0 +god that show sucks...,0 +will do :) ha I don't mean to sound gay but I have no layers in my hair after tour so well see how it goes ha,0 +she ain't a bitch I'm just pretty awesome,0 +nah i just think i deserve it. sometimes you have to reward yours. its been 3 years since my fat boy days,0 +OMG. I kist realized ... I hope work doesn't think I'm calling in gay.,0 +cunt!!!! i love you!!!!,0 +i'm so fucking sick of being easily disposed of. what's wrong with me kitty kat?,0 +Thanks Kitty....... and hey i'm thinking of calling in gay tomorrow too!,0 +but u have to process the milk in some fashion to cut the fat content in half,0 +Wait you hate hfcs but you drink diet coke? Head asplode.,0 +Like fuck I am.,0 +I'm your fucking Da and I'm not gonna come in tomorrow :),0 +NINJAS kick ass they dont rape ass unlike pirates,0 +why the fuck wouldn't you?,0 +As a former newspaper man I have to tell you that I see no reason for a bailout. Then again I hate bailouts in general.,0 +that PC thing is fucking awesome,0 +Make sure it matches. I hate furnaces that clash with the house. sainless steal or gold go with anything.,0 +That sucks man! Hope you start feeling better. I hope you and your family have a very Merry Christmas!,0 +But i agree that Walmart sucks :),0 +I'm doing both. And it sucks. But I've got a lot done (work-wise) & then will spend the day finishing some Christmas stuff,0 +and let the merciless fun-making of the latin nerd commence....now.,0 +The winner eats the blintz and the loser(s) watch the winner eat the blintz. Marquess of Queensbury rules apply. En garde!,0 + yah but YOU get to tweet from your couch or bed or whatever. I gotta sit on this hard chair on my computer I hate.,0 +I hate to hear that... Please let me know if you have any issues with the return and I'll remedy... because I can :),0 +I relate to that kind of thinking. I hate eating salads (but I eat them anyway) and I feel I'm justified to reward myself!,0 +If the damn Vikings would have won yesterday like the should have this game wouldn't matter.,0 +The libertarian case for gay marriage. http://tinyurl.com/2f6xbm,0 +that sucks. gg was fantastic this week ,0 +had to document it just incase i was going mad myself. and i don't even like cock. what are they trying to suggest?,0 +fag face,0 +I'll have to work on that one. Ass clown is a solid contender.,0 +damn I want some Frenchys... A 3 piece white with fries and cornbread.,0 + Instead of letting a couple of million people live for 60 years as "prisoners" and thereby indirectly nurturing the hate.,0 +Scary? Yes. It's also really fucking cool. It reads like science fiction.,0 +I also just got Emma as well. I've been a lit nerd too long not to have read Austen. I have shame regarding this.,0 +here's some cock for u http://twitpic.com/rrvm,0 +Actaully after you sent that I had to sit down for dinner. Hate to break it to you but grandma said you had to leave.,0 +They'd have had flying cars by 2015 too. I want my damn flying car dammit.,0 +It's pretty damn similar that (bass?) guitar part at least. I owe you something nice for this btw.,0 +Mosey is a whore for attention.,0 +What's happening brotha? I'm good. Been a busy day getting ready for my big fat free bootcamp manana! How about you?,0 +lol so much for one huge ass exp. btw did you publish anything official yet?,0 +fat browser? tell me more! like gOS/CloudOS?,0 +It is less that 2 feet from the front to back. 3.5 wide from left to right. SMALL ASS DESK,0 + i'm actually refreshing wil wheaton's blog right now to find out about his incredible announcement. i just can't help my inner nerd.,0 +thanks nerd.,0 +damn you beat me to that example. :) #journchat,0 +Fuck that this hot winter is awesome.,0 +Yep I hate paying taxes too and the more I make the more I pay but it's part of life and not a waste of money.,0 +... that is funny... not two seconds ago somebody walked by office and said "I hate winter!" LOL,0 +Just another day money to be made got my hater blockers on for those haters who goin hate... Thats how im feeling today.,0 +I just use the standard twitter site and it's tough. :P WOuld hate to find another addiction to go along with this one.,0 +that's why hatemail is so hilarious! i love hate mail!,0 +people that want to make sure that you know that they HATE HATE HATE lolis,0 +i love how every forum has someone fall over themself to make sure that everyone knows they hate lolis/moe/fansubs/mecha/yaoi,0 +damn ... that sounds real appealing now. Maybe geothermal coupled with wind and solar ... tho maybe heat coils take too much power,0 +@TheMadMat damn ... well then it was definitely worth a second mention. Sure looks good!,0 +Did you see the Dick/Rich video yet? http://tinyurl.com/697e3g,0 +I wish I had a Christmas vacation. Damn Facbook and its holiday perks!,0 +I hate that I couldn't guess MJ that songs an obvious classic. Guess I need to take some time and listen to the 70s groove.,0 +I think they'd say fuck you right back lol.,0 +I hate when you get stuck out in the cold wearing cons.,0 +this should have ended months ago sucks.,0 +he said don't hate....,0 +yeah. It's ugly! And their rebounding sucks!,0 +i always fall on ice! It's my third time this winter! Ugh i hate snow sometimes.,0 +GO pkzwrt's hommy Barry's ex-scharrel de lijst regelaares! (damn!),0 +Sonic CD and the Lunar games... might also try to go for Third World War and Popful Mail if I absolutely lose my fucking mind.,0 +hey praying for u man. I hate strep,0 +I didn't think about drinking every time she said "maverick." Damn. Could have done it every time she talked about energy too.,0 +Cool. I live in Seattle where the wind pretty much sucks (it's like San Diego but Northier). So I usually go to Hawaii 4 my fix,0 +i heard traffic going to fart chips land!!! some crazy ass accident,0 +stop being a pussy. you look hot.,0 +Uh I don't really have a people preference. LA comes in last (hate the sprawl lack of transportation etc it's not a "city").,0 +yup those are kick ass. great job.,0 +That sucks beans. What will give it the zest of life? The bite of beautiful fruit? Even the audacious appeal of deliciousness?,0 +we lose perspective living around so many fit austinites. I freak every time im in htown b/c of all the public smokers.,0 +damn... i was just thinking of a cablazo this morning.,0 +Fight the good fight. I sympathize. I hate to update! And W P is goshzillions better than what I had!,0 +hey umm.. talisa even tho I don't give a rats ass bout this shit | talisa the damn monkey mail doesn't come on monday lol,0 +imma be as nice as possible alrite. talisa how the fuck do I kno? do I watch da disney channel' ? uhh. . noo nigga lol,0 +thats not cold. its 4 fucking degrees here with a wind chill of -5! thats damn cold!,0 +damn you twitter like crazy!,0 +oh ok..so technically u dont need that specific class...ok cuz i was about to say 2010 wtf? not for some dick lmao,0 +I hate the iPhone censorship as I use the words that are auto-corrected to "shot" and "duck" quite frequently.,0 +That is a massive FAIL. (I am being facetious here.) I hate low-calorie anything & it shows. LOL,0 +already looking at 5 shows so damn excited hope to do SPAC,0 +Cool - I've arrived. It's about damn time too....Merry Christmas Doll!,0 +saw that cunt thrown in,0 +@jackienopants I an wistfull that it will happen soon..damn sick of being on my own...one more week an counting,0 +Meant 60s vaguely-lived in one 1980-91 still connected somewhat. Would you live that way again? I hate too many mtgs!,0 +It's 53 here and supposed to be 25 by noon. Talk about a drop in tempature. The wind was howling all night. I hate winter!,0 +Did you just call your mum a cunt? :O,0 +mega pig out foodie session for you today!,0 +You mean GMail Contacts doesn't hate me personally? I'm relieved! (Though I don't get a Forbidden it just keeps loading forever),0 +BALLIN! on another note i hate nursing school why do i have to sit here and learn about the latest forms of birthcontrol wth!,0 +Oh I hate those things! Can you imagine if you were color blind or dislexic (sp?).,0 +Don't you hate that! BL is always on when I'm eating dinner and having my relax drink. Ugh!,0 +U gave me ur insomnia Im drinkin mountain dew and blastin 50cent I've lost my damn mind.,0 +sadly i did have ideas stolen more than once so now i'm a paranoid freak about it ... but I trust you you like legos.,0 +that gem fucking with santogold and kanye west is fucking sick! love it.,0 +the man has talent and makes some damn good music. But he overrates himself sometimes.,0 +dammit miller that was from jes again...justin likes to auto log in on this damn crack site and i forget. doh!,0 +...eatin' brownies like a retard! meah!,0 +New Hampshire. They have receieved a reported 'metric ass ton' of snow. How's Detroit hanging in there?,0 +That Cole lyric made me think of: I'm a kreep I'm a loser You're so very special I wish I was special. http://zi.ma/373a67,0 +Well it's @ElysiumGWJ 's turn. Noone takes @Certis seriously and @Demiurge and @GWJRabbit get the hate mail all the time.,0 +I hate milk! Egg nog sounds gross may b I'll try it this yr. U can mix it with Amaretto...that I may do.,0 +& @VIChick: I feel as tho I spend every weekday waiting 4 the weekend. Then I spend the weekend dreading the damn work week.,0 +Um...sorry Yatty. HATE shopping this time of year. Do everything online. Good luck though!,0 +That would freak me out if all my cards suddenly stopped.,0 +I hate it when they do that :3,0 +ya. Luckly that hasn't happened in years. Sucks backing a semi just over half a mile.,0 +CALIFORNICATION is about fucking and how awesome it is to be David Duchovny and fuck hot young girls. Which is probably true.,0 +broke freezing my ass off with -1 temps & ice lol. Ross,0 +Putting pants on sucks lol. Ross,0 +Not 2 fuck up my life. Ross,0 +I hope u had a kick ass day. Ross,0 +The "need work may have a piss test" curse,0 +man Im coming to Santos tonight ya'll sound like having a funky good time on a snowy ass day let alone a good day Im there,0 +http://twitpic.com/xn5j - I want to suck your hard cock ....untie you and cum all I over my face over lord Saltan.,0 +i'm just getting over my sickness. It sucks. Feel better.,0 +I know...it sucks. Tomorrow night!,0 +I know! To be fair he's been working on law school apps all day. I already hate law school and he hasn't even started yet! :),0 +i kno u hate me but r u ok? Im always here for u if u need me.,0 +during the week I'm more blk polo/cargo pants/white runners kinda guy. I pull out the nerd stuff for those who appreciate it.,0 +tired as fuck and wish I was with you right now!,0 +im jealous lol. u better protect the penis at all times i dont care how cute YOU thought she was lol Hate hate hate,0 +It's dry with fruit tones. Used to HATE anything but Clicquot before I tried Korbel Natural...,0 +It is? I have been cybershopping for everything this year. I hate going into the store. Amazon.com is my retailer of choice. ;-),0 +I mix the low fat vanilla w/ the toffee to save some calories.,0 +When we played the Star Wars drinking game Pat chose to drink whenever the robots acted gay. He was trashed 10 minutes in.,0 +Dude the Melodramatist would be a good stage name for an emo musician. Or a magician. I think you could do either! :-),0 +yep. have some kind of infection in my foot. might be gout. sounds gross! hurts tho & i hate meds. make me sleepy! how you?,0 +I hate moping. It's horrible. Mum makes me mop the kitchen floor sometimes and I always want to dieeeeeeeee.,0 +yeah. the name didnt mean anything to them lol. i dun got death threats hate mail. been blocked by people i dont even know lmao.,0 +- There there *hugs* Nobody sucks in relationship. Maybe it's about timing and the people :) It's OK.,0 +- Uh... Fail Whale? What Fail Whale? *whistling non-chalantly*,0 +lmao yea i know i hate it D:,0 +figures...i hate when channels advertise for other channels...,0 +gah. Hard to know which team to hate more. Usually the Bears but maybe not this year.,0 +well damn I thought we'd come to Florida. (Dream on Karen.),0 +I gave up on lighting hell this year. Got a 9 ft. pre-lit fake. Love the smell of real but hate creating demand for tree killin',0 +o Zacky i'm sorry that sucks!,0 + oi vey...sorry about the plumbing-i was standing in 2inches of water in my basement last night. merry fucking holidays :-),0 +That's one thing I noticed when I first installed it too. Damn thing took over my preferences.,0 +Lucky me no snow in Hazel Park at least not yet. 2 inches expected . Daily fat burning walk to the end of my driveway again.,0 +Ooh that sucks! Maybe it'll still turn up though. I've had pkgs get lost only to be found 3 wks later.,0 +That sucks. My flight was delayed an hour. What terminal are you at?,0 +damn why doesn't thwirl have spell checker?? But actually the ones the girls decorated are a bit on the mean side hard to ice smiles,0 +(avec un retard de 5 heures) Bonjour Semio!,0 +omfggg facebook's being such a cock tonight.,0 +I'm gonna use meebo and use it for my AIM account. I need to update too. I'm being such a lazy-ass XD,0 +Thanks! I hate not being able to do what I know is simple. I'll DM her and deal with this tomorrow.,0 +ur not emo becka,0 + fuck em.... youre a nice guy.,0 +i'm going to read so that i hate myself a little less.,0 +I'm sure!! I despise cleaning although I'm an organization freak!,0 +That's what sucks: I don't actually get to do it. I just had to prove I could plan it out. -KayCee,0 +a day like that'll make anyone a bitch though. -KayCee,0 +you need to eat more beets and freak them out next time.,0 +I've been using thunderbird but am damn near ready to chuck it. too many smtp problems. three different servers points to client.,0 + @steph125 says fag... no one likes jacob... and im starting to question ur 2nd to last twitter...,0 + it contains 610 calories 330 from fat...,0 +#NAME?,0 +#NAME?,0 +For the record it's fucking freezing...,0 +During hurricane Ike our power was out for 5 days others for 2 weeks or more. It really sucks after day 2. Uggg be well.,0 +Call Guiness...the book not the beer. You may be the 2008 iPhone App King-O-Rama gold medal winner. How many do you hate all in?,0 +Downey is a freak of actor nature - he makes every character magnetic. It was a winner.,0 +They are hungry for democracy - most Westerners are fat happy complacent. Brave New World v. 1984. Pleasure beats pain.,0 +thank u! And damn that's a super long list.,0 +it is one of my lesser performances. Iz kinda like fat elvis vs. young elvis.,0 +why do i look so fat?,0 +the snow storm you're having could possibly be the same one we had Friday it was horrible like 20-30cm of snow. I hate metrics,0 +Damn that sounds so good I got fat just reading it haha.,0 +Yes one of my fave movies... of... alll.... fucking time!,0 +Damn. That is a beautiful car.,0 +yup! Fat Albert is next,0 +thanks I'll give it a try... Just took a sudafed even tho I hate taking meds while preggers....see if that helps,0 +Man up pussy. NO SMOKES FOR U!!,0 +you hate is soooo cute though. ☺,0 +oooh I had the sneezes for three days. Dr. said it was going around but I had no other symptoms. I hate to sneeze1 Fine now.,0 +You went to the Fisher house? That is so cool! We finally made it to LA! 9 hours in the car sucks.,0 +Just got it in !! quick little 15 min with a run up 6 flights !!! damn that cold air almost couldnt breathe !!,0 +@homebasenyc Alice don't believe anything this kid says !!! I hate him but only cause I love him so much..*sigh*,0 +I know! Will it ever end? I hate these weekend renovators it goes on for years!,0 +being a control freak... it's like mental therapy to do stuff like Ann's.,0 +I hate doing laundry PERIOD,0 +hate MobileMe...but I host my website on there...,0 +I hate the nod drivin. I got it about -10 in here & tryin 2 stay btwn the lines. Jesus help me!,0 +Yeah send me ur Wii number and Kart number. Ill send you mine. I will be happy to hand u ur ass in some Kart soon.,0 +Unfortunately it's just beginning. I hate winter too.,0 +I HATE my white trash christmas outfit its terrible i look terrible and fat in it. I dont know if i can do it.,0 +are we going to see u in 2 wks? Sorry life sucks (move to Fla! you know it would be fun),0 +finally someone reviews Death Proof and understands the film and why it's fucking awesome.,0 +You have to work tomorrow... sucks. balls. are you working today?,0 +damn how much did we end up with on the ground?,0 +Are you saying it's a gift for people you feel little emotion for cuz I gave some to @ggilmore and he's my private dick... detective!,0 +damn....I'm totally food aroused right now. HOT!,0 +headed back to NC Thursday. Today DC American History Museum. I'll be the extra fat one in too small jeans. ah holidays...,0 +I will vent/blog/whine about my poor character judgment skills and ponder all the jollities a divorce has to offer. And be emo.,0 +Like Dick Cheney has an issue maybe?,0 +I haven't seen the movie but I read the book and sobbed. But I already know I'm a nerd.,0 +You're content coz you have The Kooks!!! They're so damn feel good!,0 +Weird. I read online that they helped. It could be this kind of apple too they are pretty sweet. DAMN!,0 +thanks! Sucks.. Its hard for me to let go of players that have been on the team since i started watching lol,0 +no prob.. that's a good point! =( man this sucks...,0 +you're so lucky! Then again its understandable with the weather over there. Still lucky. I hate school =(,0 +I'm finally beginning to think that maybe I'm not so alone out here in nerd-land =),0 +Oh lots of them. I mostly want the snow to look at and play in here. Not big into skiing or boarding :P I'm a total loser!,0 +damn!! man tell me her name :D,0 +because someone that im not friends with anymore bought the shoes that i want just to piss me off. but im better now.,0 +that sucks just saying ~*Krystle*~,0 +Well I'm sure you'll feel better w a little Jizz in your pants over Heath. BTW Jizz was so NOT this year's Dick in a Box!,0 +will have 0the radio on Monday 4 all ur favorite Xmas tunes! paybks r a bitch and so am i. *Kate Souter*,0 +fucking beautiful shoes.,0 +i'm giving you a heart cuz i'm assuming this is me and byron if not i hate u but here <3,0 +Cool buddy! @tomvenuto 's new book The Body Fat Solution gets released on Thursday if you can help let me know,0 +Yo Scott @tomvenuto is launching Body Fat Solution book on Friday... Any chance you can mail that day my friend?,0 +and people are always telling me they hate research ha ;),0 +sucks your sick on X-mas. Hope you're feeling better. Drink lots of egg nog... w/ RUM!,0 +#NAME?,0 +Pause and type quick notes then edit at the end. I'd use a recorder but I hate transcribing. It's really helped my typing speed.,0 +it's colder here. I hate snow.,0 +sucks that the Source link is wrong,0 +#NAME?,0 +finally it took too damn long,0 +I love fat albert!,0 +but is it colder than penguin pussy?,0 +At least I didn't get the candles that I stole...stolen. I lucked out. The case of Fat Boys was also popular this year.,0 +marerockcity fuck yes! That's great have a safe drive,0 +I'm so dropping the ball today homie. I'm like damn near dead I'm so tired. Reschedule??? Sowwwyyyy,0 +i know you hate cold weather but if you get to see snow in indy i will be jealous! i haven't seen snow in foreverrr.,0 +safe travel tomorrow..back to reality--it sucks I know..,0 +damn..impressive,0 +good morning Alexa! Go kick some ass!!,0 +I could NEVER hate YOU! :-),0 +yeah. time zones are a bitch.,0 +whoa you said cunt.. that kinda turned me on ;),0 +awwww im sorry to hear i know you and steph were so excited to move too :( i hate your neighbors sooo much!!!,0 +don't hate!,0 +Believe me most domainers HATE parking their domains. What evidence do you have supporting your allegations?,0 +a friend of mine in history class. He's the best friend of the (closet) gay guy that wants to go out with me.,0 +we say the same things cause we're fucking cool. You know how we roll. Love you like a fat kid loves cake.,0 +Michelle is laughing her ass off as I am currently telling her the stories of last night.,0 +thanks! this is the only thing that sucks about tourns.. playing 3 long grinding session for nothing.,0 +yo yo. so i emaled you about the 30th you study nerd. :-) let me know if that works! xoxo,0 +fuck yes.,0 +GOOD. YOU'RE FLOODING MY INBOX LIKE THE CEDAR RIVER IN JUNE. BITCH I DON'T KNOW YOUR LIFE.,0 +omg omg omg I am SO happy to see you on here! We're gonna have some fucking kickass fun. Fasten your seatbelt pussycat.,0 +I personally hate all of Narrow Stairs. However the Hold Steady is great you're right.,0 +The commercials are just so damn cute! Haha.,0 +i have a headache too... hate having head aches...,0 +What kind of math are you studying? Just curious. (I'm a nerd I guess...),0 +ha! not the stomach ache part the big and fat part,0 +Haha fat chance! Night! LoveLoveLove!,0 +damn right I'm interested. I run beastsoftheeast.com,0 +damn! I guess... Well... Cough cough... I... *smiling*,0 +Fucking brilliant mate! Well done.,0 +I can't believe you're still having Internet issues. Pain in the ass!,0 +Damn that sounds good. I love hush puppies!,0 +why you being so emo?!,0 +congratu-fucking-lations miss jenna!,0 +Dick Rydeeeerrrrssss,0 +Episode 4 fuck boy,0 +i wish i didn't own it it just takes up space here...i haven't even ever unboxed it i hate games :P (jk jk),0 +Don't hate me. I bought the Coldplay EP.,0 +i hate planes...just try to sleep. Have a safe trip!,0 +ouch that sucks.. Sorry I wouldn't even know of one in Cleveland. I will stick with guitars.,0 +i agree tooooo damn cold!,0 +so u hate christmas 2?,0 +Damn - I'm really in trouble now. But I always like to take risks and clearly this is going to be one for me...Thx for checkin!,0 +Yes... think about how many 32 oz cups of poison were sold this morning 2go with hearty breakfasts of fat & carbs.,0 +sounds great what time should I be there? Oh I hate garlic can u leave it off my broccoli? Kthxbai ,0 +Hey Mr.B! I'm having a nerd fest at the moment playing w/ my new Google Chrome. How's life with you?,0 +There are a few good knitting videos on Youtube. A combo of those Stitch n Bitch and nice neightbor ladies taught me :),0 +Jealous. Want. (But getting to places sucks so bad right now.),0 +don't hate!,0 +haha i only buy candles that smell like cupcakes... or cookies... i'm so fat.,0 +ha ha ha ha damn good :D,0 +I was *sure* I told you both at the wedding...Damn that open bar!,0 +its fucking terrible my friend and I left,0 +Nope. I fell on my ass on the way home.,0 +it is our wedding anniversary today. He got me NOTHING. Not even a damn card. So he should go and get me donuts! LOL,0 +oh man. You would love(or hate) my bacon chocolate.,0 +re:magpie yeah like I want to piss off everyone following me on Twitter for whatever they decide to send me "up to....",0 +I had planned to pick up the kids early but I'm sitting on my ass now surfing the net...,0 +do you really make them "guzzle" cum?,0 +Make Jon do his own damn homework... or you should at least get an honorary degree when he graduates...LMMFAO,0 +not disagreeing. just sick of mid-major whining. yep situation sucks. whining doesn't help nor prove a BCS team is undeserving,0 +i am pro-Gator not anti-anyone else. i just hate when people are asinine jerks. :),0 +I hate that road. crappy. Reminds me of Joburg. And then every1 is angry when they hit Sir Lowry's pass. . kuck,0 +whore! happy putin day! You think putin is half as hard to kill as rasputin? get it? fuck. I'm funny.,0 +don't you just hate working that early i hate it with a passion.,0 +! Jingle fucking Bells ! How is Christmas next wk? Where does the time go?,0 +HEY. No "fuck beans." It's Friday. Get your party pants on dude.,0 +Doesn't he look a little like a more masculine less crackhead version of Andy Dick?,0 +@joeschmitt Hey thanks~ I missed you too! I didn't get ANY cock* in my face for New Year's. (*fvrd),0 +Awesome. Wouldn't have been near as funny w/o his contagious laughter or all the ass authorities making comments...,0 +You hate France? Are you there now? Why? Is it French boy?,0 +damn we're in a tight spot,0 +that new almost law sucks. I understand wanting to protect but we aren't Chinese imports!,0 +lol that's what i do. i HATE wearing jeans at home plus the ankles get all cold and wet cause of the snow!,0 +lol she fell a couple of times and i already kind of hate the walking thing... i can tell i'm gonna LOVE running. haha.,0 +That sucks. Hope you feel better soon.,0 +well that just sucks no matter how you look at it! Try & have a good day..,0 +that is screwed up u set their ass straight! Tell them u will send them a free "dvd" w/ their order..haha,0 +Checking their catalogue now and damn that a fine list of products they have.,0 +before i click on your link there i just want to say that i am who i am and if that offends ive done my fucking job. =),0 +well i don't get out to places like that much. the "big ass" burger should have been the first clue to the lever of classy tho.,0 + i remember as a kid i use to love this serial and sofa cum bed episode was the discussion topic next day in school,0 +overall biz/mktg/PR but still toward the beginning - lot of basic 101s. The one i hate is art. odd since i'm an artistic type,0 +- trying to remember the on-shore fields from late 90's - Bu Hasa Habshan - damn! cannot remember the rest - good times!,0 +bollocks fuck tits wank cunty cunter.......there you go now I'm worse than you....should buy you a few more naughty words....,0 +thanks :) but damn i need to work on this!! you're the second person in a span of 7 days who's told me i'm unlike me :|,0 +FUCK I'M FOLLOWING HIM NOW STFU haha,0 +I don't feel bad. I'm working my ass trying to get some gifts this year its been a while. Weather I succeed or not I tried.,0 +For some damn reason I can't no freakin idea my blocks haven't been working right lately,0 +and we need to make more spooky cock-tail! what flavor v8 did we use?,0 +Its nearly 8pm Mon...coming to u from the future and it looks damn great (madhouse prerequisite = a healthy dose of insanity),0 +You make me look extremly lazy and fat. haha.,0 +damn Dan im online... am i nobody? :-(,0 +Just read about your Dad's heart issues & knee surgery. I had cardiac crisis last summer +prior freak knee. Will share help..,0 +exactly how does it rain like a bitch? i've always wondered....,0 +Damn something else I wish I would have come up with...Genius!!,0 +...Aww....That sucks...I was looking forward to all 80....oh well....60 will have to do...,0 +Holy Hell! Up against a brick wall behind a dumpster is my fucking dream I swear. Used to RP that one for the boys on the net haha,0 +#NAME?,0 +cum cloape??,0 +wb. cum e pe la munte?,0 +Most soy yogurt tastes like ass. But Whole Soy & Co is *delicious* - even my cats love it: http://veganom.com/,0 +Heading to get the pig soon.,0 +your damn night! I wish I had 666 followers.,0 +is it really called Gay Movie? is it pron?,0 +yeah..very! I haven't done anything last night bcoz of that! I hate challenges...cant sleep if I turn one down.,0 +Toldja. Actually the whole thing gets less emo at some point in the archives. And I feel like it's getting even better.,0 +Damn I miss The Mark Show sometimes. :-),0 +http://itweet.net/web/ kicks some serious ass.,0 +I don't think Brits are religious enough to care. And I hate the "causes" app. Just a great way to annoy me with shit,0 +thats last years line up?? really oooooo well that sucks lol,0 +oh damn... lol then ill send them when you have a comp or something lol. do you have verizon or no?,0 +I'll let you know when I find out. If it sucks I'm going to play it up even more so I won't be the only sucker.,0 +Mht. klatrevæg kan du måske hive fat i @solberg - han er friluftsmand og tidligere ansat i en Spejder Sport :),0 +I like when you do that! :-) You always look so damn cozy & cute,0 +"""You look nice today"" makes me want to cut my ears off but then I laugh my ass off & it's worth it all",0 +Damn give me some dude! Me like the Generals poultry!,0 +I guess the difference lies in your assumption that gay is "behavior" vs mine that it's an inborn trait like left-handedness,0 +Being gay is not a "behavior"! Until you alter that misperception it will be difficult for you see why gays are upset re RW,0 +And if I'm lucky my whole town will shut down and I wont have to work and deal with shitty ass ppl tomorrow :),0 +ack.. doncha hate when it happens like that tho.. Its been killing me here..,0 +I can give you some tips on how to slut it up if you'd like.,0 +damn now I'm hungry,0 +Thank god you said that-my friends think I'm a freak. Also weird-I have to wear high heels when I play drums or my foot cramps up,0 +hahahahaha ROTFL! aww that was a damn funny slip up :),0 +well mt #spokane is open 7days a week now so its the perfect time. btw i dont hate on skiers.. just talk a little shit :D,0 +I feel like a damn fool I brought two winter coats to atlanta..and for what? ITS HOT DOWN HERE,0 +please don't make me explain every time I say something to piss you off. You fall for it every time.,0 +Word they're in the way. Always grabbing the ankles and needing food/care. FUCK BABIES.,0 +Those Muggs are still kick ass though. Look! http://tinyurl.com/8ecw8m,0 +If you hate it...you may need to look for new friends in Baltimore. :),0 +that sucks. do they have free WiFi there at SEATAC?,0 +oh.. you are not even at the party yet? damn... them's good lemon drops.,0 +got the "Fail Whale" once already today... :/,0 +um...wow...tough one... Maybe two or three people? (and even then it better be for a damn good reason...;)),0 +Tell B-Mo Speed gon whoop his ass! lol,0 +sorry for your billing probs--i totally hate those sort of messes...good luck!,0 +Ifeel like a nerd saying that but its true. I've put down lawns put in bushes but they always die bcuz Ihave no connection,0 +aww that sucks...im sorry. what a way to start the morning.,0 + i fucking love ELF! ''Santa! I know him'',0 +@gblnetwkr well we'll see. They claim "adaptive charging" will keep it going for 1000 full charges. Me = guinea pig. ;),0 +Be ready? Well damn. Yes sir I will be ready!,0 +DAMN!!!!! That could take a while!......I don't think any of my groupie's would confess anything. Okay maybe ONE! Lol,0 +I HATE technology but it makes life easier. The problem is when technology messes ^. Take an online course & ur computer messes up,0 +This is the first day that it has really kicked my ass. I am DETERMINED so I am considering alternatives.,0 +I pronounce SQL: "Suckwell". PHP: "Fip" JPG: "Pig" (silent J). I also speak fluent Klingon.,0 +what if you hate wrestling jaja or dont like it... is it still good?,0 +Fuck that I have had some gin some vodka and I think Andrew got me rum and coke.,0 +fuck off and die! Thought I would counteract your enthusiasm.,0 +Ok you figured me out. DAMN!,0 +Have you tried "Out of Africa?" Fun S. African food in Sugar Land. Location sucks...check it out before it's gone.,0 +Besides if you can hate something great like Rush I can hate something horrible like John Stockton.,0 +lochness: yea he did a good job of getting shunned if not his ass kicked for sometime,0 +Hope you're not getting a full fluoride. Hate that. Good luck!,0 + Santa is Italian. It's a fact (the pasta made him fat like me),0 +psh I better be getting a damn good tip!,0 +LMAO. Vista isn't that bad. I did hate it but on this computer I love it. You just need a faster laptop. Still using my n ...,0 +Get your ass home LOL,0 +he was so fucking cute this morning! I didn't want to leave :),0 +How sweet...Glad I could step up and be the the ass this morning!,0 +Is the xbox controller involved in that to-do list? If so I'm jealous. Damn you productivity!,0 +that's why there's the phrase "kick more ass" exists.,0 +even worse :-( you like them more..fucking tits and what not,0 +Damn missed the first half-hour and we don't pick up Film4+1. :( Will have to content myself with Family Guy instead.,0 +Damn! That gets rid of the badge but the name still stays! Oh well thanks for the tip!,0 +hate when that happens..glad you guys are getting settled in,0 +Goes for lawyers too! "This is why they hate us we're only as good as our worst.",0 +damn I cant get it then I dont wanna upgrade to 2.2 cuz then I lose my jailbreak,0 +it was a coded message to the world that her music sucks..or maybe corey hart?,0 +Well I'm not sure how the thing is in my finger but there was some drinking on a cold cold cold roof and I got emo.,0 +I'd bet a tasty Fucking Twix (TM) that such fanfic exists...only it's fetish slashfic involving the Guardian of Forever.,0 +that sucks...there are however some decent comic shops in dallas. and MANY half-price books. mecca for cheap trades.,0 +yes mixed my own margaritas with freshy squeezed lime juice! They kicked ass!,0 +I blogged about my fail whale loyalty last night! on http://refinedgeek. com,0 +ahh damn. Im babysitting at my neighbors now. Are yall staying in town or going back to the city after?,0 +interesting concept but I agree with @couture freak i don't think that's beneficial to u.,0 +well i havnt got any hate mail from mcr yet so i dont think they mind.,0 +I hate getting confused lol.,0 +Thanks very much! It was a lovely day. Getting older sucks less than I was led to believe. :-),0 +that sucks @krkipp99 plays this game called cube crash that she really likes. You should check it out.,0 +the thing that sucks is if i did not have to work today i really could of slept in because the kids are gone,0 +@ryan_b yup. the design sucks. I wonder if Chris Bangle had anything to do with it. LOL. (joke for the purests out there),0 +I hate when my internet connection messes up. I am glad yours is working better now. :-),0 +Yeah this is what this fucking show always does to me. This setup should be cool but I know -- know! - it will suck.,0 +damn! my breath actually stopped as I thought you'd done that.,0 +i love you so damn much.,0 +HI BEST FUCKING FRIEND!! REPLY ME JAJA I LOVE YOU MOTHERFUCKER!!! MUA!! OR CK4U!,0 +http://twitpic.com/t9za - ouch! god damn Ray..that looks painful..maybe you should use a pic? lol,0 +that sucks! can you still walk around or is your balance fubar?,0 +ha! that's awsome i'm just right at prime so i'm at 4% before this drop 3.5% is pretty kick ass.,0 +I estimated how many hours it would take to redo the program added on 50% because my estimation sucks and calculated from there.,0 +LMAO......... U starting SH*T already... Ha! It's only 2:30pm there right! Oh the HATE. Well I love you dear :-),0 +to b more complete (if u r Twittering Hugh): I don't think Hugh Jackman is gay.,0 +there r things I'm happy about just not in the Xmas spirit. But thanks 4 the pity and smart ass comments.,0 +:-( it sucks running on no sleep :-(,0 + awww that sucks sir. sorry about that. at least u still have twitter :),0 +- i know right!? it's lammmeee. except i'd love her too.she's hot. and funny. you're right. i hate my life.,0 +Bitch forced me on the scale!!! She should be happy I didn't hve my glock!!!!!!,0 +I'd sweat my ass off!,0 +I srsly hate you for getting that stuck in my head. :),0 +They all live in the town in which I grew up which I hate. So I'm not sure we would get along now. Willing to give it a chance tho.,0 +yeeah i'm a youngin' it sucks. i'm on the quest for a good one. no luck yet though,0 +ugh aj is a fucking douchebag. he was wasted of course and just really obnoxious. they weren't bad but they weren't good=/,0 +yeah i dropped by on the way home. Sucks man! But you can tell they were amateurs,0 +I hate that. I want people to be healthy...but CLEARLY not when it's an inconvenience to me.,0 +Overanalying stuff. Case in point the reviews for Hot Rod. I lov it "they" hate it. But it's different strokes for differnt folks,0 +You should check this post out: What to designers hate about people in their field: http://bit.ly/F8Ld,0 +damn i missed the cupcakes!,0 +I JUST WANT THE DAMN LATKES,0 +damn. Maybe we'll just reschedule this game night since it seems too busy for people - ohhhh well! :),0 +it pretty much sucks. He really didn't wait at all with looking did he?,0 +Hmmm maybe but I hate my voice...,0 +still gettin my ass whooped on WII by mom. ur better off than I sir.,0 +Err:508,0 +I have to go to the Sprint so...oh wait do I really? But when will i have time to go during the week. Fuck me!,0 +damn! I don't pray but I hope she gets well very soon!,0 +now that damn song is in my freaking head! fuck. * does that dance again * hahaha im out night!,0 +I hate the million different windows open to chat. That's why I abuse twitter!,0 +That's fair. In the meantime may I also recommend Skinny Cow Mint-Chocolate Cones? Low in fat but high in DELICIOUS!,0 +I like your "about" section on your blog I feel like my nerd and sweetheart side clash and complement each other too!,0 +fuck ohz... im thinking about it!,0 +damn. i left kahala in the dark with a glow stick. security kick out me and my girls.,0 +the weather sucks right now,0 +my last day is 12/31. We're having a kick-ass going away party...with fireworks and everything! Come by.,0 +http://twitpic.com/tr56 - Do u all believe me now when I tell u this is the best freak show in town?!,0 +Once I reach law school I may call on you for your technical-cum-legal expertise. Law bot sounds impressive!,0 +i hate it when that happens.,0 +thanks that's the part that is so hard. Hate to see my grandmother hurting.,0 +Nope didn't sound like an ass :-),0 +So do so. Though I recommend opting out gradually over several years - relatives freak out less then.,0 +what do u wanna know? That I look like I just got caught stealing something??? I hate taking pictures.... This celeb ish is wack,0 +Ooops. I knew that! Totally did (No sarcasm). I hate typos. My fingers are a mind of its own.,0 +lmfao he's so cute tho seriously. im watching the AIR awards interviews omg so fucking cute <3333,0 +omg cum 2 short stak!1!!/,0 +That sucks. I'll be sure to bring some when I visit.,0 +should be in good company. <talking to self> "hate this wireless keyboard...",0 +Arghh! I hate being sick! I am praying for fast and full recovery with energy to spare!,0 +Damn that was supposed to be a reply. ANyway I'll have a couple more I think not sure what came out well.,0 +i also saw an anti-gay sign re: protesters,0 +that sucks. im sorry.,0 +@paulcarr @mbites re demotix/I&P post comments: the ignorant shld read some history & the knowledgeable grow some fucking balls!,0 +to damn (and dam) the spam try OtherInbox (http://otherinbox.com) now in beta. It's perfect for that kind of email overload.,0 +other than the Slowskis I find all of their ads annoying - but i hate most ads. long live DVRs,0 +Win an NBA championship w/ what team? The Knicks? Damn right! ;P,0 +Ohhh I hate when that happens... but it's so worth it if it was a great party ;),0 +And the fat crow has left the nest; repeat the fat crow has left the nest.,0 +whos fucking who?,0 +GET UR LAZY ASS OUT OF BED,0 +Make sure you update that OS. Luck bitch. T-Mo gets the gasface with their lack of a new BlackBerry,0 +Yahoo! Sports (I know...) mentioned Sergio & Travis for Hak Conley & Crittenton. Damn Jerryd still might not get PT then...,0 +Dude yer rooting around making a pig roast with no power. Who's rational? LOL,0 +OK you're swaying me. I grew up on Fat Albert too. It's all good stuff. Love to hear him say "groovy" in the 70's standup :),0 +yeah cause his dick is a different size,0 +I told you trial accounts were limited! That sucks :(,0 +You must have read Mozart and the Whale too? ASConn had Jerry Newport come to CT for a showing of the film a signing.,0 +I love fishing - but I am a loser :D,0 +as your personal stalker I will be crashing your lunch tomorrow. Um where is it? Damn stalking is hard.,0 +@indiekid you guys look like...fuck too sick to come up with anything funny. I will let your outfits do the humor for me.,0 +haha I wish. why so mac hate-y-ish?,0 +Then you should probably join the Facebook piss up group that the council stopped.,0 +Thanks for the info. But it's that fat rain that gets you really wet. I guessing Swansea only has skinny rain but lots of it.,0 +i love that movie it reminds me why i hate liberals,0 +Oh is that what they are? Is that what Magpie does? I will avoid like the plague. I hate the FB ads that they sneak into posts.,0 +@bosca Been a Geek is something I know i am proud off. A nerd I am not lol.,0 +His ass does have shrines all over the southland.,0 +hate to hear about your car. Is it the transmission?,0 +of course. It scans perfect white. But inking on mylar is a bitch for exactly same reasons as penciling on it is awesome.,0 +do you ever GET tiddly tweets? Cos I'm destined 2b drunk fault of my gay 'uncles',0 +Damn. I was there this morn.,0 +oh fuck. Christmas is next week???,0 +Staying home with my OH the pooches and the fireplace...finally! I rather hate going out on NYE so I'm happy :),0 + I have three pairs on!! having low blood sugar sucks :(,0 +only one of the best in children's musical entertainment. ;) she sings such hits as "pig on her head" & "we are the dinosaurs.",0 +So your Grandpa doesn't have a fake one lying around? That sucks. :( what are you guys doing that day will katie be coming?,0 +now THAT is really WT fat from lipo to power your car!,0 +i fucking love u too and merry christmas eve babe...i can't handle this right now i have no where to go,0 +Thanks so much for the beyootiful Christmas card - you're SO gonna kick ass in 2009,0 +I can't say for sure that the universe doesn't hate you but I've had several problems too.,0 +Just wait. It'll happen then you'll think damn. Michelle told me this would happen not I'm old. LOL,0 +it worked! I'm scared! Jail sucks.,0 +There is a theory that it eliminates neck fat through circulation. Started doing in high school. LOL. It worked! Avid tapper!,0 +that sucks they could make more if they had both,0 +i need some of that money to get some of that tryfe heatery...the freeway shit was BOOOOOOONKERS!!! you killed that damn beat fam...,0 +yesssssssssssssss...its funny cause i hate the weather...but im gettin ready to move back to michigan on tuesday where its worse HA!,0 +hahahah is he at least hot? Hahah. I can't wait to go home to see who this guy is haha. I hate creepy skeevy guys on myspace LOL,0 +Mmm...Pizza pie! You know...Papa Murphy's sounds damn good right now.,0 +Because you just stated that there is a minimal chance Zombs will invade they will now! Damn you romy!,0 +You. Your ass in TF2 now.,0 +i hate it when that happens... i exposed 2 36-exposure undeveloped rolls before argh!,0 +Nope Pho Pasteur tho I just heard that they upped their price. Xe Lua sucks.,0 +That sucks. I've escaped it so far but you're right everyone else seems to have it or getting it. I'm prolly next. Yikes!,0 +damn scott just said naughty things,0 +Asian Philosophy??? DAmn you must know how to Game the ^-^ perfectly now,0 +damn sean and scott just cuttin heads out like some slumdogs,0 +GoW2 is really your game of the year? Damn.. Mine is Left 4 Dead without a doubt.,0 +Embedding/linking WebKit is a pain in the ass... building it from source took me hours and I got 3 errors: no compile no worky,0 +Oi you. I'm no troll. I sent you one damn tweet.,0 +Hey 73% growth in eBooks. They could have been sitting FAT if they'd raise their bets there!,0 +Damn! He is like the male Rosie O'Donnell.,0 +Just the movie. @nallyo @parsonsn @umtrey Not emo I just wanted to see what the fuss was about.,0 +haha it was great... i hate how the audio lags so badly though... it'd be more fun in real time lol,0 +oh it was nothing huge it is just time for me to get off my ass and go out there and start my life. Get work in the field etc.,0 +Not sure if you saw him kissing his wife--Dick Clark moves pretty fast when he has to...,0 +It's always too early for Dick Vitale.,0 +my last tweet was supposed to be @ you. Damn twitteriffic reply system.,0 +lol. that could work... he'd only lose like $1600 a year given how often the damn comic comes out,0 +nick and nora? fuck yes. let me know when you're going.,0 +Damn I should have made some music for work,0 +mr.lydian@gmail.com. I'm not the most fun but damn it I'm something!,0 +Isn't that the evil show about the witch and her husband and the large group of gnomes? (I hate watching TV at my sister's.),0 +Really! Its price is tempting but its network coverage sucks.,0 +damn but it right it doesn't shock me,0 +I REALLY hate it when I sneeze burp and hiccup at the same time D:<,0 +hahaha did he freak out?,0 +Dr. Johnson says have some Gatorade after a soak. I hate the taste of the stuff but it will replenish your electrolytes.,0 +I don't get it with bet. I not one of those "I can't stand bet" folks but damn! Why can't they get it right...lol,0 +damn dude you stay on the road!...lol,0 +oh lots. lots and lots. although in MI sometimes you might need the whale blubber for the cold.,0 +At 4:30 in the morning I was struck with Revelations about a certain book we both know and I hate. Check your email yo.,0 +Midway sucks.,0 +Awww....me too! Are u a cheese slut like me (u love cheese + anything) or are u a cheese snob (Bergkäse Affligem anyone)? ;),0 +haha. that sucks though. if it's any comfort i had a student break some of my XLR contact mics. gotta break out the iron now.,0 +plz dont even talk about getting fat i put on @ LEAST 15 lbs its delishhhhh mad chocolate TO THE DOME,0 +I would agree with that! it would be funny if it wasn't pouring so damn much!,0 +Yes. I realized that my meter has gone from "wannabe Cool Hand Luke" to "Hulk Smash!!!" but really! C'mon! Video is my thing,0 +Yeah it sucks. They would have so much fun in the snow right now. Which I still don't want to go shovel and you can't make me!,0 +I hate it too! Mishel is going to do mine. :) She might do yours too you just have to give her cash credit cards & checkbook.,0 +problem is having more than 1860 followers it's hard not to piss someone off. i just worry it'll be someone i consider a friend.,0 +its either that or get a new car. neither of which can i afford. im at a loss as 2 what 2 do. i feel helpless n i HATE that!,0 +- Agreed snow is fine ice sucks (well and all the silly drivers on the road) :),0 +I originally made them in the grill but it's a new grill and I hate it so when I discovered they were cold I microwaved them.,0 +Fucking hell I need to train!,0 +I feel the same way. I am still full and i hate a couple of hours ago,0 +evilbeet WAKE UP!!!! HAHAA jus saw ur mesg on my phone. arent u happy that a complete retard like me is on ur side? haha,0 +I dont care if he has a right to "hate" or whatever....smart hate is great. dumb hate is boring and annoying,0 +ouch why did you hate it?,0 +next week? I'll be the biggest loser in the world until then. (what else is new),0 +what sucks?,0 +midget only refers to the length of his dick *wink Cuz I'd say that mug is about 4 feet and some change :O),0 +oh naps can be the death of your sleep real shit lol. Im gonna be up for a while my damn self :O(,0 +@nessarenee Juicee that dick gone make u masturbate. watch what I tell you.,0 +@ nessarenee I mean that was either a pad or her white dick. Shes nasty. But whats the song thats playing at the end,0 +@nessarenee @cd87 Juicee I should leave your ass tellin' our business like that *rolls eyes and goes back to da co-na,0 +hell naw! I don't do second chances at dick bc then if its bad that's TWO wasted nights instead of one and I do NOT gamble! Lol,0 +it is so not beneath me to shake my ass! No cameras tho plz,0 +its a little bit of both. My sister likes younger men so she can control them. Meanwhile his retarded ass just does it smh,0 +@juiceegapeach Yall the dick hit me in the eye all the way in NC. I think Im in love with a gay man!,0 +damn it I havent been sleep :(,0 +I HATE that commercial. It makes me SO mad.,0 +OK Cool I'll figure it straight out in the morning..Thank Pat! BIG FAT HUG For You!{By the Way I loved Your Portable Empire!!},0 +happy brithday dumb ass :) have a good one you AMAZING PERSON YOU ..LOL,0 +I hate the same thing talked about in 100s of blogs just slightly differently giving no extra info. Boring.,0 +Damn miss that whitney too! You getting me in the christmas spirit...I didn't even put up a tree this year :(,0 +i just hate college evryday especially...:p,0 +absolutely. i think speedy WANTS us to do homework...massive tons of homework.dang it! i hate this semester's finals!!,0 +@myownwoman407 & I DO NOT appreciate dis talk about asses *Nikki Ann snaps her fingers and sashays off showin her fab ass* LOL!,0 +Listen buddy all of a sudden you've got lots 2 say! AND u have taken the fun OUT of the oxymoron! geesh! go back 2 watchin ass!,0 +Haha okay! But since I was the total nerd in school that feels like 'talking in class' to me LOLZ.,0 +Join the club. I don't know either. LOLZ Khub jamay gee jo mil baithain gay bongay do. :D,0 +I don't know but I hate mass DMing.,0 +ha yes the $$ part would definitely be a big help! Don't you hate that?!,0 + Hate to date me; but my kids had the Big Wheel and I can still see them going down our hill on it. Sit n Spin came later. Wow!,0 +Don't you hate that! I hum a lot usually just notes; but this time of year I don't dare hear I Saw Mommy Kissing Santa Claus! Noo!,0 +man that sucks! Well here's hoping that nothing major was taken and that your day improves.,0 +@avidd werd up to nerd recharge.,0 +@madmain -- damn it -- where's a flip when you need one?,0 +i hate paying bills period lol ;p,0 +all day son all day GBG grab ya cock if ya love hip hop,0 +@RoyalPurp fuck it lemme put on some D-Block and throw on my Apricot Scrub with exfoliating beads. Saturday baby,0 +well that sucks I might be in LA at the end of this month! :(,0 +Comics version: http://en.wikipedia.org/wiki/Charybdis_(comics) I hate it when comics are dumbed down.,0 +my Prius has a 10 gallon tank.. must kick ass to live there right now.,0 +Ok dis weak iz no good. Booked all morning wit srs naps den runch wiff dat bitch miss muggles. Howes next week?,0 +why u hate twitter? Ohhhhh u ski opening day +1 +2 etc...,0 +Fuck the Atrium. That is all.,0 +I am getting brown sugar chunks and I hate that!!,0 +lok u kan cum 2 my party 2nite bu u beta not lok at me or say nothn sexual at al i actualy fel sory 4 u,0 +Wel get ur ass over here just dnt be loud guh im tipsy as hel i may get sum juic frm u,0 +GUH YES SHE TAGGED DAT ASS LOL I WAS LIK DAM THEN ANGIE POP UP LOKN KRAZ,0 +I TOLD UR ASS IL BE HM 2MORW NOW GET AT ME LATER HOLLA LIT BITCH,0 +lmao you lie....major please? I'm always in a damn sewing lab til they kick me out...I guess you will be my new fake bf LOL,0 +no sadly i'm ps3 :( ...i was thinking the same thing last night...damn non-interoperability,0 +I hate public restrooms. 'Specially this one: http://graphics1.snopes.com/photos/arts/graphics/toilet2.jpg,0 +I've been drinking orange juice water eating crackers...my body just hates me. doesn't help my immune system sucks.,0 +lol. ass. I'm doing ok. Get my stitches out tomorrow. Hopefully be 100% in another week.,0 +damn that sounds like my kinda schedule..you coming here first right.?,0 +I just seen the commercial for that nasty ass chicken sandwich with ham topping you ate today.,0 +oh no that sucks no computer,0 +damn man im sorry to hear that...going to buy a mac now?,0 +PUT YOUR FUCKING PANTS ON,0 +Actually the problem is fucking ATI. They suck. I'm gonna do this swap then try to get an nvidia card.,0 +billy mitchell is like the chuck norris of video games... but i still hate his guts! (oops! ok i love chocolate chip ice cream.),0 + hey there! any luck with a ffffound invite? im still working on it apparently im a loser :),0 +damn - you travel a lot! see you on monday at your hols party!,0 +damn who do you work for and why?!,0 +Eventually when Trashman the stalker was arrested I got even more hate from his supporters who felt his arrest,0 +OMG! That sucks; hope you're ok!,0 +he doesn't count! @feenstra will tell me he loves it even if it sucks. You on the other hand will be honest. :),0 +I went mac in 12/2006 and now have 3 (selling 2 buying 1 more .. so net 2 by Jan I hope). I LOVE my macs and HATE my work PC :),0 +It's like 1/2 the calories and fat .. and rather NOM! Give it a try.,0 +World War Z kicks so much ass. Did you know the author Is Mel Brooks' son?,0 +damn you caught that. ;^),0 +true Vista sucks ass yet when I plug in ANY usb device that I have it works.,0 +Yeah it's bitter sweet. I see apps like Amarok and think "kick ass this will be great" then I see it has issues with syncing.,0 +ummmm no offense but 12 ounces....isnt that more than u weigh o'fuzzy guinea pig? :),0 +u are probably right tho i hate these short days =/,0 +thats not funny i never am damn it lol,0 + Yes for sure it sucks when it happens,0 +damn. ah well. Rusty and Danny are still good although Stark has been known to frequent Vegas on occasion,0 +oy. i hate dealing with technical support. those rat bastards "accidentally" hung up on me twice last night.,0 +I want a fail whale tee shirt!,0 +forgot to mention because u were not at work yesterday peeps assumed it was because of gay day HA! u picked a fine one to be out!,0 +that was orgasm lipgloss and the matching blush. liner in moracco. i dont recall the rest. P.S. female trouble sucks!,0 +holy sh** Im tired from reading ur shopping stops. How big of a family you have?Damn!,0 +OJ seriously needs to get it together ..karma is a bitch though caught up to him~,0 +no one is trying to look like a freak ..well only behind closed doors. Bras over 36 look like grannie going to disneyland,0 +(First Rule of Ass Club) .. *hehe* ... Nobody talks about ass club.,0 +looks like twhirl's got whale-itis. i am unable to log in from my office mac too.,0 +Re holidays prices going it - all of your reasons are valid but the real reason is because they hate me,0 +@kathynewman Me too mash is wonderful not just tatties either carrots turnips all lovely - but I hate creamed spinach,0 +Kick. Ass. That sounds so much an incredible experience :-),0 +TOTAL DICK. Cell phone,0 +FUCK YEAH....spencer?? Will you be there? @xdeartragedyo i'll see you at at LEAST 1 those,0 +Every true nerd knows the famous kitteh-heat corollary: If warm then cat.,0 +Throwing? throwing? Its bowling Bowling!!!! Throwing indeed! (you do realise I am getting you to talk cricket which you hate)hehe,0 +Okay now your just taking the piss right? Or maybe Link baiting. How could you not love the AFL ? Impossible!!!!,0 +aw rats-i hate to hear that about my car,0 + in my house my DH does laundry but i do the vaccuum. I love it. But i hate laundry. Its about comprise. :-),0 +I meant to drink. But man nj sucks with this.,0 +I'm just bored as fuck. Lol. I never thought I'd say this but I kinda wish the damn dog was here making noise. Lol,0 +well I need The.Perfect.Dog. b/c the kids want one and I hate cleaning up after them. Not a big dog fan!,0 +oh yes I remember you mentioning that once! I live very close to Keller. I grew up in Keller they used to hate it right?,0 +the regular size I hate the minis I always burn them,0 +I hate it. I am in the process of getting rid of it-lots of complaints from readers,0 +I threatened to shave my head the other day ;-) I hate my hair right now,0 +There is def. imprint of my ass on floor under my own bed... "Someday my prince(ss) will come"..sing it. YOU are my princess!,0 +@getaclewis spent last evening AND this morning begging for forgiveness. WHO says that to a 6-year-old? Stress sucks!,0 +Congrats! You'll have to make us a low-fat treat from it :) #fitfam,0 +I rarely unfollow unless they unfollow me first or totally ignore me. Or completely piss me off. That's happened once.,0 +Nope. Don't know. My voice sucks either way.,0 +Damn. How about nonsensical blogger? You need one of those?,0 +Aw. Thanks for the hate! I'm all warm and fuzzy!,0 +I hate on blogs? what are you saying?,0 +LOL - goodluck with that - I HATE workign on my resume. Good luck with your job search,0 +I just entered Ms. Single Mama’s Kick Ass Christmas Contest you can too http://tinyurl.com/7f2h7g,0 +Ugh. Crunch time. That sucks. Make sure you get plenty of sleep so you can wake up refreshed and ready to create again. It'll be ok.,0 +I hate fakers...reveal yourself and you got the nerve not to follow people WACK,0 +someones eye fucking is about to be cut to a minimal *snicker*,0 +they think we only ride chevys and cadillacs...damn stereotypes,0 +yo this new song is hot all verses lyrical as fuck. fred killed it,0 +Chocolate graham crackers with a scoop of fat-free cool whip! 1 WW point!,0 +Should We ask Pussy Galore? ;),0 +Pussy Galore at your service James 0007!,0 +Ready to Par-tay at Speedy Dick Clark's New Year's Rockin' Eve... will U be there? ;),0 +No pun was intended in writing Speedy Dick. :),0 +well u are pretty damn funny.,0 +yeah he did then got big again how I hv no idea. But totally agree about kicking ass.,0 +no kidding I'd hate to get my Hurricane watered down w snow as I go from bar to bar.,0 +I am sorry! I hate funerals.,0 +but damn I look good on it.,0 +damn that hurts. I agree w/ @Wolfnoma more scotch will cure all that ails you,0 +that sucks sumtimes I don't take my mind to work.,0 +@TanJa_C that might be a girl's car but it is one damn hot girl's car! It has grrr-power!,0 +I think it also helps for you to *Feel* full this way & stay away from carbs. Carbs-->Sugar ---> Fat... Stay away from b4 bed,0 +Ordering Pizza Online??? Now thats some Fat Boy shyt!! :),0 +"""Drama"" is just a catch-all word for ""things I hate about other women which they probably all hate about me too"".",0 +Saturday's are just so boring here. The day drags on. Well that sucks that you don't get holiday pay for the 24th. :(,0 +Hah been there. |: Sabi din niya she's never gonna buy me one so I'll be using my own money. Sucks |:,0 +I hate when they do that--,0 +Whatchu meen? Other people in this here country ain't talkin' like us? Well gee whiz! Damn yankees.,0 +nigga you sound like a creep ass pedophile,0 +writing is a BITCH. re-read one of my drafts- new meaning to humiliation-play. now to hump my metal-bristled hairbrush until O.,0 +sh. everytime a hot vampire movie comes out my popularity goes up. & yes it sucks. the stamp on the death of literary ficiton.,0 +Meh. I'm sorry. I hate living right now. Trade?,0 +I liked all of the anti-gay ads. There were three or four I think. I read it when I got up (read: about an hour ago) :D,0 +:D Even though they changed a little lately and now it sucks more than ever they still have the most shows.,0 +ahem. as a twat (:P) the only thing I have to say to that is: I CUNT HEAR U OVER THE BUTTHURT. WUT DID U SAY? :P,0 +u cunt tell me u did not lyk da snow,0 +aha it's just the funniest image. :P and that sucks about your xmas stuff not showing up. :/ i go insane this time of year ngl. :P,0 +oh my fuck im not the only one awake,0 +That looks nasty...ice sucks.,0 +In order not to piss off anyone w/ crappy weather I'll just say it does NOT feel like xmas/hanukkah in these parts either.,0 +mmm breakfast nachoes!!! (getting fat - good name for a tune/album),0 + Tempted to start baking cookies too. Damn the diabetes full speed ahead;),0 +yeah. Good one. U really gotta wonder what kind of freak doesn't use their own picture;) Lol,0 +heck there are stupid ass "gurus" telling their little sheep to infiltrate twitter to maximize profits.. LOL,0 +i still have that broken ass alienware laptop... alienware = over-rated imho.,0 +that sucks dude.. you should ream Apple a new one for that..,0 +keep in mind that everyone at the airport got up this morning and decided they were going to fuck you.,0 +Apparently. Ugh. Sucks that they couldn't get the music rights for syndication in the US. Or maybe they didn't bother..,0 +can't hate on that...,0 +i'm working than idk. empires? mmm northbrook court sucks sir. omg todays the first day of chanukah. bahaha,0 +fuck that!....time to go see Cassie......we're slackin man!!!!,0 +that rossi will put your ass right to sleep....I think they put nyquil in that shit,0 +Good signin stuff Tim. We have research to publish next year on sign-up process & eyetracking. BTW users resoundingly hate Register,0 +it's 60 degrees out here 2day..2days ago it was 20..global warmings a bitch.. Lol,0 +that would have ended the year off perfect. Or someone punching him in his fucking mouth!,0 +there you go...that's damn good to start. He's now branding himself but he needs not to engage in worthless "beef",0 +Wrote a song about it. Like hear it here it go: "Duck bitch Duck-I throw my left shoe out-Duck bitch Duck",0 +His ass gone fuck up his money by making retort videos. Disney ain't with that Boy...Charles is trying to Kanye his way in,0 +Yeah I doubt I can go either. Kids xmas party. I hate attending these things but oh well. Family first.,0 +aww that sucks :( I hate hiccups and that whole "scaring yourself is the cure" crap never works for me.,0 +They probably karted all over you...Kats are knwon to do that. :D All hate mail goes to...,0 +LOL! Yes all hate mail goes to rockdog@annieburltalk.com and gets read live on the air LOL,0 +Let me tell you I have lived here all my life and every year I hate it.,0 +join the club! LOL I hate the snow!,0 +re; The Happening and campy acting Leguizamo was the only one who did a good job. Wahlburg always seems so. HATE that chick,0 +think the phrase 'couldn't hit a pig's arse with a banjo' fitted somehow. But hey I've had a go ( can scythe instead mind!),0 +"""And I said I was going to SLAP your ugly ass anyhow. awwwwww what are you going to do call t ... http://shortxt.com/9ytyj2r",0 +damn sounds painful lol,0 +oh man.. that sucks sorry your feeling ill... I'm still coughing & sneezing seem's like this cold will never go away.,0 +LOL... what I like to do is get in front of them then suddenly! step on the breaks... irresponsible drivers... piss me off,0 +i am so with you on that one. i hate hunting season also,0 +Of course you realise that being a nerd is a compliment in this house . . .,0 +geez..me too but I HATE waking up this early,0 +ouch...that sucks about the ticket...it's pretty expensive now. Hopefully chiko can help u out,0 +why do you make it sound so damn delicous?!?,0 +lol oh damn for real?!?,0 +oh god I begged for that big head Rainbow Bright doll n got it lol even had the sheet set lol damn I was corny back then lol,0 +dammit ima have that shit in my head again lololast night it was stuck for a few damn hrs lol,0 +don't forget taco lol I got a damn TacoBot followin me lol..let's see chocolate xbox wii psp dunkin donuts geek lolol,0 +that's cuz my greedy ass is sippin a dunkins hot chocolate lol,0 +Resistance kicks ass!!!!!!!!!!!1,0 +I am sure I could and I respect your point of view. My actions spring from specific activity (hate racism) I've seen here...,0 +Thank you hon...got refused for a job op this week due to damn visa...all I ever wanted to do was be a citizen...not poss,0 +damn your presence is making me more wayward than usual!,0 +haha nosy :) I get it quickwitted & cute too damn somebody come take me off the markets!,0 +Damn they looked like crap last night!! I have to say that lots of bad words came out of my mouth last night! ugh Next year,0 +you know i bought a pomegranate today because of your ass! i better not get obsessed...,0 +@pajnstl yeah i guess its all the mon thru fri folks. I hate ya'll.,0 +Thanks for the follow. By the way I LOVE the mantra: "Find out what sucks & don't do that". Words to live by!,0 +Damn guestlist people. They always have a stick up their ass. But I guess being a hired DICK will do that to ya!,0 +"""Juice""? The fuck is ""juice""? I want grape drank!",0 +"""Never go full retard"" You'll see what I mean in a sec...",0 +i'm looking 4 a WOW gift 4 my gf...*sigh* i HATE buying presents 4 ppl; i never know what 2 get! MsLika,0 +i DO know her! Damn...r u worldwide or what? :-D MsLika,0 +Yup I will wait for a bit for them to get through. Deary me planes just freak me out!!,0 +I know he is prolly tryna fall back but I just wanna make sure ain't nothin happen to his ass lol. cuz usually he text or sumthin,0 +how do u know what Tip's ass looks like?,0 +WOW thats crazy. Thats sumthing my retarded ass would do.,0 +i got a blog on ozonemag.com about Pinky the pornstar trying to act like a business woman. being a slut is not a biz its a cop out,0 +that fat boy humping the pillow is not right. lol.,0 +Did this fucking work? (Who's not irritated by the blackberry shit taking forever),0 +OMG marv said he hopes my Areolas implode. now thats demented. i just made a gay website about him i didnt wish evil upon him!,0 +its not. i just wanna remind u frequently and vividly. and since i'm not talking about how gay u r...i've got "time on my side.",0 +damn party boy. I miss those days.,0 +Damn that's like my lil brother. He's 11 5"8 and 250 lbs.,0 +believe it or not a lot of people do. I've had people aruge me down & say it's not FLA. I'm like "It's on the damn license plates!",0 +no! my phone is just actin gay :-(,0 +ur invading my space! @prezzure kick his ass out starbucks,0 +Meh no high voltage just damn dirty grease. I smell like a french fry now.,0 +damn shorten isnt work here is the link http://tinyurl.com/8rkl9r,0 +I saw something about My Big Fat Redneck Wedding on TV (new show or something) -- thought of you. Aren't you proud?,0 +my bro-in-law is an eco freak (i mean this in the nicest way. No really) so i once got him a case of recycled toilet paper.,0 +The world needs to know about the Notorious Camera Whore Squirrel! D8,0 +that's awesome! We just paid one off in May ... and just took one back on. But 1/2 the paymt. But I still hate it!,0 +Lucky? I'm gonna be working my ass off!,0 +No Whale FTW! I'm liking the Struts / WebWork analogy for Rails / Merb. But then again I'm old school like that.,0 +hey... i was not talking about those bots which go around spamming. i hate those too. i was talking about query processors.,0 +oh fuck yes...how I would of loved to have seen this live,0 +damnn dude thats not cool. 3C here and raining. i hate being cold :|,0 +@dramaqueenrissa & @hannah_rae just departed for Greenville. I really hate saying goodbye :-( Praying for a safe trip.,0 +Wish you could see my parents dancing to the Beyonce Single Ladies video. Dad is flipping his hand saying 'love' 'hate' lmao!,0 +Noooo - damn that site is brilliant aswell - damn it!,0 +Damn fatboy... take it easy,0 +they have Mountain Song on GUITAR HERO? shit i have to hate that song now,0 +damn you look great in HD I mean you look great either way but ya LOL what kind of cam you use? Xoxo,0 +well thanks for sayin atleast I can hold conversation even if you was a smart ass about it,0 +it was 3 years ago I was in San Jose. Liked it but paying state income tax sucks.,0 +I hate statistics. aaargh! :),0 +The damn bitches at best buy took my damn laptop,0 +Night shift sucks...hubby was on that shift for years you never get used to it.,0 +I'm trying to find a fun place to get my baby boys first haircut...minimize the freak out :),0 +LOL I hate commercials!,0 +oh yeah I hate that stuff. My feminist side comes out big time. :),0 + sleepy ass shit...bout u?,0 +Enterprise can suck my dick too! That's bullshit!,0 +it sucks lol but merry christmas anyways <3,0 +Hibachi Hawaiian Style ... YUM ... huli huli pig 2,0 +DO IT! lol. God I hate parking lots so much.,0 +gotta love brandon! damn!,0 +mine hate me quite often as well. Feel better!,0 +this si true last time i had three w2's its a bitch man i feel your twitter pain,0 +u hate the name bob so much that ur gonna change ur name to bcbryar? lol nice,0 +hugs hugs hugs you are good we are very happy with you and love you and don't hate you.,0 +present your warty ass and I'll gobblefuck ur pink sock!,0 +thanks for the spoiler alert lady! I misquoted Jane Austin from Pride & Prejudice in that last tweet. Damn I'm good,0 +dont hate her embrace her!,0 +Oh Thanks for signing off on me Queen Rude-Bitch D:,0 +no fob tix? Damn :'/,0 +It happens. Sucks when it does though that is for sure. Glad you aren't steaming. You'll have a better day tomorrow.,0 +I just entered Ms. Single Mama’s Kick Ass Christmas Contest you can too http://tinyurl.com/7f2h7g,0 +I was supposed to be a month when we do nothing except SLEEPING unlike u i hate winters >_<,0 +uhm im just upset cuz my mom took my phone from me. i hate her yo. im 20 ALREADY! dammit,0 +Oh I hate that. What's worse is that people don't say who they are on the phone and they keep talking to you. And I'm like who?,0 +prolly not I started the damn dishwasher lol,0 +I was being a retard that day I wasn't even thinkin I was too excited to go up .3 nothches in blackberrydom...lol,0 +DAMN that kinda sucks... I'll be back on jan 2 so i wont be @ lipservice the 29th :-( {tear} I'll vacation for both of us,0 +ew I hate software. Btw you look like a white version of that Asian kid who shot up his school.,0 +chrome is lame. No competition fir firefox. Hate to say it but even IE is better.,0 +Fuck! That just reminded me that I forgot to bring back the bagels from my grandma's!,0 +hate to be a downer but there's a chance it may not even be released,0 +I feel your pain. Even more I hate activex blockers!,0 +cool i got it up and working. It's taking a damn long time tho; I'm pausing til a later date. Many thanx for the 411!,0 +haha NATALIE WAZAP ahhh damn i hav to go...my sis is forcing me off with a cane...ok not really but gtg luvya<3,0 +the office ... Damn its cold... Great Party Last night,0 +it was fucking epic. "deck the halls with something about my dick",0 +oh please do. steph is already getting tired of me saying "deck the halls with something about my dick",0 +damn lisa ..your ribs sound soooooo goooood!! I'll have to try marinating them next time.,0 +Damn thats nice.,0 +AARGH! I hate that Big Bro here @ work blocks so many sites! Now I've got to wait till I get home tonight to take a peak!,0 +That's fine I don't usually do the middle: too safe boring and predictable. I do Love So Love Me or Leave Me but don't hate :),0 +@ashleypalmero kicks ass at photography what can I say!,0 +I think they can with a kick ass stereo.;),0 +yuck! But others say it is really good for you. Hardly any fat. I almost want to become a vegatarian because of it.,0 +the epaper version sucks.. the image looks BAAAAD,0 +well i hope I will do you guys proud! As soon as I can im plopping my newly fat ass in class to learn design,0 +Aww that sucks. I can't say I'm exactly full of any holiday cheer doesn't even seem like Christmas to me. But I am quite cheerful!,0 +lmao yea Bush got that shit @ his ass lol. Neva thought I'd c a president dodge a shoe,0 +I am SO with you on the joy of sugar cookies. Just flour fat & sugar. What could be better? Nothing.,0 +lol oh that sucks but hv a safe flight,0 +loves 1 Guy 1 Cup! She just admitted her lust for it! (@kristinaking ISO man who breaks glass in ass),0 +oh man I'm having a nerd heart attack,0 +Damn! If only I lived down there! Looking to capture some weddings here...not too many when it's snowing!,0 +Working out just hurts so damn good!! lol,0 +I hate "open" themes! lol Dang I wish we had a camera club here....how hard would it be to start one I wonder???,0 +Buffalo sucks. JK. Congradulations!,0 +i hate when that happens!,0 +OMG siiiigh I'm folding. LOL! Only becuz EnTouch brought me to this old ass jam WOW >>http://tinyurl.com/44aaob,0 +damn son if my google reader ain't full enough as is between reading and writing it is a wonder how i get anything done...,0 + alive it would be erykah badu my dumd ass fainted at one of her concerts in philly. or angela davis,0 +Hello! I am cooking for my family and need to find a meat that has high fat content like Pancetta but it can't be pork. Halp!,0 +I recommend Pase Rock and Fat Jon (new album out!). Okay okay so what if you already knew all this!,0 +re: the Wu-Tang clan - do not fuck with them.,0 +I Int down with that crazy ass Rambo shit. Hahaha. How long u been in.,0 +damn! I only have 127....i fail! :(,0 +i know...and not in a good way! grrrrr I want to fuck!!!! lol,0 +that is a delicious ass! and coming from this ass fetishist..it's a big thing! :D,0 +btw you rock for the damn near 18 hours of wrestling you sent to my house,0 + Way to go on the fat loss and muscle gain! I bet it feels great to be active again! : ),0 +i think that term comes from the ppt being printed out and being a stack of paper (thus deck). but i hate it too...,0 +Damn it! Now Cody will get one before me!,0 +that sucks btw if u dont see me on xbl readd me i usually take people off after they havent been on for a while no offence =),0 +i mean he acts like he is thankful for his fans but i think its all an act cuz he sucks at giving info/directions #$%# sorry again,0 +i got bioshock for chfristmas form him yay bt it sucks i cant play it ><,0 +THEN TELL THE MAIL NOT TO FUCK WITH ME OKAY?,0 +That damn monkey. He was the end of my TV career.,0 +shake your ass show me what youre working with,0 +Damn! What are you Jordan's personal assistant? Okay I'm sorry! I won't anymore,0 +Totally lame. To be fair I've only watched it twice but that was enough for me. Moral: Your sense of humor sucks.,0 +7th Street Entry has filled in very nicely. He's got the fucking crowd in his hands molding them how he wants.,0 +aww damn so u cant even see that video i posted. i know that should would def take u back to the good old days!,0 +dont hate!,0 +@neptunegrand You are my BFFF. Cheak out the Crackberry OS some peeps really love it others HATE it.,0 +im a nerd and i embrace it!,0 +that kicks much ass to hear you say that! (or "see you twitter that " more accurately),0 +...except for software. In my experience (not nerd cache) Final Cut>Premiere and Pro Tools and Logic Pro>Cubase. Photoshop is =.,0 +But overall I just find the Mac UI more streamlined and intuitive. Still I don't love everything they do. They piss me off a lot.,0 +everybody sucks today. bleah!,0 +You have NO idea. I hate Christmas. Can't wait till it's over. Nothing but a lot of work for me.,0 +I don't hate any man but I want every fan and reporter who was humping his leg at the start of the season to reflect on the season.,0 +dontcha just hate that stuff when it happens?! It makes me feel so dumb.,0 +oh that shit is funny. the best video that dude has made. Better than dick in a box.,0 +fuck ya the trailer looks awesome. they have some sick ww2 dog fights.,0 +i'm like kyu 5000k just a beginner. I just posted one of my ass beatings on my thomasott.net blog,0 +Fuck me I just spent 15 minutes trying to think of an example and I'm coming up dry. =P All I remember is wondering to myself,0 +Damn dude... that made me laugh really really loud.,0 +quite possibly the most random and funniest twit i have seen......ever :P awwww poor guinea pig too many carrots is it!?!,0 +he did leave quickly after our neighbors woke up and yelled. he didn't get too much. but the feeling sucks.,0 +and I hate office xmas partys... but yeah ours sounds worse...,0 +feelin fat & happy!,0 +Agreed. I'm disgusted by the major corps who know damn well kids are watching and have decided they don't care slimy ads 24/7,0 +I HATE driving in this shit.,0 +HOLY FUCK!! Andy Samberg is bringing the future of music good gawd that's awesome. Also YouTube in HD hells ya.,0 +I hate sweet ham ergh,0 +- i wasn't on Twitter yesterday so a belated "for fuck's sake" from me - man what an unbelievable shitter. :-(,0 +aah so TwitOrFit.com is a Twitter/HotOrNot mashup clone. Should've seen that coming. Sucks that you have to login just to vote! :(,0 +:) @NevadaGrey I just meant myspace in general sucks. Slow as hell and only thing going for it is/was music but last.fm and blip.fm,0 +tomorrow morning we get an update i am so fucking hungover.,0 +it's all about a heightened sense of self worth...if we did nothing but simple bullshit tasks all day what would we bitch about,0 +IE 6 is still big because XP is still big and IE7 sucks in XP,0 +i hate coffee...love the smell...but not the taste...i can only stomach it if it has LOTS of cream in it,0 +Blur Song 2 on fucking repeat till 6pm.,0 +Awesome can't wait to see the results. I'm going to go out and take some more in a bit.... fucking cold out there,0 +number don't lie. and yes it would take a lot to offend me. like spammers using my name. that is fucking offensive,0 +my site doesnt hate iphones it just prefers to not be seen with them in public :-) Will check/fix over my holidays. Thx,0 +fucking LOL.... that'll make them feel bad and think ur a terrorist all at the same time. LOVE IT,0 +kick ass. Also when do you get back? The world wants to know.,0 +http://twitpic.com/rthd - is that on a wall or something? why is everyone so emo????,0 +Damn that sounds good. French toast with creamy peanut butter and real maple syrup. Damn. i'm hungry,0 +Damn I'm sitting here checking the score to my Fantasy Football playoffs as you tweet that. Like you meant that to me specifically.,0 +I'm cool with darts if we still get to kick someone's ass either before or after.,0 +damn he had 5 kids. Growing up in Michigan his single was always on the tape deck.,0 +Wal-Mart tends to bring out the worse in people. I hate being there anytime during the day. Late night is another story,0 +http://dznr.org/87pa <- ass bumped the "What the heck is Unsanity doing?"-thread from march...,0 +boo that sucks. Mine was quiet for hours.,0 +as much as I hate it I can write faster by spelling wrong on the iphone :) (I was scared I'd misspelled this tweet haha),0 +damn son. CONGRATS! I got a box of hamburgers for you...,0 +uhm HI!!! Could you please get your ass to Hawaii!!! Thanks :),0 + you know encouraging cliques by not including my trees Beluga Whale & Baby Beluga in your play dates w/ my sis is bad parenting,0 +Whats the Adventure? Yeah Im Noisey Dont HATE!,0 +damn Lowkey found his future wifey go make love in the club LOL,0 +Me too. Just saw an update on the news... scary damn storm!,0 +I am still on hold with Sprint! I'm so mad!! I want to throw the damn phone away. It's been way over an hour!,0 +Am I a bitch because I'm not sad at all that it's over?,0 +So almost everything makes sense now? And I trashed the mistake. I didn't know you could 'til now. And I hate screwing up. =/,0 +THAT RABBIT IS FUCKING SCARY. I had nightmares. =P,0 +damn. in malleshwaram. will take me atleast an hr plus to get there. screw it. next time :) have a blast!,0 +:D touche! rockstars @ rockstartups. hehe best of luck wit the 2 boys throwing ideas.damn wish i was there! :(,0 +stop tweeting get ur ass here and pick me up!,0 +why is cory being an ass on erik's status,0 +beans? are you kidding? i HATE beans!! seriously this is the best chili ever and i always thought my mom's was the best.,0 +LOL well u should help them get some dick...,0 +don't know what a tranny is but techno and woman I can put those two together... I really hate that word BTW,0 +sweet! playoffs should be soon shouldn't they? the season is damn near over!,0 +I'm looking forward to my son kicking my ass at chess. Will not be hard to accomplish.,0 +I especially hate the way how Apple earphones tear out the insides of my wallet.,0 +yeah all the good phones are a lot of money fuck dat!,0 +how many tests do you need you sick son of a bitch?!,0 +ah well. I was shredded long before I walked into the game. I should be drinking right now actually. Flight is delayed. Sucks.,0 +same 4 u make sure yo ass is up,0 +shit i think the damn alternator don't work I just got a fresh bat yesterday.,0 +hell yea but the midget in the cowboy suit it that homey from jack ass?,0 +jerk! troll! don't hate.,0 +you can try to smack me. but i'll round house kick you in the throat then shank your ass with a rusty knife.,0 +i'm not an asshole i'm a bitch THE BITCH!! get it right or i'll kick you again...,0 +girl...I just did a post on that damn snuggie...I'm so mad that I didn't think of that first,0 +I hate to admit it but raw top roman with the seasoning was a choice of snack against my moms wishes...all my friends were doing it.,0 +no not right now but im on a damn roll,0 +your actual ass?,0 +You've got to be fucking kidding me.,0 +It's even better when each time you call Trimet the miles stay THE FUCKING SAME. Grr...,0 +yup - i hate not haveing energy. Makes me impatient and crabby.,0 +damn...bird flu acting up again?,0 +oh piss ur right. well hopefully we won't make it late,0 +try McDonalds.. :P although the coffee sucks (wonder hw many outlets still serve it) net access is pretty decent..,0 +may be... but I hate them...!! cannot even imagine forgiving n forgettin..no ways..,0 +That they do. Fucking sea cows. Where do they come off?,0 +what the fuck is a google? (btw excellent application of 'my china'. double point score.),0 +don't ignore them that'd be rude. send them obcene replies like "your mother sucks cocks in hell." (C) the exorcist,0 +Wow! You sure have a freak magnet! I only have one thing to say to you:,0 +and I HATE longview Cable I would rather have sat data before I to them,0 +yes that is how you reply. Sorry Ava but I hate the Gecko. Lol.,0 +well you go ahead and have fun. i'd better move my ass to study lol. haven't really started yet.,0 +:( Damn. Did you smoke the last of your weed and forgot about the pizza cooking in the process?,0 +Damn that's just spaGROSS! I may change the name then. I thought it just had a nice ring to it. It really ain't that ghetto.,0 +maybe you should give it a go. I tell IE that I hate it everyday and recently it's been very nice to me :),0 + 17 hrs! Hah! Try it for a week like we did here in NH. Just kidding! No power sucks. Shows how dependent we are on "the grid!",0 +i want a cat. they use litter boxes instead of the fucking floor. and yes Natalie Portman is way cuter.,0 +your kitty is so fucking adorable!!!!!,0 +pretty damn good!,0 + Man that sucks.Sorry to hear hope all goes well,0 +it back safely...misssed this damn weather. I think it may be too cold to go on my date yo...,0 +hahaha we would FUCK up some autotune. mo'fos would forget about T-Pain. word is bond. real talk talk. son.,0 +dude that sucks about your laptop. I hope you get that worked out. ,0 +I hate the days when you feel like you are the worst mom ever. My therapist says they will remember the good days more though.,0 +You've finally made it obviously - only the cool kids get hate mail,0 +you used to make fun of my list for never changing next I switch it up and yet you hate (C). I can't win.,0 +#twitter showed the fail whale once since morning to me already! :),0 +hehe not easy to get a big ass alarm clock!,0 +Congrats mate! That kicks ass! You should post on the forum to encourage others :),0 +dont hate me. i cant go either. cause the tickets are ridic expensive. and all sold out except for the most expensive ones.,0 +its fucking adorable,0 +damn straight i am.,0 +Damn just realized you're moving here to Boston to work for Harmonix (rock on and congrats!),0 +Sorry that was my loser speech pathologist swallowing therapy strategies coming out LOL.,0 +I gave really good gifts... LOL. Damn the man!,0 +Last time I was on a train was in Europe in 2001 but damn if I don't think of Hogwart's Express every time I think of them now,0 +I hate input managers. I really wish there was a way to opt out of loading them in individual cocoa apps.,0 +Wow that sucks. Glad u made it home OK!,0 +It's kinda like "2% milk." Sounds great! Only 2% fat! But whole milk is 3.5% fat. Oh not such a big deal anymore.,0 +@nsakes Fucking Twitter ok can I come see it?,0 +yes something like 60db @ 23 feet so Cessna-level but damn power is good! @rockyd I won't ever not have one again!,0 +Don't worry it's free! And @Goodeye says it's got easy achievements if you're a gamerscore whore like me. ;),0 +we peak mid 90's but it's dry and daylight goes on forever (or so it seems) but winter sucks!,0 +Oh no! I hope you're okay. I've taken a tumble on many escalators in the T and it sucks every time. :(,0 +omg dude! im so sorry!! that totally sucks. is it bad??,0 +my mom said the same thing to me last week...I hate my hair right now it's terrible lol,0 +I hate those things I walk haha don't care how far it is!,0 +yeah thattttt...sucks. i wonder why those things set the alarm off hahaha hm!,0 +yeah it's terrible but tell ya the truth I'd hang any political figure from my Xmas tree I hate em all lol,0 +I don't think you'll find it on I-10 only on I-45. Hubby woke up and noticed that I haven't slept. Bah. Ambien sucks.,0 +the new FB sucks where-ever you are. I'm can barely force myself to use it.,0 +uuummm....FUCK! try again?..... http://tinyurl.com/75wwrp,0 +fuck!!! imstars. aufeminin. com/ stars/fan/ my-chemical- romance/ my-chemical- romance- 20080121-366383. jpg *take out spaces,0 +Aww man! Dat sucks. . But at least ya got something to fall back on! Now GRIND HARD! I LOVE YOUR SONGS!,0 +what sucks is shelling out dough to Microsoft for XP.. Can I even get that anymore?,0 +u always got the fly ass profile pics. im jealous :( merry xmas numba!,0 +no bike for me this AM @BrandDNA piss off damn u and ur Aussie sunshine!,0 +Yes. I've officially decided I need to be your gay best friend. Mainly cause I need consolidating for clothing...,0 +Fuck don't even get me started. As soon as I saw "Animal Fri--" I was half way to creaming myself.,0 +True True... but... you're still a whore. BUT ITS OK! I am too. <3 Although I don't think whores can have scruff.,0 +I miss you you crazy fuck.,0 +Happy Birthday Zarlom. You're my favorite cunt.,0 +"""Wiggle Wiggle""... more like ""I'm flying to your house... ripping off your dick. Then I'm going to drench it in Kool Aid."" GOT ME?!",0 +I hate it when WTM boards are down! I need my fix! ;-),0 +I'm sorry...that scene is fucking disgusting RAWR.,0 +Lol I missed this due to fail whale but I KNOW you probably were up before me...,0 +somewhat. now i know what i whiney stupid bitch Bella is. :) i got it basically for my mom though.,0 +takes alot more than a 3 hour long ass movie lol,0 +damn and i hear i go... i was all ready to get in on the joke lol,0 +theres places to eat at LA Live tho. I need to fuck with over there..,0 +so woman asked me for help to find something and I was like I'm sorry Mamn I don't work here she goes well what fucking good r u?,0 +nah i told him to text me when he gets off; i hate texting him @ work because he takes 4-> to respond! lol,0 +i hate when that happens.,0 +nothing says you love him more than wooly ass sweaters and gift certificates for beer!,0 +ha i hate rain QTpie,0 +I'm not sure I can know you anymore. Why do you hate freedom?,0 +O BITCH PLZZZ ITSAH HAIRFLIP.,0 +it's never been as bad as that first round but it still sucks when it comes back - I think I'll pour a drink ;),0 +I take that back - I am so not a whore but I would def play one on tv. Haha,0 +I really like Brad Sucks. Not to mention he's a sweetie.,0 +damn right it should! It's a mighty fine word!,0 +haha I love how much of a nerd Obama is...,0 +Oh the ONE TIME someone goes nuts on a bus...Manitoba is pretty crazy itself...fuck you Ben.,0 +That sucks...don't people have anything better to do...so sorry this happened to you.,0 +send some over my way all i listen to is those old ass mixtape shits on youtube. spongebob in bball gear,0 +following your link . Had been recommended them by a music freak friend before but never followed through. I like the video,0 +...dude I’m a producer and exporter of IP content which COSTS to make and I don’t live in a mansion. And I hate hypocrites.,0 +...fucking coded shit. I don’t watch old TV shows so I've only see the new Dr. Who the stuff since the reboot. Loving David...,0 +Good you are tracking your body fat percentage! Some people would be disappointed with 2lb but great numbers!!,0 +His name was Richard Bell and he was also a fireman who rescued 12 old people from a tenement fire. NOW who's the dick?,0 +Damn. I got bammed. Wonder how many @glark reads.,0 +I wish!.....I'll be over here in Jersey where the snow is falling.....which sucks!,0 +OH my I hate beer...I have some Francis Ford Coppola Pinot Griego making me an offer I can't refuse,0 +damn straight...if you give banks 700 billion $ and they then hoard the $ wouldn't it a better idea 2give it 2 us we can hoard,0 +I LOVE THOSE FUCKING THINGS!! bring me some! :),0 +yay!! i get to see your hot ass like next week! :),0 +but i thought every dude was a douchebag trying to fuck a pair of tits. way to not be. lame.,0 +also it's been worth it for the phrase "I'm too tall I'm too old I'm too fat and I HATE IT!" Thank you Jeremy Clarkson.,0 + DITTO! I got your Christmas present yesterday I think you will like it. (duh; like i would get it if i thought you'd hate it?),0 +already spent and it had to be programmed with a special machine. Fuck you car. But thanks!,0 +and I are getting our fat on at Zaxby's!!! Diet starts tomorrow!! in Cordele GA http://loopt.us/I0A8qQ,0 +damn pete!i havent seen u in so long iz about to send out the St. Bernards. particularly cuz they bring bourbon and such. u good?,0 +Nah high in calories. Hold on and ill send a delicious low fat picture,0 +HOT DAMN! Congratulations!,0 +the Tostitos Fiesta Bowl (man I hate corporate sponsorship in sports). Shit. I wonder if I could get work to fly me to Arizona?,0 +Thanks! But now it means we're talking about readers who hate it in the present tense ;) (Feedback quite positive overall though),0 +I heard it sucks...The effects were nice but it was a bad remake of the original.,0 +I NEED A DAMN IRONMAN IM GONNA CRY!!!!,0 +GET YOUR ASS BACK HOME,0 +I learned that making a full pot of coffee with a single serving press is a wicked pain in the ass. Ordering 8-cup from Amazon,0 +I HATE when that happens.,0 +That's your problem - fireplace sucks all the air up the chimney - only way to heat your house is to make air duct from outside.,0 +I would think he's cute but we had bats on our attic recently and I freak out about rabies and my toddler! I bet he's cute!,0 +dont hate. its coming along NICELY. me and nepa.... we're goood. :),0 +for real? That sucks. I have hosting there. You might want to trty Dreamhost. ;),0 +twitter is like elvis love it or hate it but thousands of fans can't be wrong read into it :) http://is.gd/c6VM,0 +damn nice concept! gots to check with the brother vic though...,0 +damn weird.. a friend told me the sound of the mic wasn't in the streaming though... anyway the pics are nice! hehe :),0 +So find someone who can play the violin really well... and beat his ass...? xD *slinks back into hiding*,0 +Eh... me looking at pages and pages of pictures of naked gay japanese boys isn't helping me much....,0 + got on http://openzap.com saying: Check Out Todays(12-09-08) HUGE Daily Nerd Links Post! #digg(http://ping.fm/F3AKA) #flo ...,0 + got on http://openzap.com saying: Check out todays HUGE Web Development/Design Daily Nerd Links Post! http://ping.fm/4Gnjj,0 +amusing thought... I'm not leaving my gayborhood. I love where I live. I heart gay people. Great food & shopping friendly safe...,0 +remind me to tell you about screaming at our fat naked neighbor at our old place.,0 +lol Jose I fucking love you lol.,0 +Wow! 15 degrees and no power! Definitely sucks!,0 +YES! that place has damn good Bar-B-Q. MMMMM I'm jealous.,0 +damn Vness finesse,0 +Abrams is Scorsese compared to Lucas. I'd just hate to see Trek and Wars get too similar. Plus I'd explode with fanboy jealousy.,0 +Damn the consequences.,0 +why is his best friend such a bitch? the hell is his problem?,0 +first off you knew her ass was going to become one either way she was already engaged to e married so of course she sealed the deal,0 +about damn time,0 +must do you head in having an application that relies on Twitter working. Still fail whale is less conspicious these days.,0 +I'm hesitant on breaking the seal. I made him check my balance three times & when my contract ends. Feeling guilty. Meh. Sucks.,0 +I'll spare you with horror stories. Believe me I'm a wimp now and hate those things.,0 +lulz just read bout the guy who asked u out with a prego gf what a dick he should be wit her,0 +oh I hate disappointing kids - I figure the stress of the connection starting late teaches them a lesson for next time,0 +don't hate I totally also have a creepy crush on judge alex!! he's a good looking man!,0 +I would but all I can see right now are those ass hole cockroaches. *grumbles* Sleep well!,0 +Yeah. I'm not going to go offf about how long the DN 3D remake has been in development but damn!,0 +LOL and I have missed the 12.55 as the freakin fat b*tch won't let me in! :O,0 +Baby-fat Obama. Honestly that doesn't look like the guy. But that does look like a Hawaii joint. I'm just sayin'.,0 +lol no doubt. @latinas yeah they will cut yo ass in little tiny beans,0 +I hate to sound unprofessional... But is this THEE Chino XL!? The one that shook up the industry a few years back with his lyrics?,0 +I remember and that's why I loves that ass. U make me feel special. Lol,0 +u better answer the damn phone,0 +u been on here all of 2 days and bout to pass me in followers... Damn homey!? In high school u was the man homey! @theflygirl,0 +oh THAT'S what a bro gotta do now to get a REE-PLY!? I gotta do it like that?! (My bad but Damn girl),0 +lord knows with my name Ive been called many damn variations..But ok truce..Put my Z back. U get ur slithering S's *cuts eye*,0 +confessions? i was so horny one time i used a tiny trash bag 2 fuk the block whore. and it bust!!,0 +nah the ass whoopin was serious. But I can see he didn't want me getting too "hooked" at an early age... Oowee too bad,0 +damn i didnt kno anyone still went there,0 +Pig passle?? You northern folks are a bit strange. We barbecue our pigs in the south!!,0 +morning man.. damn whenever did i update this thing.. aah 4 days ago eh.. much has happened since then *scrolling*,0 +the fuck is that?,0 +That kid sounds like such an ass and so full of himself!,0 +Damn--and it's in the 50's in upstate NY today!,0 +Damn...that's what happens sometimes though. We never know. Make every moment absolutely count. That's all we *can* do.,0 +hot damn can you give me a full rundown of that so i can let all of nashville know. ;),0 +Its a damn dirty rumour much like the one with philip seymour hoffman as the penguin. that one though i wouldnt mind.,0 +I totally forgot it was your birthday man! I wouldve called. I hope you had a killer fucking time.,0 +yes they have. any supermarket should carry it (trans fat free Crisco.),0 +And I hate godaddy's site so I'm having trouble changing it back AAAAGH!,0 +I gave up on SATC when she did what she did to John Corbett! Never liked Mr Pig I mean Mr. Big.,0 +you were first to reply with Rudolph. Did you know the dentist elf & misfit theme was really about being gay & not fitting in?,0 +Hope b/c Im a cynic & I dont xpect much from society. Therapy b/c I believe in kickg ass if screwed with :D,0 +damn what happened?,0 +i can fuck with birdwalk..cuz it's a dance beat..but that stupid yes sir..HELL NO!! eat a d*. LOL gucci bandana is aite. not hott,0 +wats wid the 3469 .. omg... u're on twitter ... U gave in to the phenomenon .. Folie a deux postponed what the fuck ???????????????,0 +my leg sucks.. I can't frickin' walk and mom is screaming at me to go all the way fopr tution even though maam said ok .,0 +the light in here sucks buy here is The Tank and wife http://twitpic.com/trf3,0 +dick and bubble gum. Thats what used to work for me lol,0 +you want me to pick ya up something? and yes that is what sucks about down at the house is there is hardly ever any food t ...,0 +Damn bro double cheeseburger with mayo? You're speaking my language.,0 +nerd glasses lol mine are sexyer,0 +was and will later when i feel like it. and you damn well i was. @MiZzJeSs i just moved back to FL from philly lol,0 +that sucks who?,0 +left and right both... damn i'm tired! how are you going back at work?,0 +Um I so want to ask but shudder to think about what the answer would be to where @melissa808 gets her "fag cream".,0 +You feel kind of stupid doing it but it worked wonders for my timing. The kids hate that I'm beating them on that one.,0 +She did indeed. Fancy joining me for a triumphant hillside piss this afternoon?,0 +fuck you and miami Jake. Its like 17 degrees out here.,0 +thanks Jen. We hate to cancel but don't want anyone having accidents trying to get there.,0 +damn that was quick. thanks! will look into height stuff but position: relative did the job.,0 +damn i'm jealous - i could really go some of those dumplings right now.,0 +Purges are awesome - unless racially religiously or gender-based. Then it so awfully sucks.,0 +*jaw drops to the floor* did you just call brendon a whore????!!! * Z snap* no you just did not. lol. he is not a whore,0 +*gasps* he hasnt done it so there for he is not a whore.,0 +you hate me now dont you??? getting a twitter isnt enough for you??? fine... *shuns*,0 +Damn it feels good to be a gangsta?,0 +but worth the cost and pain in the ass when you see all your boston pals... right?,0 +very cool! did 250 minutes of walking this week - shooting for 300 next week! have set up FB group for pig team - ru on facebk?,0 +and I'm really sorry about your friend. you're right - MS sucks in a major way.,0 +I love u too boo! Sexy ass wesleyclouden! ;),0 +thinks my Barkely impsn8n sucks but he's "a knucklehead..and isn't in my fave 5...trrrble",0 +I love the fail whale too. It's so smiley!,0 +damn dude what happened?,0 +on a crack pipe that's about it. fuck him. he was wack from day 1 don't let the radio fool u,0 +I'm movin if it's a no. Oh but I can't sell my house can I and as for getting another job well...damn I sound like Rick Spleen,0 +I'm going to fucking Florida on Friday. FUCK THAT SHIT,0 +Hmm maybe I crossed wires w/1 of you & @allisoncarter. Who called who nerd & was correct as geek? Me moving 2 fast 4 fun.,0 +agreed. Continues to piss me off too.,0 +i spent half an hour in that damn maze of roundabouts :-0,0 +No wonder Outlook sucks...,0 +It's sucks..lol cause any other time I'd be fine with 1 meal but because I cant have none it's driving me nuts..lol,0 +Nice robot post!... LOL> I hate those cheesy responses too.,0 +tell her I will wrestlher and loser gets to clean my office,0 +Can't hear that blip still in this damn line. BTW if Malicious isn't already taken let's start a band.,0 +I know Ripley lives - I don't think the others do. Sucks to be them!,0 +you're a European so stop being a bitch to @mbites or I'll stop buying your chocolate of which I once bought 22 kilos :),0 +fuck i love barry manilow,0 +hmmm I hate cats (sharp claws teeth) but like yoghurt. What to make of this???,0 +Hate to bring this up um but did you see how ur last tweet came out?,0 +am I too emo? http://snipurl.com/7rq8p,0 +cool T damn! That's funny.,0 +:( sorry..that really sucks. and right before the holidays. bah humbug.,0 +@Urban_Lindsay good find! I'm a huge fan of the Fail Whale. I'm totally buying a shirt: http://www.zazzle.com/failwhale,0 +how did you blog my own video before me? Damn you're fast!!! I didn't even finish editing the youtube info yet!!! LMAO,0 +Wow so you got hit pretty bad with bad weather too huh that sucks. Good Morning to you as well :),0 +That sucks ya Ive been waiting on this book from Amazon was suppose tpo have it in Aug. then Dec. 10th now in Jan...irritating,0 +Thanks &a Pleasant Good Morning to you :) Yes I work at noon but have alot of running to do before that I hate hectic mornings,0 +@indyank @harisn Sucks for me everytime.. Every single time.. and today the most.. :'(,0 +I totally agree. Hate it when people Tweet out every thought they consider mildly clever. That's why I dropped @guykawaski,0 +Fuck yes I do!,0 +I'd much prefer to send out my work message via twitter. I hate having to add the fluff to my emails so that no one gets upset.,0 +during my short live here i have learned to hate twam (=twitter spam) someone wrote about it http://tinyurl.com/555cqr,0 +yea! i wonder what that's all about. i'd hate it if AGAIN the highlight of the epi IS the preview we never get much more than that,0 +I always forget about Yelp but it's pretty damn useful. Thanks for the tip!,0 +Also that one's not really a vampire film it's more of an emo film. Vampires are only there for added sexual angst.,0 +sakoyo hahaha smart ass!!! laughing in my boots...hahaha...still laughing...not! Nah not sad...I dont joke like that anymore..haha,0 +dude it was your birthday? Damn you! You foiled my foolproof "never miss a birthday coz Facebook reminds you" scheme. Hpy Bthdy.,0 +used to not fucking me? i saw nikki the other night btw.,0 +I hate taking down the decs. Everything seems so bare...I'll leave my favourite robin up until Tuesday though.,0 +i want to call him disgusting but i cant :| @wordsliveinlies he's 20. @Scrappys_girl he is gay.,0 +Too-fucking-right. Im still a NIN Virgin... a VirgNin ... lawl.,0 +it is! Experimeting loads with it. I hate the uk and it's lack of things to do...,0 +ah that sucks. Yeah freshness even the word is refreshing. Anywho gotta be up early tomorrow long day at work. Goodnight!,0 +yeah more like I stood and then sat down after awhile. Hate you.,0 +@cjb2m5 I hate you both. And yes i'm in bloody England.,0 +LUCKY. fucking love Bacon.,0 +Cold sucks... =(,0 +srsly?? i hate MySpace bc it IS SO disorganized. yes fb is accumulating more apps and ads but not nearly as much as myspace,0 +The 4 major food groups are sugar salt alcohol and fat. At least the American diet is.,0 +(And damn those typos!) lol,0 +Damn straight. I just don't understand it. I was born thinking like this. I'd like to believe everyone else was too... we'll see.,0 +That sucks :-( There're 2 in Leeds that I know of. Small print also says you can use it in the House of Fraser Gap concession,0 +fuck continental!!! Though the prop plane was actually nice!!!,0 +ooooo!! Feel bad now cause you thought wrong about that. I sent my tweet in right after your nerd tweet.,0 +Not yet I hate buying a new phone now because I know that lots of new stuff will be announced in Q1.,0 +If we could cover the debt that would be one thing. But we produce nothing but fat kids and corn. We can't even make cars!,0 +I hate when that happens. Let me guess Sales and Marketing need new web reports?... :/,0 +oh yeah I hate that feeling. Especially right before bed. Have you tried booze? :-P,0 +tak to si snad ani nemel psat... ted to budu muset stahnout a hrat.. damn.. a to mam ve fronte Fallout Brothers in arms a dalsi,0 +And yes a low-fat diet will definitely help!,0 +any guy who wants to engage in a conversation about being an asshole and who calls himself a whore on his own blog is worth it.,0 +I'm just here to make sure he doesn't embellish things with those fancy-assed words of his. Good words right order my ass ;-),0 +about damn time... oh I mean that sounds great sir.,0 +dang that sucks. If i lived close i'd go help though i am not handy. mostly for moral support.,0 +Ha i fucking love it!!! ask for a feature and it's live in 5 minutes. LOL that is no longer my world,0 +I just bought him a Master chief action figure (not a doll- he says) and a light up Cortana for xmas! Nerd!!!,0 +Why do you hate America?,0 +awww damn. i was lookin forward to it. do will and rosario have crazy chemistry tho? im thinkin jada musta stressed this 1.,0 +here's a whole damn post with a scribd presentation (how many social media...)..: http://bit.ly/THmH,0 +I think you just answered your own question there. But yes I did look like a retard.,0 +I survived mass layoffs for the last 7 years. For the last 3 years we've been told we're muscle not fat.,0 +holy fuck! 5-14 ALREADY! so what does it snow everyday over there and in the summer does it rain everytday? buurrrrr i<3 N VA,0 +we are fucking cursed we started 6-2 wtf it always happends,0 +rather do it now then either mid-night or 7 o-clock in the fucking morning lol,0 +Damn. You really *are* the Craft Mafia now.,0 +sucks to be you...I have stopped traveling for the holiday's and your starting...too funny,0 +You know what's going to happen at 7:00pm central? An announcement will be made that OU still sucks. :-) (PS I think UR right),0 +I just used "my blubbery ass" in a blog post. Surely you can use "ballsy".... ;),0 +R you pregnant or Fat?,0 +haha! i'm such a nerd!,0 +I stand corrected. Actually that is why I live in Michigan. I'm a fat old guy and can't stand the heat ;),0 +fuck fox news...,0 +damn that sounds soooo good right now *jealous*,0 +AMEN to that! When I saw him on I Am Legend OMG I nearly lost my mind. I was like damn when did he get a body like THAT.,0 +O.k now it's working :( damn youtube stressing me out lol,0 +awwww! I knew those damn haters were gonna do that. Thank goodness I coped it before it was deleted. YAY,0 + I sure as hell wou'l not dat a Chlamydia. That would scare the piss outta me,0 + " Fuck Sarah Palin the political version on Sanjaya".....perfection.,0 +@panamenanegra I was talking wondering why $10 was takin so long had to go find his ass. I was on my CC so it was this...,0 +@panamenanegra gonna tell me its my fault for having a CC. WTF ? Wanted to knock is damn turban off.,0 +@kurot they hurt TAT;; I hate going to the doctors...,0 +i think he comes off better on part 2.. but he still kills pt 1 tho.. funny thing is i was in fat beats and i bought the cassete,0 +lol my bumps not thta big but i can say with so much certainty thats its definatly not in my ass :P 9 weeks to go woo,0 +damn never ever in life took a sip? lol... good times bro,0 +damn crowd response socks you every time. bukkake,0 +haha she has a nice ass also.,0 +holy schmack that sounds goooooood. why is peanut butter so damn delicious? if they had a PBJ version that would be my order,0 +glad everyone is okay. it just sucks because he was looking forward to going for so long and then something happens!,0 +LIBRARY! I AM A GEEEEEEEK NERD WHATEVER . . .HATE THE CREEPY CRAWLIES NO HOT WATER etc.!,0 +i really hate 2008 goshh so much crap,0 +wen it comes to other stuff shes so fast and then wen i ask for stuf frknn slow ass takes a month or two,0 +lol...hahahaa wht a dumb ass lol,0 +sucks to be you :) have fun regardless,0 +yeah i just don't wanna do blackberry but they may wrestle me into it just because they r kind of the best. i hate 2 admit it.,0 +i hate firefox. i'm a camino chic,0 +don't have time to review the whole thing right now but here - fucking - here. I'll take contributions to the bottom line tks,0 +it's not a bad coffee shop overall just the one in the market sucks. Slow service in a poor location for traffic.,0 +Aw don't hate on Keith. He's still smarting from that not-being-crowned-the-next-Russert thing. :),0 +That's really too bad. But don't let one silly bitch spoil your vibes. Keep catching the melonheads. :),0 +JESUS FUCKING BABY CHRIST stop twittering in all caps motherfucker. I understand you're excited well I'm not.,0 +hahaha you went from santa to elf? I know our economy sucks but don't let them demote you that quickly ;),0 +I just did the same thing. Now it's Miller time - okay Chardonnay and picture editing time but it's still *MY* time damn it!,0 +being a nerd with a camera downtown http://snipurl.com/9a5ct,0 +Oh your're working tomorrow... Well that sucks!,0 +Yeah! I hate complaining as it is a fellow soaper but plagiarism just is AWFUL!,0 +http://tinyurl.com/these-hats-are-damn-tradition,0 +Damn dude... That's why my window just broke! The EOD are on their way man! ;-),0 +i DO hate the use of the X for christmas.... altho i don't capitalize anything...that bugs people tooo... :),0 +careful with that excess student loan money -- down the road it bites you in the ass. Love an ass-bitten college grad.,0 +damn that's a really insightful way of looking at the structure and process of writing. Helpful too. Thanks. :),0 +Love them! Used to hate them with a passion as a kid but now - I can't get enough of them!! Love them.,0 +@buddhfied last week my dad pulled 3 dvd movies off my shelf: Bangkok Love Story The Houseboy and Locked Up. "Are these gay porn?",0 +the frontal nudity in Locked Up was integral to the plot and the prisoners' hotness. but not gay porn...ok maybe soft gay porn LOL.,0 +haha I'm sure there is a hardcore Locked Up. The dvd i have is a German sub-titled movie...ok gay erotica but def not hard.,0 +damn i bought the wrong one!?,0 +wow home cum I don't get dates like u get? I'm not feeling sorry for you anymore! Have fun!,0 +house cum sounds good too! :D,0 +I was too scared to read it - I hate spiders too!,0 +freak...freak...freak...there have a little more :) What's an elf ot the shelf btw?,0 +now that's the spirit and a whale of a good deed....thar he (snow) blows!,0 +I hate the Panthers man!!! My cuz is a huge Panthers fan and I love to see him suffer when they lose... Lol,0 +damn I don't wanna be him. But I am sipping good!!!lol,0 +I didn't get sad the Alaska trip got postponed until I thought about some King Alaskan snow crabs!!! Damn I really wanted some!!!,0 +You tell 'em man! ^_^ Seriously the whole country is f***ing freezing cold today. Hate winter.,0 +yes i am part but i put in PTO And put gay for my reason on slip,0 +i cant afford to call in gay i cant tell my bill collectors that,0 +I am lookin @ news in the Chi damn!!!! Stay warm n if u see my lil sis make sure she wears her coat!,0 + o agree im catching a fucking cold. it was freezind in tx now burning up in ga,0 +just got pissed off by that damn facebook crap YUCK,0 +i hate godaddy dont use them. i have my own server. @cprpoker uses a good one.,0 +Christmas is over take off the damn hat already. and i'd yell at you on MSN but twitter is open while MSN isn't.,0 +Thanks Lisa. You'd hate it here right now! It's pouring again!,0 +Hey DM me your addy...you get the can even if you don't get the job 'cause I HATE coffee!,0 +Are u serious? That sucks. Is it hard to get out of the new policies?,0 +Oh I *know* it's on purpose!! Some people hate that about ponies. I love it! Such personality.,0 +Sure hope your dog will be OK. I'll be thinking of you. (I hate waiting for the vet to call.),0 +sucks for you. its a good cd.,0 +Yea the weather sucks. And is only gonna get worse over the next two months.You're tempted to just get back on the plane? :P,0 +LOL! Yes I am such a junkie. It's a love-hate relationship.,0 +thank you for your ass!,0 +its not hate on government its hate on our existing government.,0 +dood seriously why was 70's cinema so fucking crazy? Seriously the sex tease with the boat captain and preteen boys like woah!,0 +san diego we will be in la in february is this a destination that you would enjoy? Your cock will feel awesome!,0 +I hate that. Stupid Gator fans. Making Christians look bad. :),0 +checked it out...looks like it's well on it's way to being pretty damn awesome :),0 +a frienf of mine did the mud run. Said it was a bitch showering. lol,0 +that sucks. Wish I could help u. :(,0 +I've always heard. nerd: obsessed with learning stuff geek: obsessed with a single topic (Star Trek) dork: socially inept,0 +damn way to invite me homes,0 +~ anyone w/10K followers merits kick ass tips! . ..& keep that Aloha Spirit flowin' because the mainland definitely needs it!!,0 +damn it!!!!! its is first all about me so you should totally blow off your other plans :),0 +you might have just made a discovery in cosmetics! Use dark energy to destroy fat!,0 +Hahah! I am sure she'll hate twitter for this if not me :p,0 +@hollyrhoffman It's the damn humidity! It's so hot and gross and humid!,0 +TASH! I miss ya crazy ass!!,0 +well you can only watch one at a time but we have 3 since I hate watching sd TV now,0 +this is why I hate partying with people I work with. They want to talk about work the whole time,0 +nerd. Lol. It was yummy. But its not bread. Cake :),0 +poor thing. at least you got in okay. And you didnt have to sit next to a psycho bitch for 2 hours.,0 +dont worry im not anywhere near that club 2nite..ghetto ass poetry club,0 +lol damn... im sorry?,0 +aww that sucks! Sorry to hear it :(,0 +what is that? and yes it's damn cold about 5 degrees in Mpls. At least you're in Texas stop complaining my friend!,0 +So the one that really mattered was a fail? That sucks!,0 +Lol I'm so out of it right now that when I read what you last wrote I thought you said "I'll freak with you." lol woww,0 +Damn right I do. :),0 +designing the css afterparty flier with your long ass name... its wreckin my brain.,0 +U R so damn witty,0 +...what bitch...we have too be ready for "Spring" or watever,0 +was nice finding u on the poopy smelling train..I hate being on there alone,0 +Haha thanks I was supposed to go to some parties tonight too but I need to prepare for these damn holiday meals.,0 +That sucks. My MBP came with a DVI out and a VGA adapter dongle.,0 +True. We all loved David Wells. And let's face it CC makes me look thinner. Ummm well not as fat.,0 +The radical democrats hate this choice. So theefore it must be good.,0 +damn why you on ya old lady movement?,0 +lazy ass hahaha,0 +Joydaily damn...no it doesn't...lol.,0 +Oh I meant to tell you that I hate you! You partied with Angelina Jolie? AND you didn't get her number for me? Some friend! ;-),0 +I hate you... but also loves you for giving me something to dream about tonight. ;-),0 +After about the sixth dimension that video becomes a total mind fuck!,0 +the way fat people (who want to slim) look at thin people?,0 + get the fuck out! Wtf.,0 +sorry im jus sick of the bullshit i jus freestyle spoke dino fuck off lol,0 +damn I miss high school when the sneaker game was ill,0 +...mounting comcast sucks soapbox now...,0 +I hate when it snows cuz people out here can drive!!!,0 +i hate the fact that you are addicted to twitter. but anyways lets pop imaginary prozac pills together and enjoy the holidays.,0 +don' hate on the grove...it's still quite nostalgic! lol!,0 +I think the only fight I was off on was the Griffin fight. Love that guy but damn if he didn't get totally pwnt.,0 +you know what sucks? Family. That's what sucks.,0 +no taco bell damn i lives through you they closed the one up here!!,0 +I love big bang it is hilarious..and makes me not feel lilke such a nerd. btw how is the jonas situation?,0 +that means @mamatulip isn't leaving you for the fridge? (you being the bitch that is staying),0 +I hate the FAIL meme because it's mean. FC was more funny than mean. Ps my real initials are PJK,0 +none about right now but there is a big croc hunt going on up north "Australia- where the wildlife will fucking kill you",0 +Twerp is a word that needs to make a comeback.,0 +HAHAHA! Best quote in a long time. "I'm gonna write gay porn and everythings awesome" WIN,0 +http://twitpic.com/t9za - Of fuck. I'm so happy you guys are working but don't get overworked. It does look pretty cool though.,0 +DAMN. I just lost too. Thanks Alyssa. And I decided that PATD's new CD isn't so bad.,0 +omg i wish....the bitch is kocker up as is lol,0 +this kitchen is qa bitch thus far and night,0 +did you put on nickis pants tring to be emo?,0 +i hate everything about you- 3 days grace,0 +LOL! Damn this painful shyness :P,0 +That would freak me out I hope you feel better!,0 +That sucks & they're definitely missing out! People should expand their horizons.,0 +Old fat finger type suing when I ment using,0 +I would hate to see the #text messaging bill when ever @leolaporte sends a msg. 67k followers *$0.20/txt msg = $13400.00/tweet,0 +Hey last night was kick ass good times. Forget the negativity it's meaningless. Let the good times roll =D,0 +I hate the vibrate on the Moto Q period. It is so loud.,0 +Seriously?! Damn I've got Tata Sky. :( :P,0 +Wanted to change my username -- 'v4sudh4' sucks. At least 'qbarq' sounds better than 'meow' or 'spherical cow'. :/,0 +cause every damn tweet has they name in it. i think they payin you ;o),0 +We might not get power back until Sunday which truly sucks. Thank God for hotel wi-fi!,0 +I don't blame you don't worry hes totally gay for Rodney,0 +You def have to do that...Philly Cheesteak is like no other...I can't eat it on the reg but damn they good as hell! :-),0 +Yuck! Unless you are openly gay & consider yourself 2 be a drag queen...NO MAN should ever be rockin' heels nevamind stilettos!,0 +Awww damn why you gotta remind me! LOL,0 +the worst is looking and touching the clothes and having to drag my ass out of the shop. f***. not easy.,0 +lol they did adverts for it in the middle of the afternoon and I imagined kids going 'mummy what's a whore?',0 +It was such a great time for real music great fashion & hair. Do u remember the word "Poser?",0 +Obama doesn't support gay marriage but doesn't support a constitutional ban - states choose. http://tinyurl.com/4upez4,0 +FUCK. My Iowa app is due 1/3. I have to prioritize skool stuff. I hope EC is splendid if I can't be there. QUEERDO POWAHH!,0 +those soubd so cute!! don't u luv/hate when u make gifts so well u want to keep them?,0 +i hate facebook too..i get so angry when i find myself on it...,0 +real fucking good times.,0 +I really wanted Paterson Joseph. Matt Smith looks like a bit of a dick... but quite interesting at the same time.,0 +Nothing more frosting won't fix.. and @hildebrant Gun Shots.. Phoenix. That is like Nacho's and Fat guy's.. it's a given.,0 +I had to do that the other day the bots are fucking annoying.,0 +yeah that was my general feeling the whole time I worked at Hot Topic. Going in to work was a fucking chore.I'm sure it's worse now,0 +Yeah Band of Brothers just 10 episodes? But damn they are 700Mbs each :'(,0 +Jeez dude! Who said you are NOT a big blogger? Ignore braggers. And why giving a damn about something somebody said 'online'.,0 +DAMN STRAIGHT! Give your momma a kiss for me too... and tell her that i want my sweater back o_O,0 +Lol... damn... me too... o_O,0 +Word. That's what's up. I was sippin' earlier. Only good part about the night @ this weak ass spot.,0 +Wow. Why did I JUST see this tweet? Damn son. SUPER late.,0 +Forget my loser classmate I need to go to Vegas with *you* next time (if your husband doesn't mind) :),0 +Considering your love of infrastructure *you* should speak to Nat'l Ass'n of Counties in March not Chuck Todd http://is.gd/dgF5,0 +I remember when I realized I needed to stop wearing shit from PacSun & Metropark. Getting old sucks.,0 +it's so depressing. I HATE valentines anyway. What is the equivalent 'Bah Humbug' to valentines?,0 +I hate restaurants full of couples involved people looking smug because they got a card/flowers n the pressure to be with some1,0 +Either that or you hate doing the dishes!,0 +I totally missed your giveaway...damn and i wanted that!,0 +a 14 hour nap! Gosh. That's a long ass nap!,0 +@ricksavage damn I wish I was watching elf. Instead I'm watching drunks on the dance floor,0 +thanks Steph about the Carters I don't frequent there too much I hate their sizing charts. I love "Childrens Place" though,0 +Ooo yuch! Did he forfeit his ticket? That sucks. :( Tell him to go to Argentina instead - in my opinion it's way better. :),0 +So what was the opposite of a reindeer sweater? and why do you hate skype even more now?,0 +Mine would be This Love This Hate. It was the first one I ever heard of theirs. My favorite one not on the cd is The Natives.,0 +Well I hate your phone. BAM!,0 +I would rather clean the bathroom than most any other chore as it doesn't have to be done daily! I hate dishes...,0 +it's stupid for me to be upset over really. fuck.,0 +can you please make me a dance your ass off video? Kthxbye.,0 +it would stop me listening to song so much I hate it later,0 +#NAME?,0 +that's exactly what snapped me out of my funk. she was way 2 sparkly & loved xmas. she would hate it if i was gloomy,0 +in Brit's Freakshow doesn't it sound like she says "i'm about to shave my ass?" she really says "i'm about 2 shake my ass",0 +i've been bobbypinning mine back daily. i hate stupid bangs. i don't know why i continue to think its cute,0 +I have noticed that NY is trying to slim down myself. aren't they posting all fat grams of all food?,0 +i'm not in a relationship to scare off anyone so i thought fuck it. i'm saying it. could use a baby snuggle,0 +That's funny. My GF just has too many clothes on there she says she has skinny and fat clothes and can't get rid of either set,0 +i miss you guys. munich airport sucks.,0 +nah i hate watermarks.. plus i should stop being a hypocrite though as i post things out of google image search on the regular.,0 +They don't really want it with either of us fat phonies. I'm just saying.,0 +Personally I was just thinking Fuck Chase Bank. There are no good ones. They're all snakes.,0 +nick that video is so fucking killer,0 +And I would have done it too if it weren't for those meddling kids and their damn dog!!,0 +Unless D steals your insulin again. Fuck D. _o /,0 +@jenndow @JenF80 And you call ME a twitter-whore. XD,0 +Aw. That sucks. We'll have plenty of good food wine and company for you after though.,0 +Ridiculously? Damn you beat me. I'm just Pretty.,0 +What the fuck is a _________? (Insert your govt' name in blank),0 +oh that sucks. i get yelled at for not wearing sunscreen so i just go home haha.Yeah I'm excited too. Its right in the cbd!,0 +fuck I feel bad for you. what pack did you get?,0 +oh damn. and yes I am an xmen freak. Not too big but still a freak.,0 +Oh! That's what I need. Some damn coffee...LOL.,0 +Wow that sucks. Is that even legal?,0 +WP.com? Cuz that'll get you deleted. And Google's reviewing the way they rank blogs for this very reason. They HATE it.,0 +Sounds like you hate all your classes. Be a happy teacher!,0 +Oooh! I hate it when that happens. DH to the rescue!,0 +hate to bring bad news but if your VW won't jump chances are the belt or alternator is shot. For your sake I hope it's the belt.,0 +I just noticed that they're opening for 'em. Damn I'm stupid.,0 +: No it is not. Ass!,0 +Yep we have a winner. I flaming gay winner.,0 +The one thing I miss about my valet 2nd job was the free prosciutto. Oh how I miss that salty pig.,0 +HAHA please have a huge party now...just to piss them off,0 +It happens. My body fat is down to 11.2% - so it's time to hit the weights again.,0 +I LOVE trains. But they are pretty damn expensive,0 +It is and especially because she was targeted because of her orientation. I hope they're prosecuted under hate crime statutes.,0 +I think that's generallyt true about the element of hate but some crimes aren't personal like burglary. Some like this are.,0 +I hate that song! Why is he in the store by himself? How do we know she's in the hospital and it's not a scam to resell shoes?,0 +Looked at pasteninja and think it's great. You should use Pig Latin for your translation test. Set browser to "la" for testing. :-),0 +man that is fucking sad. reminds me of how my friend with PTSD went missing after iraq homeless for 4 months in vegas.,0 +well I was a super biology nerd in high school and voted most artistic. so it was a hard decision on what I should do.,0 +yes today sucks already indeed.,0 +damn! you people like your blowtorches! i'm feeling left out... i don't even own one. =( sad panda,0 +trying not to hate you right now,0 +you ARE beautiful but i hate you cos you aren't here today and i am,0 +#NAME?,0 +Freak man I just got RIck Roll'd. But my respect for Macy's Thanksgiving floats just went way up.,0 +But Vader had a cool clubhouse... tils his even whinier and more emo son blew it up,0 +Jebus is he 2 already??? Fuck I feel old,0 +pick up the damn phone!,0 +ughh me too. And I worked for Estee Lauder throughout college and I still hate the cosmetic dept. I dont even have allergies either,0 +thank you so much for the energy!! i wish i definitely knew it was teething i hate not knowing. he just stopped sleeping!!,0 +i hate to say i use gmail to avoid deleting emails. i still have messages from '05!! but they're mostly tucked away in folders.,0 +thanks ... i'm still working for that damn six pack. when are you going to train me?,0 +i did my first 45 min kettlebell workout and it kicked my ass! i was inspired by your blog. thanks :),0 +Yeah I would have fucking killed some one if I hadn't saved it. Still 400 DPI is way to high for my computer.,0 +Windows Mobile sucks!,0 +damn you're right... we do hate Windows :),0 +oh noes! damn elves,0 +honest wud be better... to be true.. now i hate that post..,0 +stick with it sanj get's more useful the more you use. Don't follow this dick's example: http://tinyurl.com/6xe883,0 +Oh ok! Well I'm gonna be damn busy for the next 6 months as I need to work day & night to expand my online thingy. Good luck!,0 +It's damn boring. Stay away from that movie and watch The Day The Earth Stood Still instead!,0 +Anyways I give a damn! If they are acting like snobs I can't help it.,0 +Yes I remember telling you that. It was not easy but I worked my ass off all these months optimizing my work for this day!,0 + :O andrew u loser u have no life :P lol but i m gonna try to beat u,0 +hows ur weekend amber?mines boring as FUCK!shit i want an @reply from Gabe..that's all i ask.shit i'll just send u a message,0 +well idk if that will even do any good.can u stop by here?PLEASE?!!oh he'll reply to d/a's that bitch but not to me?...,0 +don't worry my English sucks too! Thanks!,0 +I know Bruce Springsteen fucking RULES HE'S THE BOSS,0 +It is always a pain always takes longer than you expect. I hate waiting until Friday it means the weekend too (for me).,0 +Agreed hate the click for more. My blog is the same way need to change that. It is pretty annoying.,0 +Thanks. We're delayed about 12 hours - damn cargo! Animal skins and scrap metal I think - so I'm heading up there early Tues.,0 +Well I don't know if you have heard or not... but I hate it.,0 +damn! Threw down for the good stuff,0 +damn Riffner that sounds rly fun.,0 +Damn Shaq. Sorry 2 hear that my guy. Bless her soul & rest assured she is n a better place. My prayers go out 2 ur fam.,0 +what genre exactly? I hate going to imdb it is full of spoilers... is it like... rocky horror show ?,0 +i normally would but i go w/ my friends so i dont lose my motivation. i hate going as it is lol.,0 +I was able to view - Windows -- IE is NOT the most recent can't remember the damn #'s,0 +I agree. They'll use whatever excuse is convenient to "trim the fat.",0 +The great state of Minnesota...I am VERY jealous. Although I am not one to "complain" haha I HATE COLD!!!!,0 +haha that's funny...this stuff is ridiculous. No wonder people hate these guys.,0 +lol Pre-Monday... ain't that the fucking truth.,0 +fuck you just keep getting cooler first with the movie and now you're watching The Office good job lol :D,0 +OMG stop being so damn cool lol I wanna see Benjamin Button more than anything right now,0 +wait like Gregory House cause that would fucking kick so much ass lol,0 +I'll forgive you beth :):) it's just I'm staying home today sick which pretty much sucks hard,0 +oh well now i feel like a dick :(:( i wasnt actually angry anyway im going to bed now so i would have been ditching you lol,0 +damn well at least I got the movie thing right great movie huh? I love when comedic actors go serious,0 +oh well WTF lol add that to your list of "Stephen told me to watch" it's fucking awesome Will is amazing in it :),0 +how can you not like elf? Will ferrell is fucking brilliant in it,0 +jeez im right here how many times do i nee....DAMN i dont think youre talking about me AGAIN you need to be more accurate,0 +well i know have a reason to stay people arent ditching me due to suspicious circumstances SO GET YOUR ASS ON AIM NOW,0 +my top 5 movies right now are Banjamin Button Harry Potter 6 Watchman Star Trek (YES NERD) and Valkyrie im excited:D lol,0 +OMG I FEEL SO DUMB THAT WAS FUCKING EPIC,0 +i like the paris hilton one that one made me fucking laugh lol good job,0 +when you say you know them do you mean like personally cause that would fucking rock lol,0 +fuck you man lol they are like one of by favourite bands you should get me some free merch lol,0 +man I wish I had one too to back up my files. Oh well sucks to be me LMAO. See ya soon Peace.,0 +LOL.. yeah im routing for the british dude too! but i just wanna see how beyonce takes on a non singing role! i know u hate her!,0 +Frak the trainer. Work out w/o him. Don't quit because he's a dick.,0 +do not bitch about the temperatures while I'm up in the freezing tundra of the north or I'll slap yer pregnant ass love.,0 +I have a tray of peeled prickly pears chilled in my fridge - they are damn delicious if you pay someone to remove the pricks.,0 +and kayleigh would NOT go to her damned room. i'm exhausted and she's fucking around.,0 +Thanks ur an angel. my header is horrible I hate it but need time to make something prettier. Also gotta set up analytics,0 +Ilove my AT&Tcard. It has worked great nationwide. My Verizon card was good until the last update and since it sucks.,0 +That sucks man! What was it?,0 +Sorry for the woes but DAMN you sound GOOD!,0 +hahahah aw. i support the faux-man hate. although i tend to support real-man-hate nowadays too.... =/,0 +I know I hate that! It'd be one thing if Apple TV wasn't just a "hobby" but it is - shouldn't we all get us some HD content?,0 +Exactly! and then the french people would be mean and send us to germany because they hate americans.,0 +fuck isnt filtered is it?,0 +and who is gonna MAKE them do business together? You have to understand. Pals HATE Israelis. Wish them ALL dead.,0 +Shia LaBeuaf is dead to the world. He's probably not making any movies because he sucks.,0 +Sorry if I offended you? I just really hate Shia LaBeuaf. Sorry if I came off as a bit rude. I'm in a bad mood.,0 +I'm sure tons of people hate him. Like all but one of his movies suck. Plus. I'm a 16 year old boy. I hate everyone.,0 +I'm so mad at America. They didn't sign a law stating you can't torture gays for being gay. I was so offended. This was 3 days ago.,0 +I'd love one of your yummy jew cupcakes...not riding these days however as fat can testifies so no cupcake for me! :(,0 +@igniter Hate to say it but I can't make the convo today. Take my space for someone else.,0 +SaulRand I that group = I LOVE that group. Damn 140 character limit! LOL,0 +HAPPY BIRTHDAY DAN PANOSIAN THE SUPER QUEEN OF LOVE/HATE/POWER/SAVY/HOLLYWOOD AND CAKE,0 +perhaps i should call it that to freak the family out.,0 +i absolutely hate collections don't you??? sucky part of job.,0 +damn i need a job at your place!,0 + morning. How u 2day? Pls tell Gary we practising at 4pm 2day. I will cum early 2 pick up parcel at gatesville post office.,0 +Should have read "Don’t forget to enter my contest". But it chopped off the "est". What a whore...LOL,0 +Yeah.. :c My brother freaking sucks (in case you did not see the other message seen what I said to my other friend).,0 +WILL U PICK UP UR DAMN PHONE???,0 +oooh damn that sounds good!,0 +YOU TELL THAT BITCH SNOWSTORM NOTHING AIN'T GONNA GET YOU DOWN!,0 +That muthatrucka didn't say a damn thing 2 me bout it.I'm gonna kick him in the balls,0 +Let's see what else comes my way and then we'll see. I hate to take your gift card. LOL,0 +that rly sucks gabe. drink a lot of warm tea! it helps me when i have a sore throat but then again urs is much more srs. :(,0 +I HATE BRA SHOPPING AS WELL!!,0 +Aw that sucks. Get better soon Saurez.,0 +I hate the cold. Wish I wasn't working today either. But oh well. It's almost Christmas!,0 +Damn gurl you goin' places.,0 +Those dogs look FAT to me!! ;-),0 +eek that sucks... the floor under is going bad?,0 +- Rubacky's just too damn cute. :-) He's one of the best AMs around too.,0 +-- I'm an attention whore man. It was only a matter of time. NY > CA.,0 + @shayscene --I'm sayin'! I mean I'm a Winnie Cooper guy but Topanga was a good ass woman. Plus...the rack! Yowza!,0 +Man I didn't hate you until I found out you've been to france a few times.,0 +Hey Matt I hate to say it...... but maybe its YOU! Or do you break things just so you can be the hero.... cool idea!,0 +yearly moby dick readathon in new bedford where melville began his story of the great white whale,0 +#firstcar was a 1979 rust colored small Subaru station wagon. It was a PoS but had 4WD & a bad ass kicker speaker in the back,0 +TOTALLY!! And he's a bit too much "a capuccino of this" and "a purée of that" for my liking. The kids also seemed to hate him!,0 +Yup gypsy bitch is one of my faves from devil doll,0 +I hate the judge shows,0 +I also hate talk shows and reality tv.,0 +I don't want a car. Times like this make me glad I drive a big ass SUV,0 +I just HATE seeing that pretty face in that sqaure and those clever tweets next to it with "via web" underneath! *sigh*,0 +Madonna concert w/ @lcastinado. got here in 15 mins and got free VIP parking. Sweet-ass!,0 +It sucks when the kids are sick and it is ALL night. Worse than toothache is vomit in the middle of the night.,0 + Haha. Total poser.,0 +I hope you're right... I hate watching the Skers struggle like they have although we went through it once upon a time as well,0 +I agree with you... just hate that we're going to be hearing about it. Only hoped for their loss so Mack could move on and grow up.,0 +yo peezy... celeb status already??? I mean damn.. it hasnt even been a WEEK YET!!! Eh..I dont mind and Im sure you dont mind :D,0 +they mad that they don't grind hard enough to get signed reason why a lot of ppl hate Charles Hamilton,0 +hate is good tho free publicity ppl who hate don't realize how much good it does to the other person,0 +look at soulja boy Many Many MANY ppl hate him and constantly talk about him all that is free publicity,0 +Alos do you knwo how to change my IA username? My current one sucks + the department (MSTV) has been dispanded,0 +Hey it's still the new year here hehe( and unfortunately I'm still a smart ass). Happy New Year! I'm jealous of your trip.,0 +OMG i would have went postal on her ass. seriously,0 +aw that sucks! hope you are feeling better soon!,0 +take the damn job even if it's just a meager stipend!,0 +as long as its not ass hair you are ok!,0 +hello fellow ICM nerd : ),0 +Joe the Plumber: scofflaw activist or just another cheap-ass?,0 +are you hitting on me Now too? Damn it. Maybe I DO need my comic avatar back!,0 +damn man sorry to hear that,0 +Wow for awhile I thought I was the only one getting these poser follows... Phewwww Nightmare over. Thanks,0 +damn right! whats the point in having friends in the business if you can't get free shit from them?,0 +I'd hate to sound jaded but daft punk ruined everyone else because they could never come close. :( robot human,0 +I hate hot weather makes me want to punch people... Just because it's hot,0 +LOLI hate 'em too. I try to eat clean now and get all of what i can from lean meats. For you I know is a different case. Protein bars?,0 + I hate to admit it but you appear to be more Jamaican than I am :-s :P,0 +damn right! I don't do many things well but cheese is one of them. We're gonna release Rudolf on iTunes to try to grab the Xmas #1,0 +Damn me and my "purty" mouth! Why couldn't I have been born with an ugly one!,0 +damn it. i lost any cred i had built up with murs. @srhaber: yes love the new dcfc record!,0 +i know fuck them,0 +sorry my friend...no other team do i hate more than the cowboys...i do want jason witten to do well though,0 +O. M. G. FREAK. no offense.,0 +That's 'cause I was rolling about in it earlier. You better be getting a fuckin' skullet tomorrow. Cunt.,0 +damn that shit probably gonna be pack like a can of spam,0 +That was so. damn. funny.,0 +Blue better be your color chick. Fuck.,0 +Hah wish I could do that. Being a part of "essential operations" sucks :(,0 +You'd god damn well better be an Engineer. all I'm saying.,0 +such a hater. Damn if you want some just ask instead of bashing it.,0 +.... only got to find out how gay some people are! hahahaha!,0 +because secretly you hate yourself. ^^,0 +I hate iMovie 2008. I downloaded the older version.,0 +I don't mind using the exclamation point. It's the overuse I hate. I have some teacher friends using 3-4 after every sentence!,0 +I hate Comic Sans. I have tried for 10 years to get it out of the schools. Teachers love it.,0 +sucks man. tire* sorry spelling/grammar freak. yeah it's fantastic. wore me out though.,0 +lol. seriously? Each to their own... me I hate oysters...,0 +odd Bloxx banned worstseoblog on my system "Prohibited by URL database (Hate-and-discrimination)". GAH.,0 +LMAO. Dont you like to piss off everyone as a rule?,0 +too bad I don't want you to taste my juicy pussy.,0 +no I haven't tasted my own pussy. I don't bend that way.,0 +Dont hate your life... Friday is just round the corner... :P,0 +awww baby it's gonna be a fat bastard dinner for me on Sat night!,0 +stick with Digg Reddit sucks big time.,0 +its the fat white one. When the recession is over would buy Logitech diNovo BT KB Sweet!,0 +I love the new photo. Sexy Gay Doris Day in its own way,0 +damn u and ur single malt all i got is a blend :(,0 +:P as much as i love the holidays i hate xmas music and decorations... oh and hate snow...,0 +omg... lol i hate myself im gonna take some ambien ill catch u later :P when i wake from my coma,0 +damn... i envy ur bandwidth :(,0 +damn fwy is still all red! What's wrong with people?,0 +kick ass at the GRE today!,0 +sucks about that flu bug you are going to come down with on Thursday. Feel better!,0 +Mad? Fuck that Least Coast noise.,0 +Which you are taking to mean they would be "mandated" to teach gay marriage "as part of sex education curriculum" #TCOT ?,0 +Crazy lawsuits happen every day. God and the fabric of mankind is more powerful than gay marriage or a Canadian lawsuit #TCOT,0 +Just remind libs that Barack Obama is against gay marriage and like everything else they will follow #TCOT,0 +I hate hives. Get well soon!,0 +oh you'll get used to it. Just learn to type less. elmn8 vwls u dnt need. Oh god I feel like AIM whore...,0 +DAMN YOU.. i miss talking to u go on msn once in a while -.-,0 +BTW Gort is the fucking doomsday robot - and still manages to have greater range than Mister Reeves.,0 +- re: Conservative Leader of Manitoba - glad to know you remained polite & civil. Did you tell him @StephenHarper is a dick?,0 +#NAME?,0 +- you bitch slappin @kevinrose over da weather - LOL,0 +fight it sweetheart i would hate for you to lose that beautiful voice to smoking,0 +I flat hate when things get "silly" like this AND it's all of a $16 000 sale on top of it. A time eater that's for sure...,0 +@Pistachio Auto-DMs are the reason I disabled text message from twitter to my phone. What a pain in the ass!,0 +That question sucks. JB played hard & consistent; KM was hard and chaotic and brilliant. I think it's a straight up tie.,0 +damn bro. Next time go partying like that holla!,0 +he he and some people bitch about never hearing back from them ;-),0 +I don't fuck wit T.O. nomore either it ain't Romo fault he can't catch!!,0 +Michigan doesn't make superstars...... just regular ass players look at Charles Woodson,0 +I'm good for a lot more than some damn pie but that's another conversation lol,0 +that's even more gay then your previous gayest statement ever made........,0 +Hate you because you're leaving or because you like Arcade Fire?,0 +I hate that UPS' delivery time is between 9am and 7pm.,0 +I get the stress jaw ache sometimes it always sucks when its there when you wake up like your body is anticipating the stress:),0 +don't hate the player hate the game,0 +The custard cream thing makes me crave some proper Bird's custard as hot as possible. Damn you!,0 +Surely it will. And damn us all! Especially Keanu!,0 +That's such balls. I wish they would fuck off and leave the BBC alone.,0 +shut up please it is too damn early for ur singing,0 +Why do you hate america?,0 +No kidding. Economy's crumbling crooked politicians violence hate and discontent... WHAT! Oprah's gained weight!!!,0 +I hate toughpads. That is why I am buying a mouse.,0 +2 Spare ass annie tracks in 2 podcasts! What a joy ;) + I love Sufjan Stevens so was great to hear one of the Xmas tracks nice one,0 +Agreed.... i mean honestly Off The Wall and Thriller.. nobody is fucking with those...,0 +that sucks. security issues I take it?,0 +I won't cheer! Do u have this "kick u in the back of the head really hard" variant? Sucks! 3rd day of ultra shittiness! Ibruprfn,0 +@MartinAndLegend I have an absess in a very uncomfortable place. Waiting on the surgeon's opinion. This sucks.,0 +NOT A DAMN THING besides him leaving his macbook pro in my car because he was to lazy to get up and get outta my car,0 +more. sucks. totally bambaffled. if yours is flat you should certainly demand a refund.,0 +Well I'm wearing underpants and a shirt. I'm not a fucking savage.,0 +Wheres the fucking egg nog brah?,0 +Damn looks like you blew up on youtube since I was banned. Grats good luck bro.,0 +Yeah that would piss me off something terrible too... But you could regift it to a young relative...,0 +That's a good point the kids in my family are already bad ass... Good yours aren't corrupted.,0 +I'm sorry i got u all involved I can't wait to see Vick's cry tonight I'm even skippin a party to see this bitch.,0 +I'm so sorry I used to hate transcribing lame interviews...,0 +Wouldn't it have been smarter for BET to do something on blacks in politics... Damn I hate that station!!,0 +Man that would be awesome- I might make a fail whale sign for moments like that.,0 +That sucks. My first account is still banned for hacking. (mate sent em to me) lost all mah games. :(,0 +Do you really think Chris Pirillo is going to respond to your question.. If he does then I'll feel like an ass..,0 + don't hate. we'll get you a present too. just turn around. :),0 +damn. Gonna miss a meet here in DC. Would be fun to broadcast one on BlogTV to those that can't make it. Have fun tonight,0 +Hate to ask a dumb question but wouldn't Twitter *already* be considered mainstream?,0 +damn I had way too much fun as usual doing our Jordan picture spam! I had great dreams on nkotb & strip poker! Lol,0 +- Yea man these big bloggers always think they are the best.. Will have to show them X-( I fking hate Big bloggers..,0 +- You know some ppl like to piss off others and today I was a victim of this X-( sad but thx for those words ;),0 +I fucking know! I bet some asshole offered more. Such a bullshit lie. And I've been waiting for packages and NOTHING!!,0 +I think it's jmo1200. I bought the tim biskup from him. He's a fucking ass >:/,0 +In WOMANIZER? I know I just saw it for the first time. She is fucking hot again. Goodness. "I'm a Slave for you" = Hottest,0 +LOL. I don't care. I'm a wise ass too :),0 +LMAO! It's so funny "bounce that ass",0 +Damn now the yurt market was my secret niche! Now EVERYONE will know!,0 +I am glad the snow turned to ice now when K Rock beats you you can take off your underwear and sit in it bare ass. Youll be sore,0 +sucks they only made like 20 of them,0 +That sounds like a plan. :) Kick ass indeed. And any beat that stands the test of time is a banger for true.,0 +Hi! Yea Hate rolling out in it but gotta do the do. You doing alright?,0 +You forgot the "magic" word: Ahem allow me... "Please fuck you..." There now.,0 +ways to kick your own ass in the gym? Bring in a coke and fries with you or wear a polyester leisure suit.,0 +@mniehaus MMS from Naples to home - had the entire family in tow. Got stuck overnight in Detroit airport. Hate that place now.,0 +meant that to be public. MindTouch and Zenoss finalists in Jolt Awards Enterprise cat. You're going down bitch! http://is.gd/clEO,0 +lmao loser that was under nda...,0 +Sounds almost as good. Original Halo was great. Next Fri night with no wife we should nerd it out with Wii Xbox & Movies!,0 +Damn good game last night Roar scored in the last minute of the 1st and then the last 2 minutes of the 2nd.,0 +Oh sweet! Sucks though that you work New Year's: my condolences.,0 +I'm taking a redo: What has two thumbs and a 4.0 GPA this semester? THIS BITCH RIGHT HERE!! *gesticulates towards self with thumbs*,0 +damn je hebt me door,0 +lol well lemme tell you it sucks ass. Once you go blackberry you cant ever go back. Unless you go iPhone.,0 +soulja boy sucks at life,0 +awe man that is going to piss alot of people off.,0 +damn it's raining here.,0 +I've put in planning for Monmouth Beach but the environment minister Andrew VanWyngarden from MGMT is a bit of a hard ass.,0 +like what the fuck is this! Then two months later it's everyones cut!,0 +I hate bleach I have sensitive skin but I fits to have my MW!,0 +I'd still be walking around with it stuck to my ass if that one kid hadn't laughed so hard when I stood up from the lunch table. ;-),0 +long piece on that on my FB page and got bitch-slapped. But I'm not interested in social networking by someone's "people",0 +That sounds about right. I hate it when the homoerotic kissing is cluttered up with TOO MUCH exposition after all.,0 +penn and teller pussy?,0 +"""Your never supposed to go full retard!""",0 +I thought the joke was funny. I hate chicks who are all like "i like to do this and that nautity deed then u get em alone and,0 +they don't do any of it. Them they try to front afterwards like "I did this and that to him last night!" I hate when chicks lie,0 +this is why I like you man...Quick thinker. Come to think of it.. I haven't seen a pic of mrs.Teacher at all.Damn thumbnail avs,0 +my mets need to chill with all that "team to beat" shit. the need to be "the team that doesn't choke on dick" first.,0 +most black shows nowadays are about bourgie ass successful black people... which is cool to see but...,0 +yeah. i peeped that shit too and left a comment. the wizard? really? damn. who DOESN'T homeboy have a mix on?,0 +sheeeeit. i'll watch shawn bradley's 9-foot-tall ass get rejected by everyone including the rim any day.,0 +see... i only seen like 10 minutes of that show. it hurts too much. i'm from the damn projects too. i know 5 000 frankies.,0 +my denny's boycott stands. fuck steve harvey.,0 +Yeah those little mutant scooters are zooming around Brisbane now too. I can't help but hate them more than normal scooters!,0 +If I could run OS X on a Toughbook you're damn sure I'd get one today.,0 +I agree. I want to marry him too. Damn gay marriage and polygamy not being legal. Grrrr. Although I'd settle for a shag...,0 +i came across some funny ass footage of u seth dae etc. the other day when cleaning my harrd drive,0 +HI! i hate packing too...lol i make my mom do it....it's alot easier,0 +I DO UNDERSTAND! I WAS TRYING TO PISS YOU OFF! AND IT WORKED!,0 +AW DAMN. NOW I HAVE TO GO TO LUNCH ON TIME.,0 +fucking awesome - I need to play that again,0 +ahhh that night was a total fucking blur! u live in ny?,0 +http://twitpic.com/vl1t - Absolutely no idea what she sees in you bro. Mia - keep kicking ass love what you're doing on your ...,0 +Firstgiving.com and Firstgiving.org are the same site - but both don't load for me at work. It's our firewall or something. Sucks.,0 +yo baby maker... Love my iPhone... Hate the auto-correct... They need to teach it "hip".,0 +Grr... having given up meat this burger talk is killing me. And God knows I hate being even remotely identified as a virgin.,0 +i think i'm hating the celtics more sorry. :| they won last year. and i hate kobe but he's a damn good player,0 +what the hell is the point of tweeting from an ipod touch if you are just going to use the mobile web interface. get a fucking app,0 +that's my dad's reasoning. i just hate the shit out of kobe bryant though. i think i'm rooting lakers though.,0 +I'm the same way! I think it's cuz they're all so damn nice when I wouldve otherwise assumed they were super bitches,0 +I spy Chrystal while they're recording behind Andys drum set. Haha I fucking love this!,0 +I so do!! When I come to visit we shalll. Woohoo! I cannot wait. =)) Love you bitch!!,0 +lucky bitch. i'm jealous. =D WE SEE HIM NEXT WEEK! OH YES. MARRY ME?,0 +go to urgent care? He does but he kissed me and smacked my ass hahaha. Yum.,0 +me to=( This sucks...,0 +that is an awesome analogy/comment because turkey bacon sucks LOL If your going to have bacon it should be real!,0 +I'll get my beer before too long... that's for DAMN sure! LOL,0 +but its a-fucking-dorable look at the bugger.,0 +Drunken twitter kicks ass!,0 +I hate when that happens.,0 +As someone who spent many years in Phoenix I think the desert creatures would freak if they saw snow.,0 +In the same boat as you lady...hate the anticipation!,0 +@elainea Nnnaaaahhh...60th follower sucks I want to be 61st!! YAY me I'm 61st!!!,0 +WHAT??! Did you talk to your attorney? What is wrong with the dog? I hate vet bills.,0 +actually i think that would be Brendon. so we would have rufus_: I hate jackhammers. Brendon: jackhammers??? cupcakes!!!,0 + but tequila lures me in...then bitch slaps me silly. Last night there was NONE of that.,0 +I would hate for my baby to have hair that is wild and unmanageable! Just come home looking like a fraggle,0 +Girl...you good. Lol at hearing your own name... Call me when you can. I'm the graduate damn it! Lol,0 +oh my god thank you. I HATE IT HERE IN CALI! Though you should wait till it gets hot. Then it sucks MORE. lol,0 +No it just got a little juvenile for me. And I hate Edward...which is a problem if you want to like Twilight.,0 +wel nt da same 4me. i follow news more than anything bt i prefer reading news papers.i hate nws chnls as they tk 2mch on phon:),0 +Damn straight Tom. If you can't do it for the lulz what can you do it for?,0 +damn! no good. have a good time man.,0 +ic that sucks though good luck then man I might be getting the iphone im going to crack it for tmobile,0 +2008 was the year I started "fucking paying attention " as one friend said I wasn't doing before.,0 +I hate that.,0 +now if only he wasn't a hate and fear mongering a-hole...,0 +I'm sure she can do some new headshots for you... Although you are neither a bride nor a bitch.,0 +yeah i want one! but fuck if i cant find one anywhere.,0 +damn that sucks that I missed her. I take it she is gone already...,0 +yeah me either... I don't even know where the damn databases are stored. Its in ASP (original style)... yay!,0 +i feel left out lol jk... being bored sucks =/,0 +SHE HAS A BIG ASS. Sistas been having big asses for ever and we get no credit for it! Kim K J-lo Vida they have big,0 +asses and it's like the whole world is like "OMG I HAVE NEVER SEEN AN ASS LIKE THAT EVER IN LIFE!" wut?!?!! Outrage! lol,0 +bro u haven't seen School of Rock??? that movie is royal ass kicker. Another one of Jack Black's awesomes. seen Be Kind Rewind?,0 +Hah next you're going to start demanding ass-grabs as payment for those Metronauts shirts.,0 +<3 Funxykins. Fuck planet earth indeed <3,0 +Hate Wall-E? Your girlfriend has no soul. EAT HER.,0 +it was fucking personalized. Damn it.,0 +tell me where you want to go. I'll be there. I'm at woofs. It sucks. :(,0 +it's ok to bitch. Just be as quick to post good stuff too. Life is too great to just focus on the bad shit.,0 +is a long-ass dinner a good thing?,0 +damn maybe i should drive up and join u,0 + Yes indeed and french vanilla ice cream in it. It's horribly calorie and fat laden but worth it!,0 +nothing to fuck up. grey hair grey eyes palest skin. just change the colors not styles.,0 +Yeah but we have Kass' weak wannabe columns. Oh joy.,0 +thanks for updating but whoever he is ask that MoFo to SHUT THE FUCK UP and nobody asked him to follow me on twitter,0 +dropping nuke and all are old trends.......tell them tht u will remove Vimax ads fom thr site if they piss u off :),0 +ur right.......just managed to lock my phone and the fucking phone now asking me PUK code:(,0 +commiserating in the flu club (mine is tummy flu) w you. def. sucks being sick.,0 +that sucks. same feeling as when a place you've been wanting to photo shuts it's doors or burns down. ugh.,0 +it's so true. using someone else's computer sucks! Sorry about yours.,0 +@graf808 Damn it you two get a room already! ;-p,0 +anytime love. hey how was that exam! i just remembered. and lol aint that a bitch re: liking people. it never seems to work right,0 +haha yeah il only be leaving this land for one "hot minute" at a time LOL. i hate that term hot minute :P aim is being wack btw,0 +fine... Here's a pic... of my grandmas fat cat. :P http://snipurl.com/93pdr,0 +we keep it utmost real. Now get ya ass to NY,0 +THANK YOU especially how they turned optimus prime basically into a big ass american flag. effects were ill tho u cant front!,0 +Welcome to the fag brigade! Sorry sorry I meant to say "Welcome to Twitter!" Is lumieru on LJ. :3,0 + I guess with a "Don't Buy - Updates soon" rating I better wait. Damn!,0 +No not ever. I'd freeze to death and I hate feeling "cold".,0 +Don't you just hate suspended people? They should be good.,0 +Local and Etsy...I'm done giving my $ to Fat Cats that produce elsewhere.,0 +don't buy it....1 study many people don't want to see solar go anywhere (fat cats)...they've been fighting it for 40 years.,0 +awesome. now getchur ass to work.,0 +yeah you should. Fucking dumbass.,0 +yep i was thinking of you when on GeekCast and talking about how much i hate inspirational tweets :),0 +i hate the "let's play introductions" throwaway day in classes of more than 5 at the beginning of a semester.,0 +o. Well then. Fuck santa.,0 +I hate that. Then they have kids of their own and they're all "Why didn't you tell me it was so hard?",0 +Oh damn. I only have one strike. But no spares!,0 +I think editorialising of news reports and blogging are not the same. I hate the first and the BBC is regular offender,0 +I thought their single wasn't that good. That's too bad it all sucks. But I haven't played out their old stuff too much.,0 +I'M GOING TO THE MALL TOO EXCEPT MY HOT TOPIC SUCKS! then we can stick those on our faces. except they're too expensive to waste,0 +I used to get pig's ears for our dog's Xmas stockings but they were too irresistible! For the dogs not me of course.,0 +Damn you I ended up ordering the damn Galactus MM I hope you are happy. When my wife bitches at me I am blaming you.,0 +I hate when it asks if I have trouble walking. How rude! ;) #wiifitenthused,0 +I signed up for Twitter over a year ago but only checked it here and there. Twitter saved my ass during the blackout!,0 +Whoa! What an idea SirJee ... But thanks. I hate kids :-P,0 +I'm not really a sneaker freak. I have some creative recreations to mtch my ed hardy ht.,0 +#NAME?,0 +hey ur guna hate me 4 dis but I forgot my phone! Keep me posted thru twitter.,0 +i have a problem i like to call desk ass. my ass gets wider the more i sit in that damn chair.,0 +@sandraknits cece is a bitch. she never wanted them to be together!,0 +hahah that'd be awesome. aaron is the hugest douche ever. does anyone else hate the way serena talks? and dresses?,0 +oh my gosh i HATE christmas music but i have to turn it up and sing along whenever that one comes on. can't help myself!,0 +OMG i hate that airport SO. MUCH. good luck! i hope you make it there safe and sound.,0 +haha you're asking the wrong person. i hate eating out! (i'm really weird) you should ask huan he's a total foodie :),0 +You are inspirational (and gorgeous) however I meant the dumb ass who dumped me to F around with his sleazy white trash LOL,0 +I want to make sure that nobody ever calls me "fat" again and that when I look in the mirror my outside reflects my inside.,0 +Good night sugar. It will get better! I'm always here if you want to piss and moan (or cry and whine). XO,0 +Scale: Brat on one side Pacer truck on the other.... Oh. Too close to call. But I must say those backward seats kicked ass.,0 +Put some damn clothes on man.,0 +Happy Fucking Birthday my Bitch! Love you!,0 +I hate that. I have no veins because of IV infusions.,0 +for some reason I never see your damn tweets. Indian larry is a clothing line. u r a nerd. sincerely me. (also a nerd),0 +Well HOT DAMN. Look at you catching up with the social networking. Next you're gonna tell me you have a Kaboodle!,0 +oh no fucking way!,0 +you should totally go. And be all weird and crazy and freak the guy out,0 +shit that sucks. sorry to hear it!,0 +just turned it on. missed part one... damn. so great anyways.,0 +We are flat broke. Ihave a year of paid hosting left on Bluehost. What can a broke ass ho do? Eh?,0 +If LiquidWeb would do that for me I'd be their BFF and Personal Whore Forevah.,0 +It's a bitch and a half but worth it.,0 +ur drunk ass needs to stop drunk twitterin,0 +lmaoooo where the fuck u ayt... I just got molested lmfaooooooo,0 +ugh that sucks! I couldn't imagine if that happened to my DVR!,0 +what's up my coffee let's call with a blocked number so I don't answer bitch? LOL,0 +omg u missed weekend update?! I laughed so hard I thought I was piss my pants,0 +it goes... Everyone at my office is sick this morning ... I have a feeling it's just gonna be me.. Damn my immune system!,0 +especially when I don't give a rats ass what he thinks about me LOL,0 +the show just seems gay overall. what man would compete to be another man's friend? the hell...,0 +fuck that...I can fly to Milwaukee to free. If u got a car i need no other plan...ALPINE HERE WE COME!!! Both shows...,0 +Don't hide that pussy from yourself. Bust that kegel nut.,0 + Damn skippay; tryna make my toes shine for '09.,0 +Breakfast Pig's Feet SWeezy? Y'all havin' Mimosas with that homey?,0 + My KEGELS can't take the archives. Fuck! Got them workin' workin' day & night!,0 +Ooh a fat girl's fantasy! Cake AND HellRaiser's trouser snake. FUCK! Sensory OVERLOAD **spontaneously combusts**,0 +I KNOW they're gay. I have HDSOV (that's "Hi-Def Smell-O-Vision" for y'all who aint up on it) & upon their breaths: I.Smell.BOOGINA,0 +Nah man no help needed right now. Just ranting about this damn shopping cart I have to debug.,0 +Great come on dude GRE sucks like hell! At least the verbal portion does. ;),0 +Man it was that damn Youtube code!,0 +@sherrieholmes @louislandon @PeteFromTheHip Thanks for the encouraging words. Sometimes I have to kick my own ass to keep moving.,0 +Sorry about ur bank trouble but all that talk about ur Curvy Ass has me way to distracted to get anything done today.,0 +eu inca ma intreb cum de mi-a fost pusa intrebarea in primul rand... :|,0 +Is Truculence his band's name? That is BAD ASS. It would make a great rockabilly band name too.,0 +idiot's a good one and so is asshat dumb shit and dick wad.,0 +back at ya Jackie! Have a fantastic remainder of 2008 and a kick ass 2009!,0 +That's some pretty heavy analysis. Seems to me the album just sucks.,0 +yeah.....then you'll never have to have any other apps running outside of FF! FUCK YEAH!!!!!!!!!!!,0 +lucky! I'm one down and three to go. A big fuck you going out to thermodynamics!,0 +nooo #TeamBlack (btw looking forward to you coming down even if I have to shower your ass w paintballs),0 +holy frack dude! I went there alone & was ass tired (mind you I was doing press tour from 7a-11p) Can't imagine doing w/kids,0 +Maybe that's why I couldn't sleep that well. I was too damn hot. The fan was on last night. I bet I have high body temp too.,0 + Soon i must brush my teeth. It's about that time. I think during the next Madonna song. Hmm but which one? Damn! I'm confused,0 +I was about to watch the news at 10 pm for the weather! Oops it's 11 pm now! LOL. I'm enjoying Madonna so damn much! Groovy man,0 + I hate when it's implied I'm not evolved enough if I dislike something. so I don't mind it in some books....but usually there's,0 +that sucks rocks. doesn't hekp much but it loads fine for me in NY. maybe it's a server issue in your neck of the woods..,0 +Thanks so much re: the video. It was a pain in the ass to make but I'm glad I did. :),0 +From what I've gathered the hate is because they're like a mainstream Christian band. And the mainstream hates Christian music,0 +Might I say that you should consider maybe Dick Clarke WANTED to do the show...it's not like he has much else to look forward to...,0 +Oddly enough I thought I would completely hate MKDC and while the story is kinda..eesh..the game play is damn near perfect,0 +do you keep getting the one with the wheel that stick? I hate that:),0 +how are you drunk bro? DAMN I.. it's only 2PM,0 +the matrix still Kicks ASS!!!!!,0 +I heart TROLLS! PHASE 2 Damn it!,0 +Grievances are to be aired during the airing of grievances not after I pin your ass. You'll have to wait until next year. :),0 +voice omg omg http://www.chrisbrogan.com is down! @CHRISBROGAN ARE YOU OK? Where's your head on a whale?,0 +everyone but not Real... I know we might win this all easy but if we don't win this - I would hate Real so much. DO NOT WANT,0 +well is has Keanu though... damn I might just watch it then...,0 +where the fuck is your journal??????????????????????????,0 +fuck I just did my flist cut and saw your name striked through - HEARTATTACK!,0 +damn yall know the crock pot stuff is funny,0 +SuperShuttle sucks PrimeTime Shuttle sucks: LAX is the only airport where the parking is worth the cost,0 +I need to write a blog post about how much I hate DM's. Off to do that be back in a second.,0 +my twitter limit is self imposed. I just know that I piss people off if I do more than a few dozen tweets. See ya later!,0 +http://twitpic.com/vbgo - thats fucking awesome!,0 +oranges fuck yeah,0 +fuck. YOU. Lost the game.,0 +Wow! So sorry your holiday was rough! I hate people being so blase about animals suffering. Sorry too about your marriage..,0 +expect a hate comment from @LH13. lol,0 +that's some kick ass hair. :),0 +i think i've upgraded to a full sugar whore. i need help. lol.,0 +LOL! i know i tried a few times and had no luck. damn my mouth! :),0 +DAMN! Oh well - I'll meet you at the next one. I think so far it's basically going to be me and a couple of others :-),0 +@hermioneway tres true. Starbucks is alright but generally i hate anywhere that does posh coffee.,0 + Kick ass as usual... Give me a shout via DM or email once you're done with the training okay? Thanks Matt. sk,0 +I am an investing idiot but I am just ignoring the whole damn mess right now. We're "buying low" now right?,0 +LOL! I'd damn near have shorts on man! Everything in life is relative I guess.,0 +And the editing sucks. You can't tell who is fighting who!,0 +Damn CARRIE of course.,0 +that's kinda dick-ish,0 +Thanks. :) Yes way cold N the house. The Bf is not a fan o heat so we don't use it. I otoh HATE the cold. Passionately.,0 +Curbed sucks! Scrubs is the greatest show ever created,0 +nooooooo!!!!! Damn streetwear parties!!,0 +sucks for you... i make impulsive statements but dare i say Joell's version > Cudi's?,0 +the trick is to not slut it up. it is to dress just under slut levels. so you get the attention but not questions on how much,0 +hate.being.cold.,0 +Yo Sissahands! Why the fuck I aint on ya top-friends jawn on myspace n that homo Ivan is??,0 +hope your feelin betta girl miss your punk ass around here!,0 +damn woulda been nice to see u. I was crashing someone elses party ;),0 +a bitch cant stand drunks tonight!! but if they tip good I might be coo! LMFAOOO!,0 +why the hell your customer tried talking shit too me! I should to just push his ass tha ground! Fuck excuse me!,0 +I miss your ass too! :0),0 +ooops that message was for your ass! LMAO!,0 +Love him or hate him He is the man soon to be leading this country. He is everybodies hope of a turnaround!,0 +re tomorrow night i'm thinking it's not such a good idea. hate to wimp out but ice is not nice supposed to hit 16F 2nite. yeow.,0 +that's hilarious: environmental sensitivity = hippie stink? i know the snow + roads in sea = bitch but it's a 1 in 30 yr deal.,0 +yeahhh… I hate milk. Plus I'm lactose intolerant,0 +Peter DeLuca i could not hate you more,0 +lol to ever since I got this twitterific I'm tweeting my ass off lol,0 +honestly I can't say I'm not guilty of telling that same lie a time or two. Karma is a bitch. Hope your check arrives soon,0 +One time I said "cunt" and all hell broke loose via DM. you'd think I'd called bush a genius I got so much hate mail,0 +WLW: Fucking marvellous.,0 +lol...Charles is exactly the wrong to hate though...he's putting in a lot of work.,0 +yeah i guess ishould start to hate Lu to give him more promo..lmao,0 +damn...it took me 2 years to finally find out how to listen to Hot 97 online ! ...thanks for the link !,0 +www.tinyurl.com this way your links wont take up all the damn space,0 +lol....damn backwards smileys,0 + She also stood on her chair and screamed "Don't pick the fat chicks from Danvers" when he was bringing someone up on stage.,0 +- Every time I see a new one of your blinkies up I'm shocked. They are so damn cute and well done. :D,0 +- Thankfully we haven't gotten any ice yet. Just a lot of rain. I hate ice. I always bust my shit.,0 +I used to hate that about doing requests. It's one of the reasons I stopped. It's not that difficult to read and count! LOL.,0 +Nice. They've cancelled ours. I ask you: how is a man supposed to get drunk and photocopy his ass at work now?,0 +Yeah I totally hate you so hard right now.,0 +I tweeted it earlier but deleted it when trying to get Tweetdeck to work. Teetdeck seems to hate me. I'm unsure why.,0 +You know I'd love to see the Bibliography or Wikipedia entry that cites your ass as a reference. We need to make this happen.,0 +My mom still thinks Twitter is 'a gay thing'. As in: "That's a thing the gays do right?",0 +I know but I hate it more when I lose a subscriber. It's like they decided they didn't like you anymore or something.,0 +im way excited to see notorious. i hope they dont fuck it up. as long as its as good as eight mile it will be a good movie.,0 +maybe it has something 2 do w/ the unemployment increase. that sucks.,0 +Ew. That sucks :( Can you take it back?,0 +I'm the total opposite. I rather gift bag they can be reused! lol Hate to see the pretty wrapping paper being thrown away. :P,0 +If I drank coffee today would be a treat day. Something sweet and full of fat. Carmel hazelnut white chocolate. . .,0 +I hate when that happens! x,0 +damn blue collar tweakers...,0 +'How to Talk to Girls'. I'm going to write a gay centred spinoff 'How to ASL',0 +I believe homophobes are terrified that they're secretly gay so they want the idea out of sight and out of mind.,0 +I know. I've been on the slaughtered team often enough to know how bad it sucks though. And these kids are the creme de la creme ...,0 +Never watched Thundercats it was actually Hard Gay HOOOOO. If you don't know him YouTube it. LOL it's great! (and not gay porn),0 +lol wow...dick in a box! I love that song lol.,0 +I swear this hour is just fucking twiddling it's thumbs as it passes. Ughhh hurry!,0 +i hate the whole factor. Wrapping and unwrapping. Christmas is just about greed,0 +Why Is He An Ass?,0 +no not bad at all just hate un endure the greed on christmas eve night cause no one waits till christmas anymore,0 +cause cleaning is such a bitch.,0 + right now I'm on this Mikkeller barley wine joint. I stepped on some crazy smoked beer I got earlier like a fucking retard,0 +dude Stef says "he is the biggest pussy on Christmas eve ever",0 + we freaked the fuck right on out of the country...,0 +just got the free iPhone one this sucks and I am new to the twitter world.,0 +Oh and Nebraska blows. Oklahoma sucks and Nebraska blows. That's why Kansas is so windy. Although it sounds very dirty.,0 +I hate all my classes. None of them are interesting :( (Classes = lessons in US I s'pose),0 +I suppose there's arrogance no matter where you go but I hate it from "chavs" most of all >:S Oh and the jocks.,0 +YES! Now All I Have To Do It Talk To The Pack... Simple Enough & Bribe Leah Damn! thats a Hard.,0 +does your dick tan too?,0 +spproductions people kept tellin me get this shit...I'm like 4 real? ok...I'm goin tell yo ass everything! lol,0 +Hate to tell you Aston went to the beach. Aston is a good beagle. Well mannered. Diva pug needs more attention,0 +Nooo combichrist DOES equal peace damn you! Oh January... Andy here I come!,0 +You were searching for an Italian? Damn! I thought you were offering services. I never get it. No Italian here. Scottish...,0 +Semi around cant promise you much action but if you post I'll reply best as I can. Sorry babe I know tonight sucks for ya,0 +Lot of folk hate process. Hope you've got management support or you'll go mad. RU implmenting an ITIL type meth or cleaning up chaos,0 +Checked out the site and subscribed on iTunes. I'll give a podcast a listen (am a bit of a podcast freak - usually tech),0 +I'd hate to see your power bill. Just about to throw on the lycra (not a great sight lol) and ride home from the office. Sleep wel,0 +Oh stop being so dramatic...you do not hate The Jets! ;-),0 +my hubby says no - he (freak) likes poodles. I like australian shepherds. So we're stuck w/ a mutt. But thx for the lead!,0 +Down here people are smart enough to not piss on an electric fence let alone do it again after being shocked once.,0 +I could see how YOU would think so but alas there is a big difference between felching and ass. The difference being the cum,0 +I do think it's a rug. If not someone tell him on top of everything else he has done his hair sucks too...lol,0 +never say never. Maybe he isn't a jerk like that loser lol,0 +eww that sucks. hopefully u have off soon?,0 +whoever u give a chance to better be damn lucky and appreciative.,0 +sweet! i sure hate i lost my anniversary edition dvd of it.....digitally remastered and just perfect,0 +My position on LA has always been that radio sucks there so would KCRW change that?,0 +Dang that sucks...Sherriff Joe been trying to get that dude in his jails for a minute...not looking good for him,0 +nice ass mr Barnes!! Lmao,0 +WOW ... that sucks - where you at .... Yeah got 2 papers to submit 2mmr - have no inclination to write those.,0 +I cant wait to go make snow angles and a fat snowman :P the little things in life,0 +that sucks - sports for women in India is a myth. My sisters are national level football players and they think so too,0 +aint nothing wrong wit a big girl...i cant stand a super skinny bitch...or is it just me... :),0 +no postsecret is still #1. But @secrettweet is pretty damn entertaining too.,0 +I know! Going to have to mix some up to bring with me I hate paying for drinks when I go out.,0 +tonight at 7 damn..we got to reschedule..lol,0 +That was meant to look more lighthearted than it did btw. Add lol or :) to it. I hate that my type always looks so bitchy,0 +@warley is a freak like that,0 +rooster fucking a football? Can I get that in avi?,0 +the birds speak to josh! don't hate! lol,0 +I don't have a link for stuff I pull out my ass buddy. Other people may but I'm what you'd call an all-natural kind of guy.,0 +divinewrite ps. How do you guys down under say "that was a Kick Ass e-book"?,0 +Coltrane video kicks some ass. I can't get text zooms and pans as smooth as yours. What prog. did you use again?,0 +it is damn cold! I'm driving by on the way to my mom in laws house!,0 +no good man it rained all damn day!,0 +Daft Punk fucking rocks,0 +fuck that blows! For how long?,0 +Coke Zero should absolutely not exist. Cherry Coke Zero is alright but I still say fuck it.,0 +I'd jam with you if you ever kicked some nobodies off your damn friends list lol,0 +Street Fighter HD better be on the store today or I'm going to freak out,0 +Stop it with that damn song,0 +oh ok. that must suck ass. I'm signing up for bid day out roadie next year. should be fun.,0 +damn couldn't tweet coz of school,0 +OMG it is a small world! I was there summer of '89. Uh oh the song now the damn song is stuck in my head.,0 +she's a fake biker chick tho I'd only B a poser can't/won't give up washing my hair & buying expensive shoes LOL,0 +But of course! I saw the work @youthassets is doing on the ground. Great woman running that org! And a damn good driver too. ;-),0 +wish to fuck I was in Philly for what sounds like a bomb ass date.,0 +I hate all my clothes at the moment too. That is why I like shoes and scarves. They always look good.,0 +tell da steroids man he looks fat.. That should do it.. Hehe..,0 +I know but I just hate people who ack like that...I wouldn't last a day on the net...LOL,0 +I agree I hate that saying about how you spend NYE is what you will do all year! It does add a lot of pressure!,0 +damn that's cold! It is going to be in the 60's here and we still haven't had a snowstorm. I want snow!,0 +lol! Girl--no matter what the situation..they are on some fuck shit...,0 +thanks mama..they damn names be too long!!,0 +loved when there would be a sandbar at ehukai! damn cold and brown honoli'i here in hilo jus aint even close!,0 +it's good to have Dick Clark on TV. It may be some people's first or only interaction with someone who has had a stroke.,0 +It is kind of silly that you can't copy text in the BB Gmail app. Not enough to make me stop using it though. :) I hate RIM's.,0 +Damn right Skippy!,0 +Yes they do. And those vehicles cost a small fortune in gas are a *bitch* to park in Manhattan and not a tenth as much fun. :),0 +Correction: *Wannabe* fashionista. :),0 +Sure is and it's about damn time too! The whole LJ server move screwed it up for a bit.,0 +Thats exactly why I am now back on the fence... damn this decision is a tough one for me this time.,0 +yeah white women can have his ass..in all seriousness.,0 +girl you late..lol that kinky ass show has been on for about a month.,0 +calm the fuck down boo..lmao,0 +im replacing it with Britney Spears - Circus. I doubt that sucks anywhere near as much as 808's or plies.,0 +I can damn near listen to his album in it's entirety without skipping..which is a good thing,0 +lmaooo he's horrid..but the WORST thing about him is he's actually a smart ass dude..I don't get him at all..,0 +the gays learned that choreography so damn quick..smh,0 +Oh that sucks. Feel for you. Glad all of mine get along. Well except for 2 of the male cats. They tiptoe around each other.,0 +I know!!! You'd better get your ass back here by March!,0 +I hate it when I do that. I blame it on too many drugs in the 70's.,0 +After three months of walking down the hall to the desk in the living room I'm completely spoiled! LOL 108 miles a day is a bitch!,0 +"""ur allllllll i neeeeeeed to get byyyy..ay ayyyy"" Luv that damn song!!",0 +Damn. That NY resolution didn't last long! lol,0 +usual but it used to piss me off.,0 +no no no. i don't really hate karl. i was just frustrated with chanel these past few weeks. now i'm back to loving mr. lagerfeld.,0 +is totally kicking my ass. If I'd known he was so smart about life I would have started going to him for $5 therapy...,0 +Clint Eastwoods best movie he was a pig farmer!,0 +LOL I mean heated SIDE mirrors!!! Damn buttonless phone O_o,0 +Damn OK I'll put up with the rain and the freezing weather for a little longer then but soon ok hee hee. xx,0 +hee hee. I got the Wii and Wii Fit for my birthday and am really impressed with it. It's great fun as well and fat burning <grin>,0 +Rick Warren is no hatemonger. Opinion doesn't equal hate.,0 +arse for king! I get mine out all the time! Hey I'm gonna be fat old n wrinkely one day! My god cider is not my friend! Or is it?,0 +"""my key don't work for the top lock"" looking ass......",0 +I don't know. I be using that SAAAAMMEE damn key!!,0 +she got yo ass spooked!!!,0 +I'm 19 mins and 13 secs away from molly wopping her ass!,0 +am using vickers online and i don't recommend it the interface sucks.,0 +The tilt looks cool. I always get the newest phones . I'm a cell phone addict or whore....,0 +oh girl you know you've been there. ;) I hate that damn pony.,0 +u just had a vacation. lol Send me the new Al Fat joint that he did when we were at the studio,0 +when they hate / sneak diss. that means you are doing TOO much. Asvice: fcuk em & keep goin.,0 +tanks for the rply have fun and a smack on your ass!!!,0 +i love your old whorey ass fukka!!,0 +someone hacked your account? that sucks!,0 +you guys need to stop w/ the gay martin sargent godaddy ads. I was glad that loser was gone but now he's back in the cheesy ads :(,0 +it's hot here...78deg w/ no wind. Damn hot hawaiian days :(,0 +ok got urz...hmmm mayb I just don't have good service here...damn Hawaii's bad infrastructure!,0 +<3 ::huggles:: nyaaaa~ its snowing T_T i hate it.,0 +I WISH I COULD! I HATE SNOW!! cuz it might cancel my drive test! >< which means no license!,0 +FUCK YEAH!!!! PARTY!!!!!,0 +THATS SOUNDS SO GOOD!!!!! FUCK!!!!!,0 +Now that's a sell - "it kinda sucks actually",0 +fuck yes.,0 +Don't fogret how hamas took over Gaza executing Fatah throwing off skyscraprs. Some palestinians hate hamas more than israel #gaza,0 +@donwill this is true. i've been obsessed with ramen for months thanks to Yvette and that damn restaurant in manhattan.,0 +I know it sucks right now doesn't it? :(,0 +thank yoooou. I'm probably going to get my ass handed to me lmao,0 +I hate to point out that the new one is much closer to the plot of the book that the first movie was originally taken from,0 +That I can understand. And because I really can see both sides it just sucks.,0 +Hey I'm sorry about the rumours. That sucks. But Erica's right you have us FCAs behind you for anything *hugs* Hope the ...,0 +woah! So suprised when i saw your updates! I always knew that you hate computers =D,0 +LOL. I personally am not ready for a finger ring. Cock ring I would do though. Thats just good times :),0 +Depends on if the cookies go straight to your ass thighs or tummy I guess. For me I definitely bake my ass on.,0 +yea today was broke. Xmas time sucks.,0 +remind me never to piss you off,0 +its accounts..... and i hate it... i cant make out head or tail of this sub!,0 +Ew. Those men.... Gemma! Have better taste! They're obviously gay.,0 +I had one the other week that didn't taste like alcohol but knocked me on my ass. I prefer not to taste alcohol.,0 +You lucky whore you. The roads weren't too bad. But we're supposed to get more snow tonight.,0 +I nominate @avflox for the #cunt award becase it just makes sense.,0 +FAIL! Get your ass back to Tesco's right away.,0 +aw that sucks baby. Just one more reason to love this snow.,0 +Did you were a nerd in high school or a bully ?,0 +"""Baby boy you only funky as your last cut. You focus on the past your ass'll be a has-what"" - Outkast ;)",0 +awwwww that sucks!! sorry!! and i'm pretty good i'ma trying to change stuff on mi profile but iz not workin so good!!,0 +Total fag unless its Jesus Christ Superstar because even crappy straight people love Superstar. Seriously. Even dudes.,0 +That last twit was supposed to be @'d at you but I did it wrong. Anyway I still love you even if you hate Ta-Dah. Srsly.,0 +I see the theory but I have decided to have a pizza and fuck off which is easier.,0 +there a famous crab house off regisitertown or was it randalltown rd.. dang i hate the fact i cant remember all the good spots,0 +almost 40 and whatever hoodsag I may have it's workin better than ever and I ain't cutting a damn thing down there.,0 +dudo your doggies are cute my aunt has a pug but it ate some of my mp3 and im just like damn so im music deprived now,0 +dudo kool that would be kick ass if u made it,0 +it is christmas eve im fucking excited,0 +Pah lazy my ass! I'm facing 6 hours of book stacking! *lol*,0 +ahh damn if u r in dublin look out the sunset is gorgeous,0 +What the /fuck/? XD,0 +I get that problem ALL THE TIME. Today I just said "well fuck that " rolled over and slept for another five hours.,0 +YOU SUNNUVA BITCH. / @TarinTowers: Only one week of spoons to go!,0 +*clings* D: Feel better damn you. <3,0 +lacey's ass is just to big considering how lil she used to be...lol,0 +Damn. I've actually reformatted the drive several times. Eventually becomes read only every time :(,0 +kicked ass this week.,0 +hate what? ohiuogdfgjnksdfgnisbgudbgubgfdgiubdbggiuhdfguihdfguihpgpuihgiudfhgjkhdghpdsfughudphypushgupghuhuhpuighghoihfdiogio,0 +It sucks (for us too at SlideShare). Hope Apple does something about it.,0 +girl I feel your pain I have a COLD 2! I want to cry :( I HATE being sick :( >sniff sniff...T sick 2...both sick,0 +briefs are oh so sexy. Boxers are too loser and unattractive and tightywhities are like panties!!lol just my 2 cents,0 +I might pass out. awful.i.hate.being.ill. hows Jane Eyre?,0 +GET your fucking act together! Can't you see what a waste you are? Look around you fucktard the world is waiting. TICK.TOCK.,0 +both husband and dad HATE football my mom and I love it my husband said "its a girl thing" last thanksgiving lol,0 +next season on the hills... more drama. LOL i hate that show,0 +in soviet russia youtube bitch meet YOU,0 +http://twitpic.com/t17d - FUCK YES!!! why so serious!! so fucking epic,0 +HOW YOU MET TWITTER BITCH!!!,0 +wings vs avs tonight. i hate the wings and the avs. oh well i'll cheer on detroit. i think i know who your rooting for :P,0 +come on man. they can still come back. they're playing against raycroft. he sucks in the third. i know that as a leafs fan,0 +This is a better Hodgman excerpt: "it is hard not to conclude that Barack Obama is somewhat tone deaf when it comes to gay issues".,0 +— I hate them too. Don't use them. Worrying about whether users post your article to sites is a bit narcissistic I think.,0 + Ahhhhhhhhh so glad to see you. HNY & ditto. FUCK CANCER,0 +no I hate strip clubs and that's not real debauchery. I'd be into checking out a swinger's club but need to be invited to that,0 +Ugh.. fuck! That sucks. I'm sorry mama... I really need to start buying latex. I love it but I swear I can't afford it right now.,0 +Hey... If my lazy ass can do it.. you can too! :),0 +ugh... and I'm still up writing this damn article. Think if its in his email in the am he won't notice the date and time stamp?,0 +Trying. Fuck. It was due "yesterday" and that ended 2 hours and 47 minutes ago.,0 +2 ?'s: when do u leave for cancun? when the fuck am i seeing u again? when do we go back to school? ok that was three. whatever.,0 +don't worry. i love my niece and hate my sister in law. I think its like a rule or something.,0 +that sucks :( tell her to get unsick!,0 +nothing against Guy mind you -- love him. but why do you hate democracy?,0 +aww! Sucks that simcity is not stable. I was looking foward to it.,0 +Yeah it's pretty cool though having to add movies to your instant queue to watch them kinda sucks.,0 +ass felching sounds kinda redundant,0 +disappointed to find "nice ass" pic has been removed. appeased by hot fire breathing girls! :),0 +YOU haven't but a lot of #blcks did. That's the case with me. Story of my life and I don't give a damn.,0 +In fact I hate the after effects naps bring me. I feel worse and might sleep longer as planned.,0 +damn you're in DC? Where is Timberlakes?,0 +adangta kan jadi bitch ane. enough taa. aku marah ne *buat muka mrh* esh,0 +I think the Standtard is FILLED with imagination. No fucking news but lots of make believe racist shit.,0 +asked the Tory social media guy for his Twitter name: "Well I'm not on there personally" Big 'oh fuck' from around the table,0 +What the fuck was that? Did someone puke in my ears?,0 +and @mattarmendariz - if you're eating lunch at 10:40am then I'm definitely having a damn cocktail.,0 +- who *didn't* grab your ass once you got to EG? i mean seriously...i saw lots of grab assing. just sayin'...,0 +I nominate @charlestrippy for a shorty award in #entertainment because... HE MET YOUTUBE BITCH!!,0 +god damn dan just pirate some sample packs haha. But the effort was cute.,0 +Shoots. My Hawaiian ass is dead. Hiamoe for me. TTYL8R,0 +Game Junkie. I still want to play with you someday. I wish I knew some good games ): /deadpoor You'd probably kick my ass though.,0 +I know...its so fucking ridiculous. XD,0 +maybe someone's being a dick and hogging up the connection..I dunno *shrug*,0 +TELL IT TO STOP BEING SUCH A DICK!,0 +Of course I'm hanging out for the Core i7 Mac Pros. Can't wait to see one of those babies murdering ANSYS problems. Hehehe.</nerd>,0 +lol - we could do that now if only I could be bothered getting off my fat ass and coming to Perth.,0 +Olivia you dick! I have your phone and your wallet!,0 +I'm in bed listening to the loud ass BOOMS in mililani. So many ppl popping aerials!!,0 +...saw your wall post...fix your damn phone foo...,0 +*laughs* i'd hate to see the aftermath of that bird,0 +ain't that crazy? enough to piss you off!,0 +yah managed to but was a bitch to transport. i think something might've gone wrong with the chain gonna take it to a shop ltr,0 +BITCH GET ONLINE I FOUND CUTE SHOES,0 +FUCK YOU I TOLD YOU I CAN COOK,0 +fuck you do you know how cold it was in nyc today?!,0 +Myspace players seem to hate me. But whatever it is it will never be as good as Grandpa's Last Christmas,0 +How about the party of duck and run telling us that WE don't have cajones. I'm surprised those ass hats can type.,0 +Why what? Hate payment history letters?,0 +I take my son and it works wonders. Nobody wants to fuck with a parent. It just looks bad.,0 +v3rmillion Sorry must have been all that gay porn I signed you up for.,0 +damn doll u kinda look like brit wit hair!!!!!!!!!!!!!!!!!!!,0 +????????wtf? WhAt ThE fUcK?,0 +!!!!!!!!!! ya bitch u prove it,0 +damn y ya follwoing?,0 +I hate open the can but what do you mean by "justify?" Christianity *exists* man. Explain how it came to be. Mithras? NOT.,0 +... about as bi as I think Whoopi is but okay. I am not a Rose fan. Plus everyone who touches RTD gets a bit of the gay.,0 +just got left 4 dead pretty damn fun for pickup games,0 +Damn i'm back at home... that not good... That was the last step before the return to the normal life... :|,0 +is the Black Bitch anywhere near Clever Dick's? http://tinyurl.com/axf82t,0 +I would totally hire her just because she said sales-whore.,0 +who fucking behaves anyway?,0 +ouch...that sucks! I hope you're feeling better real soon!,0 +Shouldn't u be working?? You know i hate being cold. :) --- MaryZ41: @sleighz hey! what does THAT m,0 +'Turns out not where but who you're with that really matters.' ;) --- MaryZ41: @sleighz yeah we all hate bein,0 +Ooof too much effort where's all the open source kung fu magic giving me a sweet ass browser? Firefox? More like FireFAIL.,0 +damn. It's early. I'll prolly be woopin it up at the challet basque when I'm off.,0 +not wit CB2009 (Cock Blocker) that's her new rap name. not wit CB2009 on her shit,0 +now that sucks...no dunkin donuts...most of ours are closed but a handful:(,0 +Right?? she knows my name and everything now.. Askin me where should she move to here in Cleveland. Damn!,0 +LOL!! Not DMX his ass is crazy,0 +Awhh damn! I was gettin excited,0 +aawwhh damn! WAKE UP Strawberry shortcake,0 +I hate monday mornings so Im grumpy "(,0 +Work is turning me into a cuddle whore. I get outta here and just wanna be held.,0 +Also entered the contest - Whore-ay!,0 +Damn I'm sorry to hear that. =( well its a treat when you do go I'm sure!,0 +i must hear this in meatspace cos i fear you're winding me... 'super awesome' my ass LOL. no way do i believe you HAHAHAHA! x,0 +your humor in fine form 2day-i needed laughs! Like game show and "evry othr fucking min!" thx man!,0 +..of course your work kicks ass too-didnt want u to think not appreciated! My god-that was amazing though wasnt it,0 +Nah hate is such a strong word. Was amusing but maybe ditch the wine next time. Interesting points of view which I enjoyed.,0 +: Found you through Twitter Grader (http://twitter.grader.com) i hate the flying whale too!,0 +damn kanjiong.. lol but its kinda expected la.. when the eclipse go away,0 +damn cool. u can activate da camera of ur fon n u can move ur fon freely 2 look around da game when u r walking or sneaking,0 +well if i said slut i would have to include Fish in that category,0 +what?!?! im sorry!!!!!! ill kick his ass for you if you wish i got some pretty wicked awesome ninja skills :),0 +Nocturnal does indeed kick ass. Be sure to go back and listen to his other stuff if you haven't already. ONE MORE HIT LEFT!,0 +still waiting to see you. Damn time warps; they get you every time you try and head to @gangplank. It happened to me before!!,0 + It's ok buddy. I hate flying too.,0 +Let's fucking go!,0 +Didn't make it to the Young Whore although I do love it--I hosted the karaoke at a friend's house! 'Twas fun :),0 +Hah..I can relate to looking forward to smaller dress...Obtainable if I could just lose these damn latenight munchies I get...,0 +Oooh oooh oooh and I wanted to see a good bitch slap too. Altho I that does go against my pacifist ways...what a conundrum,0 +Going to spend some time in Fort Myers with the in=laws. I am excited to be going but ughh...I sure hate the packing!! LOL,0 +Love Burroughs. Bukowski was like a broken clock - right twice a day. Ginsberg BLEH. I hate most of the Beats.,0 +YOU WANNA THROW DOWN BITCH? I can not update my blog better than you can not update your blog any day.,0 +I don't think he's stupid so I'll just assume he's a disingenuous cunt instead,0 +We have some haters in Detroit and Onterio.....God don't like Ugly...must be the no-competition (In Canada I think) I hate spam,0 +Damn I'm 10.5 - 11 ..,0 +"""just when I thought you're running outta material I come home n here's your Ass"" LOL",0 +well i hate the way you make cars.,0 +http://twitpic.com/wixa - Tooo damn cute !!,0 +http://twitpic.com/wlgq - Damn brother. You got a sweet hook up there.,0 +My Dick by Mickey Avalon or My Neck My Back by Khia,0 +U FUCKING FORGOT THE HOTTEST PERSON ALIVE! BLAKE LIVELY! SHE'S THE ONLY ONE THAT CAN MAKE ME (ya know) WITHOUT TOUCHING SHIT,0 +http://twitpic.com/xinl - I hate him so much. He's so cocky. Once during one of Phil's shows he twittered "hey Phil it's C ...,0 +OH damn homes. I LUV email. I type EXACTLY how i talk! My fingers have an addiction 2 the keyboard. I'm wit it..Y b afraid of it?,0 +I hate the gym 2. I go cuz i must & try to make it fun i said TRY. BUT OMG i am talking myself out of going 2day...HELP ME JESUS!!,0 +that damn cheddar...the hell?!!,0 +$100k? No prob. We're all over it! "Socialbees transforms your Facebook page from 'blah' to a brilliant ass kicking machine" ;D,0 +your gonna get so fat before school starts,0 +the ending sucks like hell.,0 +you're so fucking dreamy,0 +Wow that sucks. Glad you got it fixed.,0 +aw fuck me in the ass i thought you meant maylene,0 +aww man that sucks ((hugs)),0 +fuck i knew it,0 +well that sucks lol say high to every one at rock bottom from me,0 +LOL u remains me of my friend she loves football LOL I personally hate it lmao,0 +Lo cool sucks u have to go to PR LOL sucks there,0 +I gotta say I found it pretty damn funny too...,0 +not sure how long i've been on seesmic but it's a love/hate place for me,0 +dang that sucks i dont want to sound like A queer or anything but I think Chipmunks Kick Ass,0 +Couldn't tell I had a choice! Damn thing auto-launches then locks up tight every time.,0 +Seriously! He know's I have a final tomorrow that I'm studying for but he's done with finals which sucks!,0 +i hate you :-p and i wish we had that discussion in my english class!,0 +http://twitpic.com/ksek - uhmmm..almost has that "infinity mirror" look to it...lol!! Freak someone out after a few good drink ...,0 +I remember driving in freak snowstorm in Tallahassee..92 I think--almost flipped the ambulance ;),0 +big fucking graphics?,0 +I'm sure there is a better way to put this but: Wow what a fucking asshole.,0 +Kirby is a whore. Also a gay man's best friend. Have you seen how wide it can open it's mouth?,0 +Anyone named kirby is a whore. It's one of the unspoken rules of life.,0 +Occasionally fortune urinates on us all the universe does not hate you...it is a brief plumbing problem.,0 +damn must be some good sandwiches. If they're that good wanna get me one while your there? :-),0 +I think it sucks people r discussing it more w/out anyone involved being present. God forbid anyone EVER asked any of us about it.,0 +I have a friend who got a job in Indiana after college moved there and after a week said "fuck it " packed up and moved to France.,0 +Hood has apparently lost his mind. Sucks for him.,0 +Yeah that sucks. How long ago did u purchase? Have u asked for a refund for the difference or r u totally turned off now?,0 +If I do How do I travel? Dogsled? brrrrrr too damn cold for me!!!!,0 +I'm sorry that you and your idiot friends insist on persisting in your senile psychotic rants. Truly u r a bitch.,0 +lol Damn talk about foot in mouth...... let me get to downloading!!! what are you doing on your day Ms?,0 +WOW!!!! you went in on that man and used your name lmao damn you a "G",0 +lmao oh I saw it in my @replies and it had me gone hahaha damn spam,0 +Lmao Damn thats the truth,0 +i hope not Tara! sucks someone would do that.,0 +Also you claim you won't change who you are. But I want you to change from a Guinea Pig into a monkey. Monkeys are awesome!!!,0 +Wow I really did spazz out back there didn't I? Must be having had to deal with the TSA. I HATE THEM SO MUCH!,0 +Christmas guinea pig! Hooray!,0 +LOL i wouldn't know anything bout prostate spasms but it sounds terrible. they really needed 2 get up on their hotel piss game!!!!!!,0 +i cant believe i woke up to read that question on twitter lol hahahaha wow im up now! damn lol because men r greedy! lol,0 +COME ON NOW I KNOW YOU EXPENSIVE BUT DAMN LOL AIGHT LOL,0 +NOOOOOOOOOO but knowing him his ass will just pop up tonight! as far as i knew on thursday he was still coming!,0 +Jackson kicked Sylva ASS! Wow!,0 +okay i want skeleton gloves now. fingerless ones naturally. i kind of am a 14 year old emo boy though deep down. hahaha.,0 +damn..dat is scary..im movin on da southside..how s it ova there? idk im leavin my lil good life here..disz crazii..*tearsz*,0 +damn man on sum real shyt...u scarin me...my city got deaths..but damn...disz aint even koo,0 +aw shittt they was talkin bad? Lol fuck emmm I wuz messin around seen u live,0 +Yes I've read that too. It's good for filling you up but I really hate running to the john all day&even worse at nite #gno,0 +who the fuck are you??,0 +GENUOIS BITCH LOL,0 +ah yes us all believeing in modern medicine and such . damn us !,0 +Im just glad im gon be paid to sit on my ass lol,0 +I need to get my grandma to teach me how to cook that they be so good. and them damn collard greens fresh out the garden,0 +yeah they should they sold fast as fuck down here. i woke up late I was worried. I dig how the 11's look on girls,0 +Lmao that damn show is funny,0 +at least its a good excuse to have steak. my wife keeps craving fast food. I hate fast food. i like steak.,0 +@matthudgins Whale Done How to Win Friends and Influence People and anything from Tozer,0 +Seen a news article on why the SLUT wasn't running? The surface rail/trolleys I've seen on the east coast wouldn't have blinked.,0 +I believe that's what you called my gray cardigan one time haha. You're going to make one fine ass grandma one day.,0 +My kid loves Phantom too. :) She's kind of a musical freak though.,0 +DAMN YOU!! Another freakin Dave tweet for saying good day...wtf man wtf!! ;-) ♥,0 +Ewwww it's Christmas...hate is not allowed!,0 +I love Fat Louie too. I love his pillow and his crown he wore and sat on during the plane ride what a great actor Fat Louie is.,0 +What do you have now? Love my BlackBerry Curve (and they're $99 now) and the Bold is supposed to be awesome. Hate the Pearl's KB.,0 +Y'know @QueenofSpain doesn't hate me so I don't think she hates the east coast...just certain east coasters. AHEM. ;),0 +yes that sucks! So that's y I'm reading everything again!!! Can't go by what she says,0 +aww...it never snows in texas. it snowed a few years ago. but that was just a freak accident! it hadn't snowed for 100 years.,0 +thank's L. i hate when he works nights cause i'm awake during the day while he's sleeping. but now he's going hunting!,0 +i know! who the hell gives you a baked potato with NOTHING on it? and a rinky dinky little ass steak? i'm hungry still. lol,0 +LOL it sucks to not get buzzed. I'm just there twiddling my thumbs. LOL,0 +You must have missed the fag grapevine call about Eartha. I am sick. Going back to bed. Blah!,0 +You are Mary of the Frodo clan. You are gifted beyond all other fag hags. (and I use that term with much love!),0 +bitch. I WAS A PRETTY GIRL!!!!!!!!!!!!!!!,0 +what a fuck nugget.,0 +I am going to try and find a boyfriend by august and beat his ass into doing it!!!!!!,0 +same here...i got new sox they are pink and black...even though i hate pink...they are striped.......................,0 +Internet booze is headed your way. God send some back mine too... its been a long damn day. (Hee I rhymed!),0 +I couldn't agree more! love winter clothes hate the dry hands.,0 +- RR could also whup JT's ass.,0 +damn straight. one of the guys here only just made it out alive,0 +MAKE A FUCKING VIDEO DAMNIT!!!!!!!!!!!!!!!! And have the best time ever on the Teacup Ride ^_^,0 +Quit complaining you never get to go out get your ass dressed and get up here!,0 +probably the same thing that makes you gloat when people are proven wrong about mac stuff. and how bad you got ur ass whooped. haha,0 +Ah memories. :) @ki6bjv is watching "Diary of the Dead" right now. He's a zombie freak. LOL,0 +-there is. It's sad really. I never could be ok with that stuff. Still hate movies where the animals die I cry every time. :(,0 +I hate flight delays. Hope you make it back safe! Btw where 2 email u the release for approval? Says you're judging the contest.,0 +why do you hate activesync?,0 +Then you should not have any posts.... and using the same comeback twice... whats with all the hate??? Why can't we be friends,0 +Brave and controversial actions in public are always met with a good amount fucking stupidity in opinions devoid of any knowledge.,0 +WTF FUCKING BITCH NEEDS TO BAN THE WHOLE FUCKING SITE THEN,0 +HOW DID YOU MET YOUTUBE BITCH?,0 +HOW DID YOU MET YOUTUBE BITCH?!,0 +no people hate on charles hamilton cuz he has an unwarranted ego and he thinks sonic the hedgehog is god,0 +I nominate @jasonanderson in categories @biggest-jack-ass and @tech,0 +oh no. That really sucks. Randalls next time if it's not expired. Two minutes and you're done :),0 +that sucks dude. so it was just your hard drive?,0 +Thanks for sharing LJKA an acronym to live by... Lets Just Kick Ass! no meetings... no folderol... my favorite mode also!,0 +newspaper said sand was also bad. Might as well just go for the salt and take care of the damn problem,0 +why? we're snowed in!!! I hate bad winter weather.,0 +I've only done it twice (and once was on about an inch of bangs). I didn't do it over even though I want to. I hate straw hair!,0 +I can hook you up w/ night vision cam w/ motion detect & rec. It'll cost ya. I would use wild game cam from Dick's Sprting Goods,0 +Holy Fuck Man I've been thinking about you. That's fucked up.,0 +Well what kind of card did you expect from the "Best Looking Gay Guy at the Office"?,0 +It's a FABULOUS idea! I wanna play it tonight! I say we do it in gdocs and then post it later but Im a porn whore apparently.,0 + "Self-serving confessions meaning that one is tattling to cover own ass im plicating another? ",0 +saw "Seven Pounds" today--some really fab covers on the soundtrack which apparently can't be bought. hate that!,0 +dirty @babyface_GM Ive actually found most people dont understand "BBW." Then again I now describe myself as Fat rather than BBW.,0 +- So damn slow. It's depressing - I just want to be done!,0 +a prissy bitch u r? Haha...i hope 2 hear the occurance that goes along with this statement.,0 +damn were you using peerguardian/encryption?,0 +Damn! Which episode?,0 +tonight??? all fucking day man.,0 +I READ THAT BOOK ON GAY SEX,0 +sorry that sucks. I hope your Cobra kicks in soon. What's up with your hair BTW?,0 +I was gonna dedicate my 850th tweet to you but then I was all FUCK I already tweeted! But it was to you anyway so it's cool :D,0 +oh damn...lemme do that now,0 +i hate the ice! stupid pipe busted at my concord place. tenants woke me up at 2am with LOTSSSS of water. FUN!,0 +that just sucks though.,0 +i only buy magazines at the airport- i love bitch and bust too.,0 +i was afraid of that. i hate when the weather does that. meanest trick of all. i may not leave my house until april.,0 +damn. i have been using the wrong word all night. i need a blacktionary.,0 +awwww. ur last twitters were kinda adorable. not in a gay way,0 +I hate chex mix. Almost paletable if you add bacon to it. Merry Christmas and may there be bacon for everyone in 2009!,0 +I hate the texture of chex - always have...,0 +..... I pretty much hate T-mobile....,0 +that sucks! U must spread the word!!,0 +there is a man who walks his p-b-pig in the domain wonder if they are related,0 +your kind of a such fuck you know that right?,0 +They have been touring as just the dead for years. I've seen them twice. Bromance is a codeword for in the closet gay.,0 +So true Dick is the best. Tomlin needs to let Bruce go so we can get back to Steeler football with our run game running the show,0 +oooohh!! that sounds good!!! i haven't ever tried that one. damn! my ex held out on me. lol!,0 +notification is a loser move. I'm onto you!!!,0 +lol u couldnt really see my big fat poinsetta on my hat lol!!,0 +ah lucky! i heard america's a bitch tho,0 +@KarenLongstaff damn I'll put me kecks back on and put the camera away then?,0 +HAHAHAHA!!! SO! FUNNY! What the fuck ever. He's on my shit list regardless.,0 +schmap published 3 photos of mine of Paris (tour de france gay pride and Les Halles all are on flickr.com),0 +nothin’ i did my hair THAT WAS EXCITING! And then played on the computer for hours. Cuz im a nerd.,0 +WHOA he's bald AND GANGSTA. Damn i want him as MYYYY teacher. LMAO,0 +I hate it when I forget little details like that. You could always have him wear sunglasses. LOL,0 +that wat u get for sayin u wasn't impressed lmao. The parkin tickets a bitch though,0 +lol hate to admit this for everyone on twitter to see but i've actually started doing this too.. horrible..,0 +that sucks.. i'm guessing its an online only item.. i hope it comes available soon :D i need it for when the DVD comes out :D,0 +Oooo. It'd be annoying if it wasn't so damn cool :),0 +Thanks very much Dick. I'm contacting them immediately.,0 +Not just "whole novels." Moby Dick for gosh sakes!,0 +LOL. It's true your frozen tundra trumps my lame half-ass kinda-freezing once-in-a-while sucky weather. You = Ice Princess!,0 +Well hell looks like I know what I'll be doing Tues. This is the worst no? Cold dark boring as fuck. I want 2 sleep til April.,0 +DAMN. I used to compile irogs when I worked in civil firm. Discovery of all sorts can be tiresome. GL! Atty's staff can help.,0 +Glad you made it home through snowstorm. Sorry @ wack-ass co-worker. I just realized I still haven't had lunch so I think I will!,0 +im fucking following edwards miiiiiiiiiiiiiiiiiiiiiiiiiine <33333333333 ummm ya :) i wanna see twilight again :),0 +I'm actually finishing cutting out all artificial sweeteners / diet soda for New Years. I'm going to be one. cranky. bitch.,0 +aint a piss take....did you watch it?,0 +Townhouse is four years old. No cable lines. No high speed internet via phone or cable. Sucks. Wireless internet via digis.,0 +Pull your head outta your ass! Are you ready to take the helm?,0 +come here I'll kickle your ass.,0 +I concur my ass is thoroughly kickled after that yoga class.,0 +Gah. I hate mosquitoes.,0 +so you going to be ok when you get your double ass kicking from Paul and I?,0 +@KRockXP both you two need to get off your ass and put out a show it has already been a couple weeks :),0 +Glad you had a great time. Can't wait to see all the pics on FB Flickr etc. Hate to have been out of town and missed it,0 +AIR client? Damn. What's up with it?,0 +What you didn't like the link to "Pulp Fiction" fucking short version?,0 +Damn but that is beautiful. Time to dig out my Blackfive "Don't be a Dou'Che" shirt in salute.,0 +I still say my "Pulp Fiction" Fucking Short Version reaction is better.,0 +@seanhackbarth It is a hate-fest and that's the way I like it.,0 +Damn I wish you had that up a bit earlier. It would've been a great part of the Scramble.,0 +Shrinkage? Shrinkage? Hmm...so there's shrinkage in online retail? Damn I though that only occurred after a cold shower;),0 +AdFreak coffee mug?? Damn Adrants doesn't even have mousepads!,0 +Yea...until then I'll have to settle for being some ad blogger who has nothing better to do than bitch about advertising;),0 +Well..."THE ad blogger"? Damn I'll take that. Thanks!,0 +That cat's "roommate" is a 23 pound tomcat who is one of the sweetest animals I've ever met. All muscle no fat. ;-),0 +Gearhound would be PC my wife calls me a gear whore;) Icelantic is a new company out of Boulder Co.,0 +that sucks! no wait that's cool! umm. no.. that sucks! but it's cool! sucks! cool! sucks! cool! sucks! cool! ...........,0 +well I hate texting it every 5 sex,0 +I prefer laughing at them whenever possible. Like terrorists Leftists hate that more than anything else even physical attacks.,0 +damn thats frickin wack hope u still get paid nicely.,0 +I got the first bit...didn't realize the "dick" part was in that. (I had that as my MySpace quote for YEARS!),0 +I'm calm but not a happy camper. It's Jim's birthday Andi phoned for PC help today...and my home's been invaded. Fucking hell...,0 +could you imagine John F Kennedy or Churchill or Abraham Lincoln shouting "yaa boo sucks you 'kin wankaz" at the opposition ?,0 +LOL :D - you got me there! it's going to be hard to ace that comeback (damn wish I'd've thought of that line :D),0 +erk. U poor sod. Is Rod Serling nearby smoking a fag?,0 +you're having a bad-snow-day... that sucks! if you are snowed in noone will see your hair right? Trying to state the positives,0 +i like how 46-49 is the same thing. you know i mindlessly pay the damn dog lic tax every year without thinking about it...,0 +hey loser! you don't answer your phone anymore... are you channeling your inner stick and losing your phone?,0 +that totally sucks... that's weird that he would miss something like that it is a total rookie mistake,0 +Oh No!!! That sucks but it totally sounds like something I would do :0),0 +lmao. Does ur Via have big ass rims?,0 +Seriously? WTF?! Who can pass on hugs and kisses?! Not I That's for damn sure!,0 +SERIOUSLY! NO idea how happy this makes me. Also! The American Express commercial just came on. Damn he's cute.,0 +My unemployed ass ain't goin' anywhere.,0 +oh forgot - http://omf.gd/1/ :-) Quality IS Ass ured!,0 +Beedle? Damn awesome! And hi! <3,0 +That was a fucking awesome book.,0 +those are the best flights though! freak time's when the plane's a fucking sardine can w/ no aerodynamic balance or leg room,0 +haha I feel like an ass I switched my name and forgot to load in under the new name lol,0 +the terms black/white hate are becoming antiquated the fuss over Doug Heil was 4 not & Social Media is changing the face of search,0 +you're channeling William Gibson or Philip K. Dick with that last tweet haven't decided which yet.,0 +yeah I'm okay. Thong was wedged far enough up my ass that it prevented me from shitting my pants out of fear.,0 +some squatter got it long ago. And you my friend are a dick ;),0 +Yeah I was working on some social media projects and it was just to damn cold!,0 +damn bro best of luck.,0 +damn you trying to be number 3 on her list? she dont need no more! :p,0 +dude i love ya but the blip.fm stuff sucks.,0 +The english dont give a fuck. This is established.,0 +im meh about the whole thing. I love sari and all but there's not much give a damn left about drama in me after wow.,0 +I think u left your manhood downstairs with your testicles. PUSSY!,0 +what's a SB? (I'm going to hate myself for asking-in the morning anyway),0 +ah crap I knew I was going to hate myself-must be bedtime. How do you run a SB campaign though must b for an existing site?,0 +OK now I seriously want to buy Nice List even though I know I'll never use it! DAMN YOU AND YOUR MARKETING PLOY,0 +Any special reason for the hate?,0 +mobb deep fucking owns,0 +bitch i am an eagle scout i will cut you and then perform rudimentary but effective first aid on you,0 +that kinda sucks does he not travel well. Did you consider putting him in kennels?,0 +wouldn't that be butt ass nekkid?,0 +Summer here is horrid - I hate humidity,0 +DAMN DAMN DAMN i cant see livesteez!!!!! :-(,0 +LOL!!! well we just need to go out and have some laughs tonight!!! i will need a good one after this long ass day,0 +the hair is minor compared to that awful ass singing,0 +Yes! the shower scene is what totally sold me! LOVE it! Hate to say it but I kinda like his body too.,0 +yea bro people will hate at the smallest sign of you pulling ahead of them in anything. Pretty Terrible!,0 +I'd love to had I the time. (of course I have time to bitch don't you?),0 +And it sucks away your API twice as fast...,0 +Merry fucking Xmas to you too!,0 +lmfao...man I have a friend that looks just like Plies too...I am sooo using that line on his ass when he tries to clown,0 +LOL Well my kids would say 35 any NORMAL person would say 50 ish. I do hate getting older though,0 +not me... i'm there for dick.,0 +i keep waiting for my follower number to drop but it only seems to go up LOL especially when i say dick or balls.,0 +well hot damn my wish came true! Where the hell have I been? I had no idea!,0 +hmm. I'm all legs thighs and ass... the last thing I need is a million light-reflecting spheres working to spotlight my rear.,0 +radio sucks in general but Hot97 @ least can entertain me most of the time. Big treat from the crap Philly stations I get by me.,0 +cuz they wanna be ur 'dick in a box' for when shit gets sour w/ur man... In case of emergency break glass!,0 +damn. I need to get me one of those... what do you call it... a hookup? Lol,0 +must be a crappy movie if you're on Twitter! I'm working. I hate my life. lol,0 +oh those damn germ carriers! Hope u feel better!,0 +the answer would be whatever night I make her drink with me and @themadhat doesn't feel sorry for and rescue her ass ;-),0 +do you like Boosie and whip your ass for a STRAIGHT HOUR. WHATTA WORKOUT!,0 +aw man that sucks!! was it your brother again? =( im sorry,0 +actually that's detective Dick Gumshoe from Phoenix Wright :O,0 +That sucks. Maybe they were just spam who had accounts deleted. #gno,0 +Woman please I'd put my fat butt against your's any day and win. OK that sounds dirtier than I meant it to be. LOL,0 +with jury duty just become biased against everyone. worked for me first time i had jury duty. told them I didn't like gay ppl,0 +I know!!! Now I have to figure out who's gonna teach me to use the damn thing!!!LOL,0 +i hate to say it but i caught the tail end of his perf on SNL and he sounded hoarse or something,0 +you know she comes across as tongue-in-cheek sometimes... as a ratings whore.,0 +It's all fat free on Christmas. See? Santa also gave me Denial for Christmas.,0 +I nominate @moltz for #isdoingitwrong Sure I don't know what *it* is but look at him! He's obviously fucking it up.,0 +what if he is "interested" in being "taken" by a "gay" person hehe,0 +tell me you didnt ask him if he was gay haha,0 +hellz ya I kick ass...just don't think the wives would think so,0 +idk my pumpkin cheesecake is damn yummy...,0 +hmmm i hate trying to make up my mind lol,0 +that sucks! Hope they come soon!!,0 +#NAME?,0 +#NAME?,0 +how he gon' be 'afro-centric" wit' a damn S-Curl??!!! Lmao,0 +what you damn sonin' at?,0 +Appo is gonna copy that damn thingy to a DVD and gonna drop it tonight. I'll call ya once it's here. come by,0 +Nose? Newspaper? Net? Nerd? Neck? (Am I making you cringe yet? No? Hmmm must not have the right word... ;-) ),0 +Awww but I'm a nerd. (Does that help any? :) ),0 +...math/science (esp. physics) were my fav subjects in school... the longer the book the better... think I'm an nerd yet? ;),0 +- hate to break it to ya but HD DVD is dead u can still find cheap HD stuff but it's not supported. Long live BluRay,0 +Actually Dick Cheney slashed the funding of the program and cut the staff down to 1 person which is why it looks so bad.,0 +Billy is really kicking ass... Dark vs New mini-poster will be in comic shops in 2 weeks BTW.,0 +I'll hang tight and see how Jan Taco Night goes (is it possible for it to not completely kick ass?),0 +get yer own damn beer!,0 +http://twitpic.com/uakz - omg... that sucks... hate traffic... what are you doing outside driving in that?,0 +I love that line. And Steven Stills. In a non-gay-roommate way.,0 +I'm not sure I could work in politics. I hate the dress code.,0 +That sucks. I assume you're speaking of your Macbook? Apple fucking rips you off on power cords esp. since they make such cheap ones,0 + i hope it doesnt snow here i hate snow,0 +fuck i'm nervous.,0 +I crack up just thinking of that! Can you see that Mom on the other end of the phone? TOO DAMN FUNNY!,0 +Well get yourself a sticky one that sucks to the chair then! LOL,0 +that sucks!!!!!!!!!! I really wish I could head down now just to much crap to do before I leave.,0 +I went and saw a movie an ate fat food instead of crunches it sounded like more fun,0 +Customers = thin love/hate line. They're either really GREAT or really sneaky....,0 +UGH - the same! I almost hate it. Would love to get to sleep at 8or9 like my hubby. Used to be an early bird!,0 +they seem to be the same every damn year,0 +I hate their ticketing policy.,0 +I like programming...but i hate theoratical sujects...like computer architecture,0 +- or L7 - that's where i totally kick ass!!,0 +I am SO sorry for you...wait..what am I saying? Mine is going to be home for 2 weeks TOO! OH DAMN! Teela can keep him busy!,0 +lilmommaabc your phone sucks then! Lol,0 +i kept thinking u would be here at like 5 :( damn sorry dude. well man be careful and ill def try to see ya around new years.,0 +its when u wash ya face ya ass and ya balls from in front of the sink lol,0 +Oh they will I'm sure but how can they be proper emo-indie babies if they don't come from a broken home? It is fated.,0 +I know right? It's harder for me to get well and keep well since I have a piss poor immune system.,0 +that's show is the bizness.. Why must we watch nasty ass sht,0 + thats looks damn good bradda,0 +Damn Karrine they are trying to get at you bad tonite.. whats with all these twaters!!,0 +yep I'm the epitome of geek. But at least I fail at being a nerd :P,0 +why do you know what a alligators ass smells like dude? See I KNEW yall Chitown people were freaky! 1st R. Kelly now u & gators!,0 +Ooooh! Weasels! My favorite. At one time I had Four! Smart little fuzzy time sucks.,0 +yeah I know. I hate hollywood but there's a party there that I want to go to.,0 +wentz is probably all stressed and thinks we are going to hate him now bc the boards suck dick and he was trying to make them....,0 +yeah I hope he doesn't freak out about us hating it. And is there an online list?,0 +watch gg instead. And he was like "I can't get this fucking thing to work and everyone is sending me fucking instant messagi ...,0 +yeah he was like "I can't fucking change my setting bc all the fucking instant messages are blocking",0 +Certainly keeps me thinkin'. DAMN da Vloggerhood for makin' me think!,0 +sorry only you think with your dick 24/7,0 +of course some people still bitch about 3 admin ui revs in one year but at least they finally got it right!,0 +that's it I'm spending new years in LA next year fuck NY er jersey,0 +happy birthday bitch!,0 +Foot fetish? I dont think so... i think its the fact you have on leg cuffed and the other one isn't... not very post gay!,0 +congratz! i heart unapologetic sexy ass ghetto fabulous bitches!,0 +I am taking you up on those cuddles! I should head to bed. I am watching B. Urie pound the fuck out of a drumset though.,0 +well yeah you got me there..master race my ass!,0 +Is it as fun as it was 20yrs ago? Damn i just aged myself doh!,0 +that sucks Jon. Hope he's well in time for Christmas.,0 +I am actually just wanting some company on the sleeve slog that is currently my life. Did I mention that I hate sleeves?,0 +@ShawnWildermuth love the Zune and the Zune Pass. Hate the software.,0 +i think the FCC should mandate TV stations broadcast the "Fail Whale" image on the old analog signals.,0 +ill find that bitch. I been in a pissed mood all weekend I can use some1 to take my frustration out on =D,0 +Thanks! :-) I feel so much better as well I hate when they are sick and it makes it worse when I'm not here poor guy.,0 +wannabe fortune teller. backtracks his entire premise in the last 2 sentences: declare it dead but it'll live in a diff form,0 +that sucks wish I could help you out...,0 +oh damn Hootie! Yup late 90's. Now that I think about it I was a big Hootie and the Blowfish fan... back in high school.,0 +bah humbug! J/K She is the shit I always had the hots for her. Damn what happened to all this great music??,0 +I think I was slow on the uptake there I thought you meant some unamed specific char not in general. Retard day..as usual. XD,0 +believe me not only fat kids like cake :),0 +Hey you! Yeah it sucks down here eh? Not sure about downtown PDX but Gresham/Troutdale is hellish. 21" o' snow here in Sandy :(,0 +lol.damn I gotta find a cheap ass flight,0 +Liz likes to be followed. She's freaky and a freak is what I need in my life.,0 +Breaking Dawn was a little too freak show for me. I wish the story had taken a different turn after the wedding.,0 +LOL maybe we have it at my store? I hate getting on the site unless I have to!,0 +I miss u too. When r u gonna cum down here?Do u have aim?Send me ur number I lost all numbers.I'm planning 2 move 2 L.A asap.,0 +I don't mind a little baggy but hanging off the ass is so not hot. I wonder how much they spend on hair product...,0 +sore whale-like sleep deprived... & only 7 mnths ;-) Altho' prolly won't make it to 40. Now don't you wish you hadn't asked?!? :),0 +That's ass. I know how u feel. I dropped mine on the street last week and cracked the screen. But I stil have mine...sorry :(,0 +i hate putting it away sorting washing drying is fine putting away hate it!,0 +damn homie i hear they pulled the plug on your twitter game thats foul..,0 +I am ok... how r u? :) the weather in belgium sucks thought but... hehe,0 +hey girl I still can't use this damn g1 lol,0 +damn I said happy new day lmaooo my druunk ass happy new years,0 +thank u jesus that damn awful word is dead. Fucka swag lmaooooo,0 +Right on eh! Fucking Fake Canadians cease and desist with using Canadian flags on your backpacks or I'll rip em off for you,0 +Don't ya just hate it when work gets in the way of eating?,0 +I prefer 1st weekend of December for decorations going up. Hate shops selling Xmas stuff from end August. Late November better,0 +"""Why I hate Bernie Madoff"" http://is.gd/c9cu",0 +That sucks i hope he feels better soon!,0 +I love that you love hockey! (even if I dont like your team- tho I hate the Avs too so we have smthing in common) Go 'Nucks!,0 + poor you!!! hate both subjects!!!!,0 +- fucking tweet already! WE NEED NC TWEETING!,0 +HAPPY FUCKING BIRTHDAY HO. I really hope this alert didn't wake you up. >.>,0 +I hope you're fucking right now. Birthday sex for the win!,0 +There such a pain in the ass when there gumed up arnt they? u_u The stupid thing is this isnt the first time Ive done that XD,0 +Well as long at its keeps its ass under my house and not where I can see it its ok! lol!,0 +Zach and Even be gettin' in that ass boy in 2K9! I bet you a pro at 2K9 now you jack-of-all-trades-in-the face ass nigga!,0 +WELL YOU THINK OF SOMETHING THEN I HATE YOU,0 +@yummyone congrats ladies but can't attend wedding... Seen enough dykes this week (dick n barry van dyke) in diagnosis murder,0 +too much dick on tv wat with dickies real deal and diagnosis murder.... Oh and that jeremy kyle !!!!,0 +how cum ur up?,0 +I hope you feel better *hugs* - I got nothing on the ins. co. though. I can hate on them with you. Bastards!,0 +I hate those dreams! I spend the rest of the morning dissatisifed with my own life and wish I could go back to bed :).,0 +Sucks always being inside on sunny days... I hope you get some time off work soon! :),0 +Thanks. It will get better on tomorrow when I have some help. Managing 3 under 6 when 2 are sick (+ me) sucks.,0 + lol but what was the rumor? Gah I feel like I'm back in High School I wanna fuck up whoever says shit about Dave he's kickass,0 +its like his fucking twin or something. Iuno it was weird.,0 +i thought that movie was damn good lemme know what u think cuz i know ur picky,0 +Hot damn! It works! Thanks. Hendersonville too. My house!,0 +NC barbecue is pig. Sauce varies regionally (tomato- or vinegar-based) but not mustard.,0 +That's right. It takes a freak cold front followed by an effing huge snow storm!,0 +Oh I hate that! After one mortifying experience I never ask a woman if she's pregnant.,0 +BTW when are you going to let Alice eat more than a fucking strawberry?,0 +It kinda shows how hamfisted and ass-backwards they are going about social media.,0 +Whoa. Quite a heavy-hitter to hang out with the vagabonds and tellers of dick jokes. Guess we know who to blackmail first.,0 +Pardon the intrusion but fuck. That mixtape comes closer than anything in decades in making me believe in God. Thank you.,0 +no you know you are a nerd when you read your tweet and think to yourself "I'm surprised he doesn't have it on his iphone yet",0 +no depeche mode sucks ass as well. se my earlier tweet. http://twitter.com/tcar/status/1073343643,0 +me thinks you're cursed or visit too many porn sites. FF almost never crashes on me (leaks mem like a bitch tho) Opera never.,0 +a nigga still sore as hell.... fuck the gym lol.... ima go and work that shit out today tho...,0 +gotcha..... yeaaaaa they might hate now but everyone was with it back then....,0 +AT&T hates you. Don't feel bad though they hate everybody.,0 +I *was* gonna say "coolest client ever" but it sounded too ass-kissy. In public no less. "Friend" is good. I like friend.,0 +no doubt. Teach that kid how to read the bounce or block out...damn.,0 +I'd rather ban divorce than gay marriage. No question.,0 +yeah damn worthless cardio! = http://TwitPWR.com/xR/,0 +This argument sucks so bad bc I'm just trying to say tht NECC is a valuable conference to many people.You SEEM to disagree ;),0 +@BIG_RIG Said u look like a Fag! idk? He's gay! It's like a 3 way double door action thing I don't want to get involved with lOl!,0 +Holy FUCK now THAT is a pavlova. I hope you dont have to transport it :D,0 + link with the two flashes that hate each other http://bit.ly/12JQr,0 +Fucking awesome! LOL!,0 +And then they snap and get psycho on your ass!,0 +Or watch ghetto ass bitches fight over ghetto ass dudes on Real Chance of Love?,0 +No need to be scared. Just don't piss me off in traffic. That's all:),0 +What time do zombies cum out n play? If it's passed 10 sorry. Maybe next weekend?,0 +next PAX there should be a nerd hockey game for charity.,0 +Damn. Nice site update. You do good work.,0 +I also want to tell you that your PoP review is spot on. I don't get why there has been so much hate directed at it.,0 +yer damn right. I bet that show was amazing.,0 +Oooh..thats a damn good picture too.,0 +damn..wolfmother. really? I had no idea who the rest of the bands were besides Velvet Revolver. LOL,0 +As someone with 3 years of QA experience I can tell you that none of that shit was near acceptable. Fuck those morons.,0 +damn you! Now I have it too. Sharing with all: the theme song from The Monkees is stuck in our heads. "Hey hey we're the Monkees,0 +Not during the party b/c Dick's in a good mood much of the night. So Bart doesn't get it beat out of him now.,0 +Het hate is all about sad poons.,0 +damn i wanted to write something like that! i wonder if it has api/ical support,0 +damn dude we just missed each other in phoenix,0 +if all goes according to plan less than a day. gotta get the fuck to baltimore :),0 +damn I think I was going to write an adtrotrain article for you,0 +sure but having a kick ass de facto admin plugin sure would rock! for some folks... *shrug*,0 +i dont mean in rails core i mean as a kick ass plugin for people that want that sort of thing.,0 +one of my classmates raised (tacitly) the same comparison. it doesn't make a damn bit of sense.,0 +Yeah it'll have to do until I get the big-ass spotlight with my logo on it.,0 +ohhhh man. that sucks. I thought it was tonight. Sorry peeps.,0 +Did you add a contact with swear words? Does that make it so it doesn't autocorrect "fucking" to "ducking?",0 +luigi's masion is straight fucking fun. short but fun,0 +man fuck the urine. the onlky way to live life is to shoot some jap bitch in the ass with an automatic airsoft rifle,0 +its much easier when you realize the japs arent really people and that the enola gay should have done another flyaround.,0 +sucks!!! i'm sorry,0 +the footage is AWESOME AND INCREDIBLE AND SRSLY WORTH EVERY FUCKING PENNY,0 +Yeah I can barely navigate through one. I hate all those distracting things in there!,0 +Eww - then it must be getting worse. I hate the wind. I think that is the worst part of winter aside from shovelling.,0 +yeah i had to work and it sucks. the city is pretty much shut down.,0 +I'm really sorry I can't help with your cravings. FIND SOME PEOPLE TO CLICK ON THE DAMN PORTAL. Seriously raid warnings work.,0 +because working sucks. Wish I was an old money baby.,0 +lol. yeah man the mall was fucking insane.,0 +LOL I love "Emo Who." I too trust Moffat so I am VERY intrigued to see where Moffat and Smith take the character.,0 +I hate to make you grumble so wackiland!,0 +I'm really glad Hunter ruined the ending of that movie for me....I hate movies like that!! They really get me crying!,0 +i know you've got search twitter set up for "smaller ass",0 +or it decides to fight back and the wires stab u in the armpit? Hate that.,0 +I hate TV in general but Wes' parents have it on constantly so I get to have dinner & rage at the news & current affairs shows,0 +Have you cum into possession of this book? I've heard of it.,0 +Two named lightsabers. Nerd much? :D (Sounds fun!),0 +Sucks for them. You have a natural talent for filmmaking and you're doing just fine without college it seems! (Congrats on NYT!),0 +Are you ready to TWEETBOOOOOOOOMB!!! *that damn song fades in just like at sporting events*,0 +that's even better! I'm insured and I hate all my stuff! XD,0 +I wonder if there are any sparkling vampires in the vincinity. XD OH EDWARD!!! (I really hate Twilight lol.),0 +Not yet the woman was wanting to escape but I'm taking care of the situation pppfff. I hate these kind of things :S,0 +hahaha! Thanks for the heads up. I hate when that happens,0 +Goldies has the nastiest beer! :/ and the bartender is a fucking asshole. Haha.,0 +I love chipotle. Fuck you. :) haha,0 +:( I was ass attacked by the concrete floor.,0 +haha. Santyna is talking to me bout u. Damn still got game. Haha,0 +I lovingly call myself and followers "Twits" all the time. Hate to think I offend anyone though.,0 +and prolific and pretty damn smart about her career. although. those effing upgrade commercials suck rocks.,0 +nice. I have a fucking pink couch in my room lol,0 +ouch. I hate when i do that,0 +...and theyre fucking wrong. The best horror films dont make you scream or flinch even once. In a good horror you watch it and..,0 +i realized it by watching old horror films and crazy foreign ones. Ive also noticed that america has a thing for fucking up...,0 +ya luv to hate it right ha ha lol night night exercise queen :),0 +how does self awareness keep one from being a nerd?,0 +on which side of the nerd spectrum is a geek? Being a geek is actually kind of cool now right?,0 +I know. But Caryn sounded relieved once she decided NOT to fly to Boise then wait a day then bus it to Missoula. Yes damn snow!!!,0 +ahh ok..sorry I got worried about u guys. you don't have to be gay Telle! i'm sure there's girls out there that think you're ...,0 +oh there you go! HA are we rebels or what? damn we should have our own show.,0 +well fuck! lets get you one boi!,0 +- Latest video kicked ass. It's nice to know that some people know they have to put effort into listening. :),0 +good im a be back that way soon... u need to bring ur ass to atl,0 +damn its better than takin the greyhound thou lol!!,0 +damn u hella racist why u dissin ur date like that???,0 +damn pilots use autotune too!!!! This shit has gotten out of hand LOL,0 +fucking awesome. Happy holiday.,0 +Ohhh okay. I hate dealing with people like that. They deserve to be bitched out though so you'd have been justified in doing it!,0 +AHHHHH FUCK! I didn't even realize it started snowinggggggg again.....arrrghghghghhhhh,0 +You clearly haven't seen the post-shoe interviews. The man is such a fucking narcissistic idiot. I didn't know hate til he was prez.,0 +damn why fuck drake?,0 +for real tho...I really like Kinetic Typography..and its dope to a kick ass movie scene too...check it out u may enjoy...,0 +No Joe. I am not gay. This is the 3rd time you've asked. Still straight. Not really the kind of thing that changes wk to wk,0 +You know I love the holidays. Get a high on it. I just hate shopping!!!!!!!!!!!!,0 +damn trust me times are hard lol recession mang...I'm saving my dough blowin for new years...where did u go? Nostalga?,0 +we gotta fucks w/ that... fuck a coach bag sheeit looks hella generic not impressed,0 +FUCK NO!!! I'm goin' to supercuts lol have some snobby broad cut a couple of inches for 200 bones i'm good...,0 +kick his ass dude!!,0 +I wonder why they dont realise that it sucks...the google reader as well as gmail redesign both are shabby,0 +You can come entertain me. I don't have class til 11 tomorrow. And I am almost done with this damn paper.,0 +oh...damn well...that sucks...but might be a blessing in disguise depending on what your next goal is,0 +yo me and you both watched that and no lie I was scared straight my damn self!,0 +shazzam so y'all been cupcaking the whole time (insert eye roll) Figured. Y'all probably already damn married.,0 +sucks about the cold but great about the mental state :-),0 +lol not a damn thang but computer keys lol *sigh*,0 +jamie lidell already reminds of a less emo robin thicke lol,0 +damn savitto you was doing the mostest you alright?,0 +D: that sucks! we def gotta hang out when you get a little more money!,0 +...uhm ....did you just flake on showing me what the fuck a hoppe is...?,0 +...when he comes back he's gonna be pissed! He'll kick some serious jew ass!!! >>>"JesusLovesSMNB"<<<,0 +I hate running.,0 +SAME HERE! FUCK FLORIDA!,0 +If by old guy hat you mean the hat I just bought in St. Thomas ... then yes. I am a hat whore.,0 + Visited your site and love what you stand for - lots of people share the love of the biz and hate the way it's been abused,0 +Moffit Cancer Cntr. pulled in & said I hate coming here. Valet parking car raised his bracelet-"I beat cancer here." new perspctv. Tnx!,0 +fuck I wish I was thereeeee!!!!!!!!,0 +new years is going to be bomb as shit. Sippi and Indi are fucking the shit out of Tennessee.,0 +yeah man. A certain person has crawled up my ass all week.,0 +yo when that dude grabbed the mic and started rappin a big ass lighbulb went on. that's why he's with her then again it could b love,0 +lol I'm glad I'm not the only one smh speaking of I need to carry my ass to sleep so I can get up in the morn ha ha,0 +I'd imagine! I've seen some pretty fat raccoons this season out here in Kitsap too. never much in a hurry either...,0 +feel betta Gabe! Surgery sucks ballz I know...,0 +exactly. hate it when random readers drop with crazy comments w/o actually looking around and "Reading". She did turn around,0 +I think the MyCoke Rewards site is all Flash driven...I hate it,0 +damn I have to drive my dad to the airport that time oh well wonder wit it's about,0 +Yeah! You're not a whale!!! Pretty soon you'll be back to your skinny self. :),0 +kick their ass babie,0 +Mine was pretty damn weird too.,0 +Oh I am coming with ahhaaha ah man fucking starting children gets me every time.,0 +Nope I need no ass glass today =),0 +All the players HATE Avery; it's almost funny if he didn't piss me off so much. We won Tuesdays game but nobody remembers.,0 +Damn why not just put them in a hotel? LoL.,0 +Damn I start complaining at 20 degrees. In the single digits I start going crazy. I don't even want to imagine below 0. d*_*b,0 +52nd street. fuck. that. good album. but fuck. that.,0 +More like piss and vinegar. You could call it cancerous ale.,0 +it was delicious. more delicious than love. if love had a taste. and had toasted garlic in it. but it doesn't cuz love is a loser.,0 +u better shut the fuck up wit that lol,0 +damn I could have sworn they were working on another season that was my show. oh well I guess it's Entourage now...lol.,0 +I thought they separated a few years back because he found out about her past adventures. these celebrity couples suck ass...lol,0 +That's the "Nerd" part of me. Now horseradish is basically just a condiment. If you have parasites see a doctor. ;-),0 +Thanks for the ass-kicking ... getting sucked into Twitter. Needed that. And yes reading is really tough at 90% MHR.,0 +As your body fat goes down so does your risk of other diseases like heart disease and Type II diabetes.,0 +well. u have full permission to call me a bitch cuz for some reason. i might keep trying. i hate myself.,0 +Kick ass Take A Pic And Let Us See Homie,0 +dude i had the home beta for some time now and its great. but now that ever one gets it i cant even log in it sucks man,0 +lol. Damn there gos my nogin lol you should follow me,0 +Way to fuck up the dialogue.,0 +XD loser. You quoted a movie you didnt even see.,0 +Money doesn't grow out my ass. I've been saying that i can't do this anymore for over two years and by this point i really cant.,0 +LOL I'm sorry sir that sucks. It's always something. :/,0 +my husband has a deep and irrational fear of chiropractors. :( My own gym sucks and has not massage facilities.,0 +no cuz soulja boy sucks he has no talent anyone can do what he does as long as they build the image thats all he has,0 +well we just have different views cuz if this keeps happening the underground talent will be no more so i say fuck it lets sto,0 +That sucks. I went to bed before the New Year even began.lol,0 +saw that @tourofnilgiris tents by wildcraft..damn next time i will be a participant...,0 +Haa wow I didn't see that yet thankfully. I just see too many rappers money talking with pics of them in their broke ass hosues,0 +Love to travel but hate to unpack. ;),0 +yikes! glad it wasn't worse i guess but still sucks. get better and hope the insurance crap goes by quickly and easily,0 +so it sucks then?,0 +yessss.. thats y i hate the holidays.. everything stops :( and theres nothing to do if ur not a big holiday person,0 +damn cat....who does he think he is LOL,0 +that's what I just did. We went with Cajun Krab dip and the missus is making peanut butter banana bread. Why? 'cuz she's bad ass!,0 +it's their attempt at an instant messaging product and it sucks.,0 +its pretty stupid! to get it to work like windows you have to press hold 'Command' then press your arrows. sucks i know!,0 +I know not to fuck with your rare beer game,0 +Must've been. Damn men cause that don't they :D,0 +Aw that sucks. *pats stamsgal's head*,0 +puppy is good. Knows where to piss and shit..,0 +Already did. Dude it'smissing every thirdorso spacebarkeystroke.Actually it missed most in this fucking tweet. I am so pissed.,0 +I hate the internet.,0 +I never thought I'd be in a position to say this but BusinessWeek is wrong. Damn wrong.,0 +I've said it before and I'll say it again..... slut : p,0 +I like these ditties. Can we have them? I'll reverse out the type. I hate white t-shirts,0 +I hate typoos!!,0 +That Sweeeet fukn ASS!,0 +<<not fuckin w/ her lmmmao..Me walkin into ur party chuggin off a big ass mug shoulda beeen a sign lol,0 +I fukin called ya white pussy gammon ass like 2times smh...I juss got ofa work now...ima head by u,0 +Ugh I fear I did =/ And will tomorrow. Well not fail fail. But like C+ and I hate the letter C,0 +LOL - you may be right - the bb was the size limit for clipping for me I think..oh but I hate stuff in my pockets. decisions.,0 +WTF!? CHURCH!? Why? Church during the week makes no damn sense!!!!!,0 +try finding a place open to get an Italian beef and it's my birthday! This sucks ass,0 +DAMN SKIPPY!?!?!,0 +FUCK YES!!!! RING!!!,0 +I'm gonna damn well try anyway - though still GAAAH! And when you say 'surprise' I have The Minor Fear.,0 +girl!!! where you parked? that sucks!!!!,0 +I need to keep my head warm in this cold weather.... Bummer though hate to see you go.,0 + Once again it happens when you put yourself out on the internet. You get people that hate you...(continued),0 +YES! That's what I hate. It's like they were 'ugh wtf coffee break' and had someone else finish it.,0 +good to hear your okay... I need my the gay...... Wow i rhyme,0 +best of luck to you. That sucks but you'll be glad you did it. You need to come wrestle sometime,0 +the b/f sounds like a winner to me!! Lol just messin but damn thats a crappy situation to be in :(,0 +cool i got itunes aswell but i only use because ive got an ipod and i hate windows media player,0 +Where's the "Dick" for Richard come from?,0 +Thank god. Don't pussy out on us,0 +how about "cock-a-doodle-doo"?,0 +@farwyde Hopefully we've exhausted our interest in the word "cock"; although I'm sure this could go on for many posts...,0 +Haha. Should we start in on pussy?,0 +no but that was going to be the next "cock combo" question for @design_doll,0 +Ernies on Thrusday nights. Best fucking Margaritas in the valley,0 +the "666" on my ass is actually a birth mark.,0 +Made is fucking hilarious. Good times.,0 +Fuck. So much pressure. But as good as Swingers is... He was a fucking pussy with his girlfriend. So I have to go with Made.,0 +I like all 3. Can't wait to see what you've come up with. The one that people love to say they hate is Brussels sprouts. Not true.,0 +I feel more beached whale than blessed. This pregnancy thing is a bitch!,0 +Census schmensus. My fat pregnant ass on a donkey? There better be a spa at the hotel. For the poor donkey too.,0 +The job sitch sucks. My husband's a carpenter. Who do you think is building in this economy? NOBODY.,0 +The doctor wasn't sure since I don't have a conception date. Joe-Bear was kind pissed. His quote was "Virgin Birth My ass." Sigh.,0 +:( I'd buy you a hooker but the recession is whooping my ass.,0 +make love not war. don't playa hate congratulate. sorry for the cheese. but its true. be kinda kind.,0 +Yes I mean. No. You don't hate me :D,0 +They do smell good. The girlfriend's cats were all over them they can't work out whether they love or hate them,0 +LOL - love him or hate him you have to give Cherry credit for being unique.,0 +Yeah bitch some more your parents are dead and no one adopted you get over it.,0 +NO! I am a very fit mother in both senses of the word! Gawd damn you know nothing!,0 +true. Damn. The poor world is doomed!,0 +LOL forgot about him...didn't Lois torch his ass in an episode of Family Guy?,0 +Fucking great movie!! Made my girl sit down & watch it the other...I got drunk and she cried...I love that movie....,0 +Sure 2 B on the naughty list as well but if that fat bastard doesn't drop me off this year I'll put some lead in his ass...,0 +Excellent! We'll straighten his ass out one way or another! :~),0 +@lordschmindie You crazy kids be careful it's a fucking jungle out there!! :~),0 +Friend of mine from Vegas. No he's not on here and probably won't ever be. He's a pretty damn good player....,0 +Lmao...Crazy ass... "the fear made me do it " I like that I usually say "the devil made me do it.",0 +yeah he's gettin whiny...and her dads gf is about to get popped in the mouth! can't stand that bitch!,0 +Dude this Breeze....I really wanna shove my boot up her ass. Or push her down the stairs on "accident.",0 +Nooooooooo comment on "dick butts." XDDD,0 +fuck you I miss the island,0 +I know...it sucks! We've been through it both with the district and private therapists.,0 +Mijn punt was. jouw unison (veel geld) = ad (met potentieel viraal effect). Edgy freak success = viral.,0 +Here's all you need to remember... I actually AM as smart as you think you are. I know it sucks to be you. I'm sorry?,0 +Sorry about the Packer game. Growing up Bart Starr was my hero so I hate to see them crushed like that too. Fly safe.,0 +no false that is a false fucking tweet I know what your doing.,0 +my skully's are knit personally by my damn self and hood at heart I the guy jump off harder than bodiest hipster clockin.,0 +: I know pwoplw that know people that know the fat guy...Connections: I haz them. :),0 +I love Dick Clark but why don't they leave him alone!!!,0 +BTW TaskPaper you were damn close. My sanity cannot allow me to try any more GTD apps. (not a few weeks anyway). HitList????,0 +w3wt! I was Fat Sam once :D,0 +Michael? Rant? NEVAH!!!! Srsly that sucks...,0 +@theaitch it's never said but the imp. behind "be more interesting in bed" was to me take it in the ass or be more kinky,0 +Convo...but knowing he worries kinda sucks. However knowing he's fierce to protect kidlets-good.,0 +83 in winter? HATE HATE HATE,0 +biggest loser contest SFL sponsored "advice" and recipies in my inbox walking clubs...you name it.,0 +Kill the Lights is actually pretty damn cool,0 +certain things can't just be gotten over......I hate it when people think you should be.,0 +sears baby. I used to sell a ton of those. :) I hate ceran tops anyway-the tales ARE true.,0 +Bad teeth? My husband is retentive about tooth care-his teeth are rotting themselves....sucks either way.,0 +I hate the "i'm popular and people make fun of me and I just want to write for ME again" ones. Buy a fucking journal and use a pen,0 +you're such a bitch I love it! :),0 +I just purged 3 bags via Kijiji. Feels damn good.. :),0 +Should've specified. Damn i t's been so long since I heard that I've forgotten the tune.,0 +Oh man that just sucks! I hate when there's something I really want and it just won't drop,0 +- I hate when I have to make decisions like that! I'm still only in my 30's but it gets crazy sometimes trying to balance it all,0 +- re: Retweeter that sucks - can't stand peeps like that. Hubby really is a gift! I hope you have someone like that in your life,0 +- I gotta say I'm glad it works that way - I'd hate to be "high" all the time - I just want to be functional,0 +- I can't wait until I'm a high enough level so I can get something other than that damn osterich for my Blood Elf.,0 +♫♪♫ Cock-A-Doodle-Doooooooooo Shortstop!! ♫♪♫ ♫♪♫,0 +Hahahaa!!! As much fun as a divorce!! That song is fucking hilarious! All I visualize is Hassleshoff crawling on the floor drunk,0 +Haven't you seen Wall-e. Fat people... Ha,0 +I think the 76ers need a new GM. How about Elgin Gay Baylor?,0 +Hrm that's a tough one - should do a blog post. There was one who asked me to fly to Greece and trample his cock in my heels...,0 +Or the person who asked me who I had to fuck to become a FetLife greeter. LOL!,0 +though I don't have a whole lotta love for MS I don't have a whole lotta hate anymore. Just distaste. They've come a long way...,0 +yeah some people fucking suck. Fuck em.,0 +Haha. Damn. Someone noticed. Liked that old one. Changed again something more gooftastic,0 +damn. Dude look like he was gonna be alright?,0 +ummm wat the fuck u went and saw the jobros without me!!!!!WTF?????,0 +thats my cousin valeria. she's a total whore. do her now.,0 +I say "fuck" you say "yeah",0 +HAHAHAHAHA that was finally. really tho I hate you.,0 +no way!!! how could we hate you!!!,0 +Hey you know everyone knows the whole damn song. We may as well join in!,0 +spilled coffee ALL OVER ME. Bitch.,0 +all the effing snow is in fucking washington!,0 +i was listening to that today!!!! Freak Scene is one of the best songs of all time. Also possibly 'Wagon'.,0 +She's actually latina with a thick ass accent but she thought that I was lying about not speaking spanish to avoid talking to ...,0 +- welcome to frisco on new years....damn crazy!,0 +Did you intentionally spell it as 'sux' instead of 'sucks' to fit it into the character limit? ;),0 +if the sweaty ping pong player you're referring to is me then I hate your guts.,0 +yeah I hate having to re-add stuff and losing my ratings but certainly doing this is the LOOOOONG way! Happy Hannukah btw,0 +the other thing I hate? You can't rate Podcasts or tunes downloaded via iTunes. Aaargh. This is why I still use Juice.,0 +LMAO - yeh you're probably right. I take it so personally because I only send the damn things out 2 or 3 times a year :-(,0 +Fuck me I wondered where HE was! LMAO!,0 +oh damn that sounds good!,0 +that totally sucks! I know who's gonna get grinched now! damn danville-ites >:(,0 +fat and unhappy?you're undeniably hot are ridiculously awesome(que earlier convo on this).its why i loves and miss ya! :) muah!,0 +You wanna be my secret Santa? I didn't even know I could build wishlist in iTunes. I am so behind the curve. Loser... I know.,0 +no holiday is worth that! florida sucks! but happy new year!!!!!!,0 +Emo damage?,0 +lol ok dork i don't hate you. But g'night.,0 + That is like the Buffalo calling the Rhino Fat!!!,0 +Yeah P90X does! If you "bring it" to each workout get the nutrition you need 2 recover & build muscle...you'll burn fat! :-),0 +LOL that would be scary! And yes even if it is "positively" no woman wants to hear that! :) Plump fat chubby are no good!,0 +Will they be your bitch?,0 +when is Kick Ass #5 gonna hit shelves?,0 +I am officially creeped the fuck out.,0 + Well maybe it's in California but the Gay community here is peeeeisssssssst. It's going to be a big problem for O.,0 +Been trying to find Run Run Rudolph..smart ass! (we're staring with it next Saturday)..Same versi... ♫ http://blip.fm/~14szw,0 +Kick some ass miss jen!,0 +Yes. Definitely that's the worst part. Or the fact that I'm actually a person who thinks today's version of hip hop sucks.,0 +Oh that sucks!!! So they were able to retrieve them :-( I am so sorry! That is my worst nightmare...,0 +Seriously what kind of freak trainer requires a food log during Christmas week? Only Satan! Gosh hope he doesn't tweet!,0 +Was it Reva-thy? in which case... not cute and no remote can control that ass :) Heh!,0 +laughing your ASS off? I'm not going there. I mean I'm not touching that one. I mean SOMEONE SEND ME TO BED ALREADY.,0 +damn deze is zo cool: http://tinyurl.com/urh33,0 +HAHA that SUCKS! i'd be sooo pissed. i think i found my glory zone where to shoot though so i might get 300 tonight lol.,0 +I've never liked the rainbow as a gay symbol myself :),0 +gimme their twitter and I'll bitch them out! you should get a discount :),0 +hell no i hate crowds! i have no plans for tomorrow :( what are you doing?,0 +Remind me never to piss you off. LOL,0 +it's a murphy's law type show. Like oh my god it can't get worse... oh damn it just did lol. I feel for the guy lol,0 +lol gotcha. I didn't say i thought it would sell but I can understand it better. He's wasting his time that for damn sure,0 +lol. I've never been to a proper strip club either. That's sad I'm damn near 30 (in 4 yrs lol) @savvyfatty @1hunid,0 +bwahahaha I just said "yes I'm leavin and ya'll can kiss my ass". They thought I was joking (I was... sorta),0 +Man! I hate when that happens! My kids' toys are "Adult Proof"!,0 +Where's Fat Philly's?,0 +Yes I have you and a bunch of other special people following me. I just don't wanna waste the follow on some random fuck. :),0 +I nominate @mia for a Shorty Award in #Awesomeness because well isn't it fucking obvious why? :),0 +What else is a jolly old fat guy like me to do? :),0 +No. MS Paint is fucking awesome. LOL,0 +That review was on Ain't It Cool News! Some geeks hate it I guess.,0 +Ouch that sucks. Hope you didn't get into too much trouble.,0 +Were you really making fun of my boy haircut? Now you only wish yours was as good as mine - karma's a bitch boy! Bzzz OOPS!,0 +wait a minute you tellin me after I smoke I contain heavy metal on my clothes?? Fuck yeah man! ,0 +- Ha ha true "Half a product is better than a half-ass product" but I dont want http://www.vamooz.com/ to be both!!!,0 +- ice t yes...never ice cube. he's bad-ass. was he cool?,0 +the same spirit-"I only came here to do two things kick some ass and drink some beer. Looks like we're almost outta beer.",0 +- i have a shirt from chopper dave that says "they made me hate" on the front. that could be the one for tomorrow. LOL!,0 +- your design was so un-metal that it was hella-metal. kim singhs's was bad-ass with the blingee pot leafs and purple pegasus.,0 +can only handle so much pussy control...and the doves make me cry,0 +damn son I always down for foos. Maybe I'll swing up tonite for some football peanuts and foos,0 +damn skippy. Locus hordes watch out. btw we got Samba de Amigo for the Wii this week. Very fun...,0 +Al Gore can kiss my REC credits' ass: http://tinyurl.com/5jb76v :-) I actually offset our whole bill,0 +gosh no this sucks major. What was best about it can be found in Ragamuffin. Trust me.,0 +if you give up the dope you're gonna get fat. live fast die pretty!,0 +it'll be GREAT for them I know. Just sucks to have to miss them and worry about them for that long.,0 +Haha: "Ann I think you are a hate crime." I would like to maul her face with a garden rake.,0 +Yup. On Thanksgiving day. Fucking cops. ;),0 +you forgot to precede that tweet with the word FUCK.,0 +thats what you get for being fat :),0 +ummm...just say "naw not 2day but i'll hit you up later." you get the point across without seeming like a bitch. feel mi?,0 +yeah but shes got a huge following....mi dick. LOL! ok im sorry I HAD to! =oP,0 +hahaha damn right!!,0 +fuck east-side juice??? whaaaaa-???? that shit got mi feelin like geeeezus in this mufucka! yee!,0 +naw f'real: its time for a visit man. IM such a damn mommas boy i GOT to have that connection or i start getting depressed...,0 +but damn dropping ice cream on your CHEST??? what an awesome visual.,0 +well that sucks. but you can always find comfort in your gaming console! lol.,0 +oh man....that sounds damn good! now im hungry. damn you!,0 +damn! 2 racks? on what might I ask?,0 +f shooooo! im training on GOW2. those cats on xbox LiVe don't fuck around!,0 +No fucking way. I usually take 125mg before it even does anything.,0 +I hope someone is getting injured in the process of the REAL LIFE PILLOWFIGHT FUCK YEAH,0 +Fuck tha police.,0 +I just think police are fucking pigs. Bad experiences with them jumping to conclusions and holding guns to my head.,0 +I hate going outside.,0 +Well then! Thank you for the info. When I get home I'm going to go yell at them about their serrations. Damn things.,0 +Laughing's fine I was but a wee lassie. And fuck there were teeth. Mutant goose on the loose!,0 +...because you added me numbnuts. (Also: be warned. Facebook chat + my connection & daniel's computer = Fail Whale),0 +Oooh...that sucks. I wish I could help. :(,0 +yeah its snowing and that shits not cool...(its ice cold lulz)...but seriously fuck the snow,0 +id rather use it and get it over with online lest I have to call and deal with aural ass fuck that is a utility co's cust svc,0 +yeah its not the best camera..lighting over here is of shitty yhough. Also if you move at all its blurs the fuck out of the pic,0 +that's bad ass. I'm right on portage and wise. Hang outs and drukenness should ensue. If you need help moving hit me up,0 +So did anybody end up buying a fucking camera?,0 +That's happened to me before too (replacing a flat with a flat). That sucks.,0 +Duck fat online...the internet is a wonderful thing!,0 +Yo baby! Ain't nobotty gona luv u like I gona luv you. That other boy just be a pretender and a poser. My luv be duh real thang! :),0 +Damn! It gets so cold u have to plug it car in. That's rough. How many hrs of sunlight do u get?,0 +me too that damn jay for making such catchy tunes.,0 +Im having a open face turkey sand. Not healthy but damn good.,0 +I know where ur coming from. I almost thank god the battery life kinda sucks on smart phones for that very reason:),0 +Yea I hv 2 admit after posting I reread & thought the same thng. Guess I was feelin the sis love & got alittle emo on yall,0 +Thank god! I hope they give that lying bitch the chair.,0 + Oh but I did a few others. I actually kinda agree w/ u is the funny part. Damn filter!,0 +yea tell all your crackhead faggot whore friends. I am charging for entertainment,0 +who the fuck is that asshole?,0 +WTF you speaking in tongues and I ain't even fucking you yet. Good for him then.,0 +if he calls tell him to stop being a total bitch get off his high horse and loan me some money,0 +fuck that cunt holiday,0 +what the flying fuck? How the fuck do you reply to this shit. Testing bitch ass cunt test.,0 +fucking Bretts. I am pining my hopes on Garrard ans Jacksonville cause the fucking Jets suck.,0 +Damn you broads talk about some gay shit yo,0 +Oh get the fuck out of here with that already go bo and SMH at the complete retards on here typing to you,0 +of course I joined this gay shit but I won't be saying no gay shit partna,0 +ahahaaa fuck him they pulling desperado tactics,0 +which fucking idiot this time? LMFAO N.E.R.D. said it best this song's about...........YOU,0 +we need his ass. And A.J. We need even more!,0 +Well they had to get him away from Cali somehow. And they needed a fucking ace. So pay pay I hit you check the email.,0 + AJ is a good bop too. Now I want Pettite or Sheets. FUCK Lowe. I want a pretzel,0 +You only just started hitting up the Mass Effect? Its pretty bad ass all round I reckon.,0 +damn this is some good coffee,0 +so does that make Piss Bottle Man song of the day?,0 +damn it man don't let them see how much we like it they will stop :-p @kellidunlap is so gonna push me down a hill for that,0 +those are fine you know I hate cats,0 +you ate coffee? Canadians are fucking weird.,0 +lol fairr enough :L Putting them up is a bitch though.,0 +I will still phail at sports XD And that sucks :( Stupid headphones.,0 +yeah remind me to murder that fucking golfer too.,0 +Your son is too damn cute...and I don't even like kids...lol.,0 +Ughk! That's disgusting. They must be fat girls...lol. And that price thing is true but I'm not sold.,0 +That's what yall call 'em now??? "My piece?" Not wife fiance honey but piece. Damn shame...lol,0 +Kinda like how I took my dumb ass back out to 3 different granite stores today looking for countertops!!! Lol...I have a Rob too!,0 +Wait until you wake up in the AM and see all your drunk twits. Lol. You're gonna piss your pants laughing cause I am right now...,0 +damn right,0 +Dude! don't tell me how to be a dick! Let me be yo! #dickmode,0 +LMAO! Thanks dude! I'm honored to make the cut! Or wait im suppose to be a dick right? Damn it! Why aren't I top 5 mo fo?!?!,0 +but @streko said i need to be more of a dick so here it goes: Stop tweeting so much! Gosh!! (ducks),0 +you get to buy booze i get to drive with my parents in the car. FUCK YOU.,0 +I know they get in the damn way! They always have to be so cute and nice.,0 +come to Dothan bitch. You'll find someone to make out with fast.,0 + aw shucks. you did all the hard work. Still good luck with all that man. Moving is a real son of a bitch. Happy New Year.,0 +when i say i'd hate to have to stomp a mudhole in your face that's partially anecdotal. I'd actually love it.,0 +Sucks doesn't it?,0 +OMG fucking awesome!,0 +@lilt601 @wordofsouth who will have the hottest albut out in 09 and I hate managers that try to rap ie L-Bain lol,0 +You can never have a fat enough pipe for your wifi.,0 +A lighted whale! How cool is that?,0 +Isn't the blanket recall happening because all Irish pig farmers use the same tainted pig food products?,0 +beachwood bbq misses us. i had a dream with kyle in a pig suit drinking pliny the elder. weird.,0 +I know how that goes. People piss me off. .. alot,0 +@iBastard damn right. Someone needs to drive me around when I visit! My vote is for a convertible 89 Mustang lol.,0 +sickness gets recycled in my house. it sucks :P,0 +you need to come visit bitch. i'm only 30 mts.,0 +:( hope you feel better tomorrow...sucks to be sick to begin with but having to go to work on top of that...double yuck!,0 +Oh wait. Damn. I do not have all the ingredients.,0 +Got to make sure gay people don't reproduce and overpopulate the earth you know.,0 +If you want to hate Leslie Nielson watch "Dracula Dead and Loving It.",0 +After our chat earlier this week your tweet is a twerp. Thrive or Dive chick?,0 +OMG TITZ! R CANADIAN TITZ MAPL FLVRD? *SUCKS* NOPE. TASTES LIKE THE INTERNET.,0 +oh hai! here i am! *touches you with a whale* hellooo!!,0 +but we did that yesterday. or tomorrow? fuck is confusing being from the futr.,0 +what a loser. Yeah we're at victoria's house. Stupid victoria made us miss the ball dropping changed the ch at the last sec.,0 +oh yeah. Forgot bout the weather over there. Damn i hate being the last one to celebrate new years.,0 +--- each confit will make the fat saltier (it's already pretty salty) and when it gets too salty I'm deep frying with it.,0 +#NAME?,0 +--- you may be working from the same book as me; I'm confiting pork bellies (and then a cryovac'd tenderloin) but in pig fat,0 +I am Horde you Alliance bitch! Ilu. :),0 +no idea at all. Hate weekends like that!,0 +Thanks Amel. Virtual twitt chocolate is actually very healthy with no fat & no calories. :P,0 +Can you imagine having that job? I would hate having to stand there & listen to folks pee. Seriously - not a great job.,0 +oh my..that sucks butt..hardcore..wow,0 +i have to take out my battery and reset the damn dingleberry everyother day! WTF?,0 +can't u take a sick day? fuck him...Ill watch Jordan if u need me too. I don't work tomorrow,0 +sounds like it sucks i sorry,0 +That's bad ass. I would also like the ability to move immovable objects.,0 +I HAVE THE LOOKS AND SOUL OF A FUCKING GODDESS ARE YOU JOKING?! lol,0 +yeah I tried calling... Even left him a long ass message. @aarontait come back to us!,0 +Dread leads to hate hate leads to suffering and suffering leads to the RAGE!,0 +Good call Cabel. Why the fuck is stuff like this still a problem in 2008!?,0 +No fucking kidding eh?,0 +I hear you. BTW the Jonas brothers are gay.,0 +It is easy and lasting me a long time now before I go in to have them retwisted. And I hate maintenance myself. :-),0 +That really sucks. I am sorry to hear that man! What am idiot judge.,0 +Sorry to hear that. Sucks! Who is the supe?,0 +that! and I hate the plane-gobblin!,0 +Like..."ON" you? Cause if so we SOOO have a deal. Always wanted to eat BBQ off a woman's ass... ;-),0 +Do you remember "Dream On??" Dude got HELLA ass...on accident!!...kinda like I used to...LOL!,0 +FUCK! Good one!! Staying with TC Maverick & Goose singing "Lost that loving feeling" Oh my that HAS to be top 3...,0 +Well that's half the mystery. But now I don't know what you were even talking about... o.O I'm been a twit FAIL today...damn job,0 +damn son now u wanna bring the kids into it? lol. nice one. i got one for you just wait.,0 +Same -- sucks. Back in the day mobo manufacturers would issue firmware updates to address this. Apple? Nope :(,0 +I totally have to jump on that train with you: "Damn M$!" It's therapeutic.,0 +ugh.I've been up all night. Dh snored tossed all night.ur on vacay y up so damn early?!,0 + Pittsburgh needs to stop exporting all the CMU grads out to Cali. Damn Cali w/ their great tech jobs nice tans & fake boobs!!,0 +you damn skippy..... but it would have been fun...you missed out!!,0 +They're rioting at a college level! Did you see the pool? THEY FLIPPED THE BITCH!,0 +DAMN YOU! I just woke up and now this. DAMNIT! Oh baby PLEEEEEEASE! Give a little respect! TOOOOOO MEEEE! There happy?,0 +I almost thought I'd have to participate in Day w/o a gay because Mathias says I'm gay. Then I realized I have today off.,0 +RODNEY ON PAGE 1! However covered up by Lost. FAIL SCI-FI! FAIL WHALE.,0 +Drive slow. And damn I missed Roxy last nite! Did she talk about how she got in the game or how old she was?,0 +You know what pisses me off! That I cant fight a damn Russian or Euro ever! It takes freakin long to get a match started,0 +folie a deux will it get old?! @cassiemeltesen duuude i know this sucks!,0 +@cassiemeltesen no wonder they call us the three fat ugly girls! haha,0 +ok! man what a start to the new year fuck my life,0 +Um how about nerdsville you fucking nerd,0 +holy shit Ninel sighting that stiff bitch is kicking ass covering for a broken windmill blade,0 +im out troll but dont worry the hate continues fuk face,0 +Have some kick-ass holidays guys.,0 +I had a good holiday here in Alabama. Haha getting a new blackberry on January first cause my phone sucks. How was yours Mix?,0 +i hate you so much right now. my ass is fed up with this snow shit and it's only been a week since i've been back up north!,0 +hey who came up with your name design?? that is cool ass design...,0 +Hate to admit this but I'm a basket case at the end of "Edward". I'm tearing up just thinking about it.,0 +Oh great another fucking video from you... Have you ever thought abour retiring? LOL,0 +I hope not there is no bathroom where I am parked... O' Damn....LOL,0 +I heard the same thing about eating pussy. I heard a mouth full of now and latters makes the pussy taste better!,0 +Cum has lots of vitamin c but does she swallow?,0 +Could be worse you could be stuck in a nasty ass truck stop right? lets hope you get something tomorrow huh?,0 +What the fuck you talking about ass cap? You already have my number and no I didn't call your ass!,0 +Those soundboards are pretty funny the lady is like it is illegal to call a 1800 number he is like FUCK YOU! :)~,0 +damn ur in Vegas already super trucker @@ www.TruckingRooster.com @@,0 +Is it too far of a stretch to just say that buying DRM'd music sucks? Amazon sells mp3s too y'know.,0 +damn...u know i 4got that...lol...how u?,0 +Ah!!!! I hate loud auto-playing web video. eeek!,0 +hahaha what did thedivasoffial say to you? i hate to say rofl but i'm actually rolling on the floor at your comment,0 +view my douchebag of the day video you made at youtube live! http://tinyurl.com/6y8kae comment and i'll freak out haha,0 +hate on bush all you want he can dodge his shoes http://tinyurl.com/63gsj7,0 +...would love to share some ideas (read: have been looking for a guinea pig to play w/ twitter + teaching @uwgb) Interested?,0 +I wont pass out but pretty sure I'll make an ASS out of someone. Oh well good day just the same.,0 +FUCK I'm late. :),0 +If your next tweet is "pull my finger" I swear I'll piss my pants!!!,0 +mmmm fat kid pizza.,0 +passing gay marriage bans the government is doing just that. regulating personal relationships. not the government's job.,0 +Full confidence in your ability to kick ass in the new work... *raises a glass in spirit*,0 +I had to go to two stores to get all 4 books. Hope she likes. She's 14 but kinda a nerd so hopefully she will. lol,0 +juiceegapeach I was gonna ask Jia I am lost I have resorted to reading. LOL I first heard about it from MBD's video I hate boring blogs,0 +i know. But let me tell you something: lunchbox sucks donky ass :)),0 +sleepy so fucking cranky!,0 +I hate it just want to start trouble,0 +your code sucks! ;D,0 +fuck you and your weather...I will beat you soon with the california sun and constant 75 degree weather! You just wait and see!,0 +Damn. 11a-2p RT @Orbitcast: New "Kids Stuff" show launching on Sirius XM Kids Place Live http://tinyurl.com/a49xds,0 +Oh damn....I'm so sorry honey...,0 +no worries Ryan - I'll send some home with Kelly or else it'll end up on my ass.,0 +that sucks - hope you feel better. Too bad moms don't get to take sick days.,0 +but you gotta love Gertrude the Groupie and Rolland the Roadie and Who the Fuck is ALice? unless you Got High and You Missed It!,0 +c'mere and fuck me already... I need it,0 +ctrl + tab is still ok. i just hate the right click refresh OCD many support guys have. even some members in my team! :(:(,0 +@michaeljamesway @frankIero damn all of you for constantly talking about STARBUCKS!!!! now I really want some... =(((((((,0 +The same reason I hate that I love Matt Pond PA and Rhett Miller.,0 +Great! I wonder if I can figure out a way to set up papal on my blog to accept payment for GS cookies...other moms will freak!,0 +I might be able to pull off the Ass-Miss spirit but not in the Christmas spirit!! LOL,0 +you go with your bad ass diva self!! LOL,0 +re Twilight I've not read it but my coworker says it's brill cuz it's sexy w/o any sex. She also said the writing sucks..,0 +Done. I've had my ass kicked by a duck before. Not an experience I want to replicate.,0 +damn yo FB status drama .. Intense! @neeci you will be missed. Dont forget to write! Bon voyage! A riva derci! Sayonara!,0 +That was an *if* I just hate brushing knots in my hair.Id rather have it polished occassionallyby the airport shoe shine man,0 +But a lovely nerd indeed.,0 +Whatchou talkin bout Willis? I just twatted your ass!!!!!!,0 +Go look at my profile....it's the sixth one down. Do I need to come over and bogart the sticky stuff from your ass?,0 +Don't freeze your ass off for me. Stay warm and toasty and mail them whenever.,0 +Fuckin A it does!!!! HAHA How the fuck are you my fucking friend?,0 +I am Supreme Nerd. Apply for a professorship at MIT now!!!.,0 +@TyIerDurden yes. Always. What the stamp look like? .: either Tyler was here or my hand print on your ass in pastel orange !??,0 +all too fucking familiar,0 +are you aware that Layne refered to you as a "Twitter Whore" lol,0 +that's good.....I reallllly need more RAM but saving money is a bitch.,0 +Fuck it! You'll do it live!,0 +MegaKoko sounds pretty god damn cool. Maybe hook a laser to his back and stove lighter and you could have hamster wars.,0 +Who on Earth (besides the subscribers that are ankle deep up your ass) call it that?,0 +@alynndeluc OMG I wanna play! I hate studying!,0 +gah stupid sixtyone and inability to share music. I hate relying on Youtube but: http://is.gd/1YVl,0 +Damn those USV guys are awesome. This idea is great.,0 +dear Ed you're incredible at what you do. plus this song is kinda gay..... well... really gay.,0 +Dear Eron: the drums sound fucking incredible.... Er.. I mean godly incredible.,0 +damn man u have an amazing boss!,0 +That sucks that you got screwed present wise! Come on people! I was very blessed this year.,0 +Oh ouch. What's worse numbness or pain after? I hate both. ;-),0 +damn almighty,0 +...see how u kuup switching i up and changing ya damn mind! i thought it was Korea? now madrid or milan?? been there done that!,0 +on WESTCOAST TIME u early ass eastcoasters!!,0 +What up! I'm always learning something new frm u every damn day. U r such a treat. Lol,0 +"""RDBMS done right"" sounds like ""gentler kind of pain in the ass"".",0 +you could uh tell me all of the totally cool things about you where you've been who you've opened a can of whoop ass on.,0 +spew! i hate mountain dew! it tastes like...oh nvm.,0 +Settings will not let me upload an image...for 3 days now the fail whale says Running at Capacity I have a feeling its the cache?,0 +@socalcub I made a spice cake for @polomex....cum git sum!,0 +@Cupidboi79 @PaulKaplan5 damn I have only 1 bed and 1 cake. Whatever shall we do?,0 +go kick that owner's ass.,0 +They're awesome - lemon ricotta cookies. This is only the second time in my life I've burned myself but damn does it hurt,0 +Damn I NEEDS that League Pass Broadband...but hey...beggars cant be choosers...who's a hypocrite?...i am.,0 +yeah esta aqui..or whtvr the fuck....I lived in D.C. for 7 years..of course i dont know how to spell Colombia...just said "D.C.",0 +Damn I remember bein huddled five deep in front of a WinAmp browser in the West Towers Dying over this!!,0 +damn I tought I had a ton of email addies.,0 +Hope so but damn. I want out of here. *grumbles*,0 +the drive to Bear sucks tho. Very windy (curves not air) and traffic can be a b*tch on busy days...,0 +Yeah even took the damn Silver Surfer shirt off the wall. Had to be crackheads. No sober stable person ever liked Silver Surfer ;),0 +I've asked him for a sentence about him for ages :-) The whole about section on .org sucks and needs a refresh,0 +go fuck yourself,0 +structure isn't quite the right word ... nor plot ... more like notion ... also ... it's hard to make myself not write "fuck.",0 +i fucking hate your team all over again.,0 +that sucks - hope you feel better soon.,0 +yeah I did - whatever do you mean? haha I'm really glad I didn't do a solo pic though - hate the way I look in pics,0 +mix you will be fucking awesome,0 +how are ya? I hate when my boyfriend hogs mine too thats why we ordered him one for Christmas :),0 +from what i hear from my parents... and newspaper he sucks. not a suitable candidate,0 +LOL damn broke the screen? Tough love? Word? Haha and yea that would be a good name for u..truth sells :D,0 +good call Boo Bitch Boo x2 Dumb ass plaxico,0 +I know what u mean my IM2 HSDPA sucks as well,0 +Damn me and my drunken twitters! Lol...but I had a point.,0 +yea b&b is awful! olivia must have needed work so they wrote her back in as a favor. eva sucks!,0 +gloria gets too many damn breaks on the shw! i guess she's gonna fill kay's head w/who knws what!!,0 +ur cultured as fuck 2day huh,0 +damn..im tired just reading that shit..we gotta have a bday shot on sat!,0 +ur copping it? i offically hate you! the video it takes is ridiculous.,0 +Agreed! I hate internet explorer!,0 +we're still doing nerd night without her?,0 +Perhaps at least a warning that it resizes the fucking browser window.,0 +What the Fuck? Did I die? #6wordepitaph,0 +Especially in a world of 30" displays. The corners and sides are no longer infinitely large. They're WAAAAAAY the fuck over there.,0 +e.g.: Mac: Windows sucks! Fitt's Law! My menu at the edge! NeXT: Whatevs n00b. My menu is right here where my mouse is. Suck it.,0 +I nominate @Tony_D for #coffee because without it he might never FINISH HIS FUCKING NOVEL.,0 +Damn I followed you two days too early. Mom was wrong procrastination can be a good thing!,0 +Hell no fuck BH I have a new host,0 +Oh but you got to sleep those lovely lazy extra hours while I was sliding on ice trying to save my ass for bruises from V.,0 +thanks for the positive words of encouragement. . . we are doing our best to kick ass. . .,0 +correction sir - I am a gay man in a woman's body as we already discussed. I just want to have "big gay" fun!,0 +I hate Sunday nights becoz the next morning brings the budget meeting. Bleh...,0 +Hello Rachul this is the internet. Soz but I just a bit hate you right now.,0 +vampires hate lights tp twilight vampires GLITTER in sunlight.lmao.and twilight werewolves dont need fullmoon to transform. wtf.,0 +thnxs that's what I will d today. wrap up the end and plan new move. damn that feels better.,0 +move over give me some of that hate monday,0 +You lyin ass Cheese Sammich We all know your Gay so you wont have a hot GF unless its a Tranny named Manny,0 +Hahahaha made you laugh again. DAMN im GEWD motha fucka,0 +Sliders was a fuckin Kick ass show meng I miss it to,0 +Ok you are gay for watching that show you damn flake lol.,0 +HAHAHAHA maybe but I shall not say but HELL FUCK YEA IM GETTING SMASHED AS FUCK TONIGHT... DRUNKS ALL AROUND BABY!,0 +Damn you! I think you got me sick. :(,0 +Good is fucking Gracious? Sounds naughty...,0 +You'll get a million replies so here is Japanese dirty words: Manko(pussy) Koshinukei(chicken) Teme(bastard/bitch),0 +I actually WANT school tomorrow as it's my work day and I want cancellation on WED. since it's exam day. Damn my luck.,0 +Hahaha I asked my dad to change the channel he asks why I tell him he goes "Oh come on! I hate this." xD,0 +thats a awesome ass hat lol,0 +no it's all good not hungry yet just want it to get done. I hate my stew not to be perfect lol,0 +glad to hear you got comments and not just DM's. I love to hear people work it out not bitch and hide ;),0 +no fucking clue,0 +http://twitpic.com/uzdf - that looks fucking sweet!!!,0 +it's the season for it....damn u satan,0 +what the fuck so what you wanna like twitter battle or some shit? I mean 'the fuck is you sayin'??,0 + Homie...those pants piss me off. How is that even comfortable or even fly? lol.,0 +You are sooo damn going! ;__; Don't ditch Derek on his special day!,0 +that sucks. Why is your vision all messed up?,0 +lol. So damn bitter this morning.,0 +ME TOO! holy damn..i think her cell has been disconnected too...,0 +hah! nice. gunther parties are the best kind of parties. :) next is rhianna. all those songs we hate to love. lol.,0 +Awwww....DUDE. That sucks!! Hope you find a paperclip and a rubberband!!,0 +All I can say is........MEGAN FOX CAN KNOCK ME UP!!! GAD DAMN!!!,0 +hahaha internet is damn slow today,0 +fuck .. dman scary .. it can happen to anyone of us .. poor guy .. :(,0 +hey...jus saw ur itinerary ....pretty busy schedule... will definitely cum out dere...werever in mumbai u cum...2 meet ...,0 +I never realized the singing was so damn fun on this. I got a flawless on Hungry like the Wolf on medium on my first try.,0 +Robert :) Sorry I hate when I miss type names,0 +Maybe that is the prize eh? I mean in a circus that capability could command big bucks...side show freak makes good? ;),0 +I hate that I get scared and parnoid when my house is quiet,0 +Go girl! Use that power! ;) (That's pretty fucking cool.),0 +@levigroker The ambiance at Sushi Jianken is what husband doesn't like. He thinks it's poser-metro. But the food is great!,0 +I actually appreciate the Goldman's unending seething hate for OJ. It warms the heart on those cold cold nights.,0 +my ex swore he wasnt wit a girl that kept calling and had pics in tha cell of her.friend shyt my ass..never introduced me to ...,0 +unless you don't give a rat's ass if she catches you. or if you even HOPE she catches you. or if you're in the bathroom...,0 +with my fat ass fingers its is simply amazing I get anything typed well....,0 +You gonna change your mind now and come to CES..if so give me a tweet kick ur ass in someww pinball.,0 +LOL! Awesome! Totally beats my "Knocked Ann-Margaret on her ass at Tiffany's and didn't recognize her" status.,0 +that is one bad-ass Treasury! nice to see some new artists in the mix. I heart Charles Chuggypeg!,0 +damn i started reading the 1st chapter of aria.i think i may be hooked,0 +it IS! It's the version that Dr. Whats-his-name died to on ER. Damn song makes me cry every time I hear it.,0 +Same here. I feel like a slut for breaking out the Monster drink. This is on top of two venti vanilla lattes I've already had.,0 +ha! Probably Lee. That bitch fights dirty! You can totally tell. Look at those shorts!,0 +Thank you for covering the garden! I would hate to lose all those wonderful greens to a freeze.,0 +damn nature you scary!,0 +did it really? i fucked that bitch up!,0 +Wow you're hard core. I was just gonna you know exercise more and try to eat less. Damn. :),0 +No lie when I worked in publishing we had an obnoxious customer: Richard Head Ph.d. You got it that's Dr. Dick Head.,0 +Then my dad would either bitch or just leave the torrents running 24/7. Besides I'm too cheap to buy a DD-WRT / tomato router. :(,0 +Ah I hate that. We get the mormons every now and then. Last time it was a really hot day and my dad offered the guy some water. >.<,0 +yeah in TX they'll shoot your ass - then ask Qs,0 + have you googled yourself lately? bad ass aint no joke.,0 +that really sucks. I feel sorry for all retail workers over Christmas. I didn't have to do it last year and it was wonderful.,0 +fuck! is this guy the new jesus? i just don't get it.,0 +@shallomj i would resent these comments but i fucking agree with you,0 +damn i was worried if you knew it was me,0 +Shit. I have been pretending to be the wrong damn thing. Effin' Vonnegut always ruining my day... :),0 +You're on. I hate year end "popular" "Best Of" "In Review" stuff.,0 +yeah. and watch the fucked up guy on the front page of Blog. it sounds like he is about to have an "emo" speach.,0 +50's new video game is supposed to be setup like Gears2. Hopefully it sucks less than his late ones.,0 +I was wondering the same thing. Watch quiet a lot 'Comedy Central' but did not come across this guy! Damn me!,0 +He's back from w.e the fuck he was lol,0 +Damn thats a serious studio session,0 +Damn some in-n-out would hit the spot.,0 +I hate you. To compensate I continue to write Ravanayan.,0 +I'd just hate to be known in my career as the "diarrhea guy". Happy Holidays to you too!!,0 +ok bitch update this status asap!!! Ya digg!! See u on facebook love! :),0 +wait. nevermind. DAMN YOU SLOW BRAINWAVES,0 +i wish dick cheney was gay cause then he would ve shot more ppl in the face,0 +then fuck them. go to a mac with an iphone hooked up and jailbreak it. thatll teach em,0 +would you be implying that im gay or youre blind?,0 +Geek. Only because nerd is to harsh.,0 +nope I kept fucking up anyways,0 +Ha I am a whore but you know you love it. Now let's go watch The Rocker!!,0 +damn that is purely awesome!,0 +Sweeps Week: Meryl Streep plays gay arsonist on COPS!,0 +I get the Twitter 'fail whale' on days when my broadband strength is low. More to do with connection I think than capactiy.,0 +I just woke up from a nap too. Felt damn good.,0 +Managing Group Politics With A Bitch http://tinyurl.com/axmzxe,0 +damn. you're taking off tomorrow? you must be sad to leave. sounds like a pretty busy week and a half tho - you hardly twittered!,0 +why you hate dhoni?,0 +Listen Guiness. Get your paddy-ass outta here,0 +Yo my internet is working again! damn you never know what you had til its gone...,0 +its been too damn long! Really since the AHH Breeding Ground...,0 +Is that a monkey in your pants...or are you just fucking crazy?,0 +Ugh that frickin' sucks. :(,0 +I nominate @memorieskillme in category #humor because this bitch makes me laugh!,0 +send them instrumentals man! im performing a peas gotta have it track tonight too fuck it,0 +I loved the band name:"Gay Biker Nuns on Acid". Doesn't exist but we had a kid in high school convinced it was a punk band.,0 +Yeah...I know...its really gay. I ended up staying up till 2:00 AM,0 +do the 'fuck em girl' dance.,0 +supposedly its what they call gay dudes in the south. Bear meat is supposed to taste sweet.,0 +Damn I need to start watching Dexter have only seen 2 episodes from season 1. I have a feeling it's my new favourite show.,0 +Wow that sucks :( How long are you in a cast for?,0 +damn you got those up fast! good deal. thanks for the props,0 +If spelling things ala Francaise will piss them off then yes it should be - mabad.,0 +Oh. Damn I was hoping for my share.,0 +pssst my massages include an intense ass massage 2 die 4. Don't forget a nice foot rub too. Usually will lead to the E zones,0 +hey Belladonna it's Mike aka FFF (Christy Canyon nickname 4 me-future florida fuck) A true pleasure 2 talk 2 u on air 2night.,0 +hey there it's Mike aka FFF (Christy Canyon nickname 4 me-future florida fuck) A true pleasure 2 talk 2 u on air 2night.,0 +I've owned all Metal Gears(luv 'em) & own LittleBigPlanet (like it).But hate crossovers- esp. from incompatible game fictions.,0 +Obviously helping disabled children is more worthwhile than what we do! (But to say we sell "gifts for people you hate"?),0 +Didn't do it..Lucy and Ella(our Lab) would freak out. :) So tempting though...,0 +omg facebook has claimed another victim! hope you're at least kicking ass!,0 +No I don't. I hate downloading crap to my phone. Feels like I'm bogging it down. I'm weird.,0 +Yeah. I hate vinyl. We have tile but I have the same troubles unless I clean daily. Gonna try my all terrain steam vac on it!,0 + What a router-nerd. Building an end table. Just rough work to practice.,0 +For pussy? @flintacious because no one can keep a secret. We need to make a man pack....,0 +I hate to say it but I get like 4 spams a month. Maybe. Not sure how I'm able to do it. And I've had that email since '05.,0 +As far as food the only thing I've had there is a burger during happy hour. It's like $2.99 for a burger & fries. Pretty damn good,0 +fuck rules. Stay there until they ask u to leave. Then just switch computers.,0 +fuck if I know man. Were guys & don't think of that shit until afterwards. U usually go crazy with the camera but not this time,0 +Believe it or not both of my parents know how to text and my dad is over 60. They sooo kick ass.,0 +Sorry about the bday thing -- that sucks. :(,0 +Very nice photo! Fat face?? LOL I think Not,0 +the miracle was getting the fucking hooves out,0 +yeah. This sucks bad. I am in an icicle tomb...tampon...tank.,0 +very cool. A girl nerd huh? That's a bit of a rarity and I wish there were more in this world. Girl geeks/nerds rock!!!!,0 +damn is economy hitting you that bad?,0 +I'm in Ewston babe. Sorry to hear about your job. That sucks esp. before the holidays.,0 +Dang! Looks like InGen has moved away from dinosaurs and are doing 70's tokusatsu heroes now. Damn you John Hammond!,0 +it was so busy last night! Then hella people came in @10 min till closing & I was all mad cuz I had to make their damn drinks haha,0 +benson- Dude fuck yea. I'm gonna bank tonight,0 +Oh a fellow spelling freak!I can't stand looking at a wrongly spelled word.Haha one of my many quirks.,0 +I hate #magpie and I don't think it's neat. LOL,0 +I can't abide Family Guy I hate it more than David Dickinson and believe me thats a lot.,0 +Haha yeah he's called both but Father Christmas is just the typical English name for him.... and yeah hes fat lol,0 +damn! I hate to miss that but I'm in Vegas again.,0 +tell them that the Mirage is a bad neighbor. They played those damn volcano sounds until 2am. Bastages.,0 +normally when i challange..it's more of a "Fuck you leave me alone" responce,0 +H-A-T-E HATE HATE HATE! But why? Two game losing streak?,0 +Any chance of some Charge Tees for Fat Guys? American Apparel hates big folks.,0 +ah!!! despereaux lol. Maybe not sure. I hate in 3d they always copy an idea a re do it this one is like ratatouille,0 +It's....hmmmm....unislamic unkosher and full of animal fat. ewww I'm still grossed out.,0 +PowerPoint sucks; even good shows that take tens and tens of hours can't compete with Key Note!,0 +DOOOOOD. the fucking accent/cadence. good call.,0 +Fat blonde male overheard "Yeh my body changed when we had children too!",0 +argh I hate it when that happens,0 + I pick slut red. Just to stay on theme for today.,0 +am i weird? i hate baths!,0 +will most likely be huddling & bitching about cold also - you'd think after 30something years i'd be used to it. hate. cold.,0 +@thronkus totally expecting the spotted dick too,0 +bleezard! hate our local news: "top story: snow... in other news: snow... and hey snow!" they live for this shiz,0 +will try and get them to contribute something to the process - just hate the morning hubbub b/c i'm doing everything!,0 +not a control freak - would gladly give up any of the glamorous morning duties! will continue to sigh loudly for now.,0 +wow you must be payed out the ass im in thw rong bizness hahahahaha,0 +good fuck that greasy shit!Veggies all day fam!! even seth be on that salad all day.he eat it with his hands but still!!,0 +yo i just listened to "live and let die" Werdplay feat. Mic Geronimo..that song is so fucking insane.,0 +No it's more like "You're gay!!". You hafta spell it out.,0 +No I don't get it. I'm sorry I must live in before the fucking ice age. :],0 +Yeah 2 and a half minutes per ass cheek.,0 +I aint talkin bout food hungry ass nigga. Im talkin bout the takeover!!,0 +U wanna give me more... :p ...fuck me and feed me huh? LOL,0 +If u talkin Teyana Taylor. @blakbillgates is right. she don't like dick G. sorry.,0 +I HATE YOU *eats spoon full of oatmeal and slurps down diet coke,0 +My shit is done already I got a trilogy called "I hate rap" "Naw just joking..." & "Rap is dead but buy my shit" ,0 +its a freakin club u don't need a damn invite ha!,0 +umm just put on sum gloves Jia...damn stop being so prissy lol,0 +well damn lol,0 +well damn dats wild...niggaz aint shit ugh,0 +well damn I hear ya.yea kill that now if u feel like it may be a even bigger probelm down the line.,0 +damn ol boi still acttin up?!,0 +I hate waiting for them to pick up...in London you can order via txt with geolocationing on your iPhone too,0 +you're a dick for the Heroes spoiler.,0 +lol why u hate winter??? hehe lucky we got summer @ xmas!!!,0 +davidlano good luck..... I hate doing any sort of public speaking.....,0 + for sure... I still need todays epi too..... But I hate what they're doing to Todd... They're completely ruinning him :(,0 +did you just call me a bitch Grunny????..... ONYD!!!!!.... LOL,0 +I hate promises cuz they can always be broken...but I trust you so hopefully I'll see you again soon!,0 +I hate projects like that!!,0 +lol I know... very well mannered... aren't I? But it's TRUE!! I hate that we have to choose such a small number... not fair.,0 +Damn right.,0 +No crab? Don't be a bitch. Twitter party indeed,0 +Yeah but I still don't give a fuck about Xmas..,0 +aww man...that logo sucks...i feel your pain...good luck with that one buddy,0 +eviscerates chris matthews: http://tinyurl.com/6becmm if he runs fuck it i'll move to PA to campaign against him,0 +that song is fully barfworthy. Only song Nas ever did that was worse was fucking Nastradamus aka the song that made me hate Nas,0 +not hating on it was written but it was by no means better than illmatic and post I AM... Nas fucking blows extra hard dick.,0 +ahhh that's fucking hilarious,0 +are you sure you know what your getting yourself into by following my twitter whore account?,0 +Nope. Carson City pretty much sucks ass.,0 +Oh damn it. I should make it more drunk-tweet friendly then. Doesn't your twitterware allow you to just click on my face?,0 +hahaha. Dont hate! hahaha. you know you fcuk with Young Dick,0 +Nigga when you see me in the streets it's going down! chitty chitty bang bang bitch ass nigga,0 +I didn't want to say anything for fear of a split screen of @chrisbrogan driving down to kick my ass...,0 +Everyone knows .ass is inherently superior to .srt - it's in the format.,0 +Relax... I'm not trying to 'convince' you of anything. It's just that we all prefer files that have been subbed in *.ass done well,0 +So sorry to hear that. That really sucks. Pls keep the twitterverse posted and let us know if there is any way we can help.,0 +some aerial shots of the Mitre 10 fire http://tr.im/20c2 - damn helicopters and their awesome vantage points,0 +riding home with walt on my back... that way if i fuck up i can just jump in his jeep! thanks tho :0),0 +Ok that fucking skit had EVERYTHING. Why have I never heard of this man this Daniel Tosh? Zomg!1one,0 +That sucks! I can't imagine it would be easy with him saying "What??" to everything you say.,0 +hate me?..... If anyone needs me ill be bawling in my room for 3 years 2 months and 4 days..,0 +OMG! I hate when people say that!,0 +$5 dick? any relation to a $5 footlong?,0 +that is so true! I hate summer when it's here and then I hate winter!,0 +wheres my laptop slut!,0 +I hate when I do that. ;0),0 +Booding. If you're feeling less emo don't forget Sobranie Cocktail: http://bit.ly/vOYu Took some of those to a festival once...,0 +@perrybelcher a she nerd with an attitude.,0 +I KNOW! TOO FUCKING CUTE. CANNOT. HANDLE. *FAINTS*,0 +I'll agree. That Michigan bill sucks double jeroboams. Like exponentially! Those Michiganders are suffering enough already.,0 +...o_O that's mildly terrifying. the bears not the adorable pets. man i'm so pet deprived. college sucks lol,0 +"""They're unlawful combatants."" Uh no Dick *you're* unlawful imprisoners. God I hate those men.",0 +how fucking rude of them!,0 +Well perhaps banks are too fat in how they do business. I dont know that it's true but many businesses are too fat,0 +*hugs* fuck em. Listen to ur Ipod dont let da man get ya down. :),0 +ha! I literally giggled...no fake lol here. I hate going on ODB (that's www.daboard.com tell em JIMMYSTICKS sent ya) on the mobile.,0 +You're fine but people with a Blip every 3-4 mins get the fat unfollow.,0 +It's just not fucking normal. It's not.,0 +come back to us Jason - Damn the Storms!,0 +wow dude. sucks. See you uh...next week then.,0 +ahhh. Best fucking yak ever,0 +I really don't like Stuart Maclean's faux stumbly bumbly wooly sweater style. Prairie Home Companion wannabe.,0 +Ass kissing == traffic == profit. Unfortunately.,0 +The resolution sucks too. It's not water- or fire-proof and it can't be encrypted forwarded or archived.,0 +The internet never sleeps and I work in online marketing. So yeah I can understand why it sucks.,0 +Yeah. it was a joke because of people saying Bob's 'cunt' wasn't a form of art. Arts what you make it. Even if it's gross food.,0 +That sucks =( MCR fans are giving up on them cause of the break. Just wait MCR will make a HUGE come back and laugh if off. =D,0 +Yeah. I let them know. Surprisingly it was easy to find creepy pics of Bob and Gerard. The sig sucks but gets the point across.,0 +longboard + fat hill + car,0 +dude you're fucking insane,0 +you know what it really is i hate texting ever since i f'd up my keyboard so i only tweet from the web really so i forget :(,0 +can i get a good night damn!,0 +nope it's spent already unfortunately. Fuck christmas. lol.,0 +i like that song you posted earlier the one with the ship in the background. and don't hate on chat he cant help it lol.,0 +Give them info about real Christians. The Episcopal Bishop in NH is openly gay and has been amazing influence on our state.,0 +Sorry to be the science nerd but salt is a generic term that refers to many chemicals. So road salt != ocean salt.,0 +fuck a sunburn. what are you 8? im on some shrimp cocktail and champagne by the pool. get your grown man,0 +damn you and your total lack of winter,0 +i've been up for damn near 40 hrs...i'm trying to go to sleep...,0 +now im lookin' at all the failed stripper pole attempts..damn u juicee...damn u,0 +Yeah I hate when people try to tell me what I NEED to do on MY website.,0 +No wonder Kevin never replied to my e-mails...damn loser!,0 +EXACTLY! GOT DAMN!,0 +Haaaaaaaaa damn Jay,0 +I feel you bro I just hate the angus ill I love that southern chicken sandwich try it with mac sauce.,0 +was Twitter freak before now have phone. Look out!,0 +I love My Big Fat Greek Wedding! It's so hilarious. Tonight is a great night for romantic comedies.,0 +Oh I want the page resident on my website. I might just do a total overhaul. Hate to refer people to separate site.,0 +I was trying to download an older Fanboy Radio podcast with Jim Mahfood as the guest but my internet sucks...lol.,0 +Mine has been private for the last few days. You want to follow me-go for it. Me a lying cunt? Whatever.,0 +omg. i'm in baltimore right now and I TOTALLY forgot this is where you live!!!! DAMN!,0 +I think "pant" is some strange fashion insider word. That's why I hate it- ha ha! ☺,0 +I hate missing jumbos.,0 +I saw forest gump once and that was enough. Replacing a retard in with an old man does not constitute a new feature.,0 + Every time I'm on the computer downstairs. I hate that thing. I feel like there are retarded monkeys inside pulling switches.,0 +Sorry J We can't afford bad equipment in our work. I'll give good thoughts maybe put in a good word with the fat man up north,0 +those puppies get heavy. believe me. and clothing is a bitch to fit. cherish your perkiness.,0 +My book Everything Sucks comes out in August w/ HCI books. Keep an eye out :),0 +"""Hate to tell you... there is an arctic storm coming through California. You might want to pack the Chicago wardrobe"" WHAA???!!!",0 +Yep he left with supposed "mercury poisoning". Mamet said he apparently "left to become a thermometer". LOL. HATE PIVEN.,0 +No fucking way!! >_< They aren't even an a'capella group!!,0 +Don't fuck with a don at this foodsies shit.,0 +Damn that was fast woman!! I didn't even finsh my post yet!!,0 +Allie spelled it wrong too. Tell him I said if he messes with u again I'm fucking him up,0 +Ugh we used to hate him. I remember when he said he didn't like me,0 +Your all weird. And allie is a drunk army slut!,0 +Thanks! Chilling out at home kicking ass with friends is better than wearing a suit and tie to dinner.,0 +great post on the gay rights thing do u think it will happen years end?,0 +i hope you kick his ass(the internet) stomp his crotch and smack'em,0 +and add a "tweet this" button to share the trend results... Damn there are dozen of things that have been done here for 2009 :-),0 +Well fuck. You can say that again!,0 +awww feel better! i hate it wen tht happens to me,0 +system updates are always slow on the ps3 I hate them,0 +what up stud! How's that poop on the floor loser? :P,0 +how am I so gay? Haha,0 +martin001 make it a miller lite and fire and I'd be game! i hate being cold!,0 +Yeah the Christmas special was awesome. I hope every fucking episode isn't going to cocktease a new Doctor until Tennant is gone.,0 +Why'd you say that Ron? Why? You're my hero. And you say something dirty. Poop mouth. I hate you Ron Burgundy I hate you!",0 +gotta ask cait but want to come over for dinner? I'll cook. I'm not blood family but I'd hate for you guys to have a lonely ch ...,0 +Fuck her..you're both adults x.x My mom says you're welcome to come here too. Eating at 3 - prime rib!,0 +#NAME?,0 +I WANT TO SEE THE GHOST INSIDE!! DAMN IT!!,0 +THAT GUY IS A FUCKING BEAST!!!!1!!!!1!11!!11!!!! the next Neal Peart.,0 +resistance sucks get cod5 or rock band 2 for 360. if you have to get a ps3 game get mgs4.,0 +jesus fucking christ lmao,0 +So Fucking Epic http://tinyurl.com/yrqwmz,0 +I hate to say it but I don't really feel up to it right now and I haven't taken my pills. o.o,0 +hmm well i don't think that she'll hate anyone its hard to say who she'll like or get along with best though.,0 +Ooo.. Did your grumpy-face avatar just get a little grumpier? Sucks - I do NOT want to be driving this weekend. Will Rudy be ready?,0 +I hate robbing banks!,0 +Heh default slut mode? :),0 +When she lived in an apt she had a Chinese neighbor who kept eying the pig. Worried about it being someone's dinner so she moved!,0 +Yes I had a guinea pig when I was a kid. Cute but not as smart as a potbelly.,0 +The potbelly has a big backyard. My Mom wd let my guinea pig run thru the house. She would repair the rug when it got chewed.,0 +C'mon let's hear it. Do you know that pig is still alive. They were told it would stay small it is 160 lbs now. Very loved.,0 +fuck yeah ima dancer too!,0 +bitch its 10:40.,0 +you do have a problem. What did u get bitch?,0 +damn i want to be a Jew this year! i want to go to the movies and get Chinese noddles,0 +that sucks man. I feel for you,0 +the weather is the same here. I hate rain when it's cold :(,0 +My age group was courrupted at a young age. Damn interwebs. Then again I don't anyone my age irl who is in fandom/reads fanfic.,0 +Damn :/ I remember I was always trying to save for a Kiko Transwhatever its called potion.,0 +Omg that sucks. Im sorry :(,0 +Lmao not as bad as other people :) *cough* @allieoop95 @brookoverroxx *cough* my Mommys :) Hehe. Are you a twitter whore? :),0 +Ha. i can imagine people stopping! EW and my guinea-pig just pissed on me goddamn him. Stupid obese git!,0 +still afraid of needles? i just got told i've got to have 12 into my face. Fuck illness.,0 +HA knew it O_O i've been telling people no one knows! now i just get weird looks ah well fuck them.,0 +Get the fuck out of my head. I was just thinking about doing a video to that song YESTERDAY! We have ESPN!,0 +thanks hun i made it to cerritos in some alright timing...wow LA traffic is a mother of a bitch and im being nice...,0 +damn you L ...damn you...wait how thehell do youhave chocolate eclairs in japan..i bet you cant get JAMICAN BEEF PATTIES! pooey!,0 +damn L me got the boot...but thank jesus lord no pussy rips for you anytime soon...just more passion fruit and DR scholng,0 +YES!!! its MADAM PUSSY X PINK....heel girl ...,0 +no Miller High life but had a damn good Ginger Ale!,0 +no it's the 3rd one but damn is it awesome.,0 +aim kills my battery. Sucks having a 2 year old sk :(,0 +w/e. Still a nerd.,0 +cool then we can start the one where we videotape me putting my foot up your ass.,0 +omg!!! you're allowed to use this site at school?!? fuck our school gov. man!!! we get NOTHIN!!! school is SO mundane......,0 +fuck!!! that sucks arse!!! lol....omg....i just cut my face with my ring!!! OOOWWWW!!!!!!!!!!!!!!,0 +I'ma dumb fuck sometimes....lol.....oh....i knew the memory thing....but i thought the mice was a myth... .........,0 +are you calling me fat? T.T,0 +gahh it sucks... ): but hey... Closer till the 27th,0 +im sorry bro. Fuck that bitch.,0 +that still kinda sucks.,0 +Being hermit because I kewl like that! ("kewl" meanin' "loser") lol jks,0 +Lol well 512k is what I'm on right now. Sucks even on ethernet =(,0 +i am reading all of the posts you have done recently and i really have to say that i hate you right now...,0 +god damn =/ i remember when i was a pateint gg it sucked so bad i didint get any pain killers dumbasss nurses their omfg...,0 +they always asked me brent on a scale of 1-10 whats ur pain im like 1 fucking million bitch and they are like ok no meds =(,0 +LOL SHE SAID YOU CAN HAVE HER SWEET VAG / ASS IF U PAY HER LOL !,0 +LOL im so sorry im just so fucking high atm !,0 +O.o how could i not lol !!! i mean what happened last night when we talked soo much omfg ! it was just fucking amazing,0 +Hows The RAM? 250 360 360gb's Damn Dude.i only have 160gb :(,0 +Get used to it. WaMu's been fucking me over with my live-check deposits since I opened the account 2 years ago. 5 day 90% hold.,0 +la intalnirile viitoare pentru ca la asta din pacate nu am cum sa ajung :(,0 +why do you sleep so damn late? haha,0 +shouldn't you be working instead of fucking around on twitter?,0 +nobody talks to my sister like that! Take ur goddamn frive iphrones and get the fuck out!,0 +you are one sick fuck my friend. I think I'm scarred for life.,0 +I know it just sucks edited. Even though it is pretty funny hearing what they replace the curses with.,0 +oh that sucks sorry about that.....at least u can get some work done now,0 +and yea of course thats fine.....and hamels is a bitch..i dont pay attention to any phillies player anyway,0 +LOL im a big enough loser as it is...u want me to ice skate (a person with no balance) and look more like a loser? LOL,0 +damn... plane crash... ehhh no bueno.,0 +you've seen Angry video game nerd on youtube right?,0 +I listen to songs right after I get them.. so I JUST got these. I hate having anything unlistened. LISTEN. NOW.,0 +we used to drop big-ass M80 firecrackers into catch basins to eradicate rats.,0 +oh I agree. the only soup that's a pain in the ass is gumbo :-),0 +i was gonna say control freak but i'll work with your definition :-P,0 +awww that sucks I'm sorry!!!,0 +They are a pain in the ass but oh sooo comfy!!! Worth the $1000!!!,0 +yea I know right? I was like awww damn!,0 +i hope you dont mean port charlotte. :P this town sucks.,0 +damn son. I just saw the cool and dee joint to. Still rocking the mixtape tho. Keep that fire coming...,0 +Common is rocking them nerd glasses.,0 +i hate when people bike anywhere apart from the sidewalk. i would run you over in an instant!,0 +Still warming up from shoveling my LONG driveway. Damn broken snow blower. Anybody know anybody who repairs them reliably?,0 +what is up with viva la vida having almost all its songs in 2 parts? i hate part 1 of "42" but love the 2nd half!,0 +Damn I want to Milton wish I could be there. 'Look homeward Angel now and melt with ruth ' I guess.,0 +yeah I hate crowds it's worth getting up at the crack of dawn to have peace while shopping..it was quite pleasant:),0 +That sucks... At least you got a little extra sleep eh? ;),0 +damn those pesky pirates,0 +GAH. I am twitching to read the next book but I have to wait until Saturday. I'm going crazy. DAMN YOU STEPHANIE MEYER,0 +yeah sure you hate it. Riiiight. But yeah I'll take all that stuff and more. Kisses hugs head massages bubble baths..,0 +I could kick his ass....,0 +Switch Bitch is one of my Faves... what came first surrealism or drugs? (Roald Dahl),0 +so do our cops! I got to ride one over break! SO bad ass!! :D I want one!,0 +whoops .. Too bad I didn't get that tweet cuz I was knocked the fuck out.,0 +LMAO! I'm fucking bored. Hurry up and get off so you can talk to me and play YoVille with me.,0 +about kickin' some canadian ass?,0 +Okami is fucking brilliant (i STILL havent finished it yet and I'm like nearly 30 hours in),0 +Wow Heather that really sucks especially someone you have known for so long. Hopefully they will get the help they need.,0 +YOU are not a loser your a good mom and you speak your mind. Sorry your feeling down feel better.,0 +if it's a regular poem give him one more chance to fuck up. if it's a poem to you yeah he and his boy have to go,0 +fuck that i've given up on him. nas is one album a way from being in the same standing with me,0 +and the caps sound like a wild ass demand.,0 +you have a female soulmate? i knew you were ghey but you're gay too?,0 +this means young kaia will either grow up to be the greatest female beatmaker ever or a rap legend who severely falls the fuck off,0 +nah but i read the spook who sat by the door and im pretty sure someone used clips from that. maybe com on "the bitch in yoo",0 +The thing that sucks is that if I had applied myself I could have probably ended up somewhere great. Like a good college.,0 +I hate the month of January! Can we bring back November? Better yet last semester?,0 +as soon as I find a new sitter I am gladly going to tell her to fuck herself. No one's going to say things like that about my baby!,0 +Fastest growing daily my ass.. It's like me telling my sister she's the prettiest girl in the world. Pretty standard Biz 24/7..,0 +fairfax>chesthair alll dayy ( i notice how outnumbered i am on twitter) oh the fuck welll!!,0 +FUCK BROWNIES LONG LIVE COOKIES,0 +awww what package? dang that sucks though! i hope its not makeup :(,0 +i can never catch you on blogtv at night. damn time difference!,0 +last year me and my friends spent alot of money there. one of my friends took 300$ with her and spent it all in 1 day. sucks 4 her,0 +what really happened...hate I missed it. Bummer!,0 +Aw that sucks. I didn't get incomprehensible profs until 3rd year :P,0 +besides Fat Mike i dunno... does Amy Winehouse's refusal to go to rehab count? no no no?,0 +kcs got a nice body but shes insane. taryns got a nice rack but shes a bitch.,0 +Merry Fucking Christmas.,0 +what the fuck is going on?,0 +That sucks! I only have one test next week and no classes in between that.,0 +@tine911 seriously! i decide to sleep in n i get rewarded with 26 new txts where 24 r from twitter. i hate u steve n christine.,0 +Eww that sucks and sounds strikingly similar to our problems with Embarq. Their customer service is pretty horrible too.,0 +if 19north's band was an emo band what would its name be?,0 +I hate being on the outside of inside jokes. =P,0 +I vote for "Shawshank Redemption". You would hate Twilight b/c it has the worst score *ever*. Srsly.,0 +yeah I know it sucks but out of chaos there might be a little bit of order...,0 +Hey CRTs kick ass... I love the Viewsonics and some of the Sonys,0 +K so you hate me tell me why and then I'll never twitter you again,0 +Hey buddy you've been kicking ass and taking names. Keep up the good work.,0 +I know.. but it sucks the whole family is down and out and i have to work :( Plusthe nanny is out of town.,0 +Damn I don't think I'm on the list,0 +actually i thought 'Damn she's hot!' when it came out! lol,0 +im in love wit yo ass ,0 +A lot of people find my blog by searching for jonas brothers stuff or something with the word slut in their search.,0 +I KNOW I HATE THAT! (re: websites with music and no off switch!),0 +NICE! Kicks my 200 Cain Concepts ass! and I thought I was living large. :),0 +but for me its not about the calories or the fat its about the dairy... I'm trying to avoid that. and Gluten.,0 +I hate it when that happens!,0 +damn i miss that show already...we got like a 6 month wait...,0 +i was jus on this bitch like 4 hours ago before i was to go to sleep...fucking body clock!,0 +so I hear. That sucks. So everyday fpr 10 hours there is no electricity?,0 +Well they say that any attention is better than no attention. Thus the whole love/hate dynamic.,0 +I mean if a relationship ends because you shared your feelings then maybe it damn well should end.,0 +except when there is a cat being held above my mom and the word gay~ is being used. lol.,0 +omg ikr? BECKETT~ he'll be like oh god not them again. fuck and this is a FOB show weird. lol,0 +cause this is week 2 in a row i have no hours. and i need to make money so i can at least make my car payment :/ it sucks.,0 +lol. oh i love it just...i've heard it sucks working there. lol. and ty :] i hope i can get more hours at party city though. ugh,0 +omg im being creepy and saw the shoeless thing and omg it made me think of dane cook when he's like fuck shoes im going out,0 +30in is only cool when referencing an Apple cinema display </nerd>,0 +- ergh I hate that! It's happened to me plenty times. D: Wear thick socks?,0 +Hey thanks. Still can't re-watch it. I hate myself on video!,0 +Actually that's what your here for to bitch slap the spammers for me :),0 +:bashful: NO! I am not the greater nerd! LOL! j/k. I love sci-fi! SG Atlantis is great as well. I have a SGC & SGA patch.,0 +I don't even own boots! Damn the torpedos open-toed shoes full steam ahead!,0 +Do I need to email you some Browning? Damn the Deutsch!,0 +IMA ROUNDHOUSE KICK U IN UR FISCAL POLICY IF U FUCK WITH MY ABILITY TO PRINT TEH MONEEZ MOFO!,0 +"""Weimer inflation""? What the fuck is that? I'm just printing the hell out of the $$ hoping this plan works.",0 +I have to edit comments all the time - for some really strange reason I get all this hate mail on my blog WTF LOLZ!!!1!,0 +FUCK YEAH - you should start printing the $50 Bil Bernanke Bucks too. I could use some help ruining the economy it's hard work!,0 +I hate to break it to u homie but I b the mofo w/ the printing press so uh I think I GET TO BE KING and u morons r mah harem,0 +I personally really enjoy watching people look at money. They have NO FUCKING IDEA how worthless it is it's hilarious!!! LOLZ,0 +Everything looks fine from where I'm standing I've got money coming out of my ass! And the printer. Same shit.,0 +fuck @TheWhiteHouse you need to come sit on Big Daddy Bernanke's lap and tell me how much money to print for you...,0 +SURE BORROW ALL YOU WANT ROCKY! I'm just going to take it out of your fucking ass via inflation later anyway! WOOOO!!,0 +LMFAO Thanks for the follow yo! I FUCKING LOVE YOUR TWITTER NAME ITS LIKE MAH MANTRA N SHIIIIIT! LOLZ,0 +I hate that! We are supposed to get about 8" before the sleet comes. They will get at least one day of fluffy stuff!,0 +pants. dammit. i hate pants.,0 +i have to do a list still. BUT I got the damn design done finally. Merry Exmas!,0 +they sure seem to LOVE you -- damn name droppers.,0 +I usually just randomly pass out throughout the day. Sucks when you're in line at the deli -_-',0 +I like winamp but video support sucks. I have media player classic installed but don't like it. Gom works great for video.,0 +That sucks man. Hopefully my apartment survives the break.,0 +I just d/l to see how much I would hate it. I'm quite impressed. However I'm seeing tweets from ppl I'm not followin I think,0 +damn those long islands were good :),0 +ugh! Im gonna head back to Dick's Sporting Goods to check out stuff and might try Sports Chalet they are running a lot of ads,0 +I missed that run had my kids that wknd. I hate to admit I've been on the treadmill cuz its cold at 5am my schedule sux! Lol,0 +This is the worst: http://tinyurl.com/62m3z7 You'll hate it at first but it sticks like glue to your brain,0 +don't hate just because you wish you were a Twitterholic,0 +Oh what a spoil sport. Too pussy to go out in the cold to take a video.,0 +Let the hate out. Own it show it then put it away!!!,0 +it's not of anything you cant copy in art lol its based on a lot of things its just my own... And thats why it sucks lol,0 +damn. Well its ok. Just go saturday to the echoplex. Ur going to that right?,0 +my weak camera I hate it. I want one of the High-Tech cams. Like the one meldcole uses. His pictures always come out on point,0 +I hate that about our people!,0 +he is a twittering madman right? damn. he's like 70% of my home page and I am following 300+ people lol,0 +nice to meet u and your trilla patent leather 4.5 inch bitch pumps lol,0 +that's what I hated most about meridian. long ass walk to campus. best part? blocks from adams morgan!,0 +bout to cut this bus driver. smug late ass bastard,0 +that is very un-PC you chalky ass nigga lol,0 +who'd you piss off? oh...wait...that's a ridiculous question.,0 +man they photoshopped the fuck out of summer glau. her boobs have a life of their own & her face looks like a bad glamour shot.,0 +I'm not feeling emo. I'm more in a relentless-bitch kind of a mood tonight.,0 +I've tried giving you treats wet food milk. You hate everything-except what you vacuum up off the carpet. Stupid cat. *sigh*,0 +damn. i tried to talk peeps into venturing elsewhere but lameness prevailed. eff you for not being online to talk isht with,0 +I agree. There are a lot of pregnant women and babies being born these days. I love kids but I'm damn scared of labor!,0 +I hadn't really known a lot about her until I saw this movie http://tinyurl.com/pxw3w . She truly was bad ass.,0 +Thanks coke whore!,0 +Because you're a coke whore maybe?,0 +damn... U should just stay home and call it a nite!,0 +oh my god.... XD sucks for you Talei,0 +yeah yeah. I've seen your dart board with their pictures pinned to it. You hate them as much as I do.,0 +It sucks but at least my car wasn't stolen. right? haha. just trying to be optimistic here.,0 +It may even suck ass.,0 +just because of a dang song. Over it now but damn. Maybe listening to random music while getting ready isn't good/ :o,0 +I dunno I hate it though. Someone at work gave me a bottle and I was like =X thanks....,0 +I've made myself achingly sore playing mario anything on the wii. lol LOVE that game. Rainbow Road is a bitch. :D,0 +I like shopping I hate lines. My therapist asked me recently when you get sad: do you go on travel shopping sex sprees? YES!,0 +been there done that it really sucks. One of them isn't happy. I know I wasn't .,0 +Dude I've given up. After a girl who didn't want kids getting pissed at me when I got pissed at a pregnancy scare. Fuck 'em.,0 +he doesnt know i know hes gay or bi or w.e. Hes soooo high,0 +its not just that Corinne is a bitch she's proud of herself being a bitch and happy that people boo her - what a psycho,0 +no caffiene would kick my ass too - I'm addicted to my Dew,0 +Now I'm hungry. Damn you people and your midnight snack tweets!,0 +i've taken one also. people just piss me off more & more recently,0 +That too! Or even being able to park pulling in forward rather than backwards--I hate when the car behind me pulls up and BLOCKS!,0 + Do you believe that God has a gender?,0 + Favourite movie of all time?,0 + eyes :p,0 + none,0 + probably,0 + FOldeD.,0 + iLyke dat,0 + randomly yes :),0 + yes i have a best friend lol =],0 + a sunrise in hot pink orange yellows and blues with a black tree across the skyline and hints of purple. its pretty sweet but it changes weekly usually :),0 + LOVE ?,0 + If you had one day to live what would you spend that day doing?,0 + yes :),0 + Nope. I know a little thai and some spanish. haha go figure.Im seriously the whitest korean chick you'd ever meet :],0 + Idk I think it swings both ways pretty strongly. The human race is never satisfied and I believe that both sexes have the tendencey to cheat. At all ages and for all reasons.,0 + Timmy. He held me down and tickled me,0 + im not the one who called you a whore either haha. i play soccer and run track and did dance for eight years and did gymnastics,0 + What would a chair look like if your knees bent the other way?,0 + formspringg haha noo..my boyfriend. Were always out staying busy.,0 + Would you rather be rich or famous?,0 + crude?,0 + Haha youu need a phone !(:,0 + you should ask her if shes still "feelin it" so you know for sure,0 + r Has anybody ever told you that "you could do so much better" about a person?,0 + Love them> i love cheese.,0 + I am Ashlee duh,0 + I don&;t know Tabitha in person): but Idc I know deep down in my heart I&;ll love her for her <3,0 + haha hey,0 + How often do you think about touching other people&;s private parts?(Be Honest),0 + Spontaneousness. As much as I love to get all dressed up and go out to a big super nice expensive restuarant I'd much rather just be in comfy clothes go out to grab some chipotle--eating outside of course :] then maybe to the drive in with a buncha snackies and a jug of tea :] lay together with my lovee under the stars and enjoy each other.,0 + hahahahahahaah thanks spency :DDDDD <3 you,0 + Ehh maybe.,0 + who are u?,0 + Have you ever slept with an object in your hand & woken up & its still there? Happened to me :)),0 + uhh i thought this was for questions sooooo heres a question i guess.haha icecream or brownies for the rest of your life? (only 1),0 + Do you love Twilight as much as this? I bet this will be your new homepage. http://MyTwilightSearch.com,0 + Hmmm idk if i completely understand the question..,0 + For suree boo hit me up tonight ! Sikeee!<3,0 + hmmm probably buy a few things for me and one of my besties :D,0 + Do you like broccoli?,0 + What sitcom character reminds you of you?,0 + I like them. How'd you know?,0 + yup yup. same grade as you too.,0 + who is the love of your life?,0 + B3(kyy,0 + i wouldnt doubt it lol,0 + cuz they can be deep sleepers haha,0 + Food. :) hahaha,0 + dane cook,0 + Are one handed people offended when police tell them to put their hands up?,0 + Do you have any nicknames? If so what are they?,0 + would you rather have a third leg or a third arm?,0 + who d you like,0 + Name one household chore you would never want to do again,0 + because your supposed to look up and be aware something is going to potentially hit you in the head..therefore i do look up just quickly and aware!! you should do the same. think about it! :),0 + everyone would learn true kindness.,0 + a dino,0 + What is the first thing you do when you wake up in the morning?,0 + i dont do chocolate much,0 + What&;s your favorite place to go in the town you live?,0 + hot but sometimes i like cold. depends on the mood i guess,0 + Are you due sometime this year for a doctor&;s visit?,0 + tell them. haha,0 + Yuh d0n+ l!k3 m3?,0 + Nope not yet :),0 + still a student??,0 + yes. i do walks all the time,0 + comedy,0 + Apple store!(; Need a MAC pro!,0 + whats your favourite number?,0 + i love youu chica!<33,0 + mhm ohkay so watz up,0 + Vv ouch :))) way to think outside the cheesecake:D wooo goods cuz icecream is the beseeest!!!! specially with cohoclate syrup aaaaaanndgummy bears woooo:D,0 + You can choose your method of dying and the place in which you will die. Where would you like to die and how?,0 + lololol,0 + hello:),0 + and then prue & Phoebe from charmed came over but then the robots came back & i had to run but some boy saved me lol #Random,0 + lol iDid,0 + I will be gone for a couple of days. I&;m moving tomorrow. The internet is going to be hooked this weekend. So I shall return in a few days. If you want to be taken off the list please send a message in my inbox. Have a good weekend! =),0 + O H I O :],0 + Do you shower in the morning or at night before bed?,0 + Yes haha im not gayy silly (:,0 + I never wear a watch. i dont like time.,0 + If you could fix one thing about your life what would it be?,0 + Where was the last place you visited for days?,0 + Play boiiiii lol jk I dunno? hah,0 + Do you believe that everything happens for a reason?,0 + hmm..not too long i would think..especially if it was bad.,0 + What do you do all day?,0 + When was the last pity party you held for yourself?,0 + What are your day dreams about?,0 + I'm a blunt and funny dancing alien that doesn't care what anyone thinks and loves to have fun. ;],0 + hmm..popcicles. i dont eat much when its really hot outside.,0 + timmy. wanna. peanut.,0 + do you know how to speak korean?,0 + Maybe...why?,0 + thanks alot hahaha,0 + What's your favorite flavored Pringles?,0 + Watz ya name lol,0 + ye,0 + have you ever been turnt up?,0 + Can you draw pictures well?,0 + I can be both at times. I usually talk to no end. But theres always a time and a place to be social or to jjust be quite.,0 + What&;s the weirdest thing you&;ve ever eaten?,0 + Do you believe in fate?,0 + mac and cheese,0 + Jet.,0 + what&;s your fave song?,0 + when im telling someone how i feel is so damn tough.,0 + What was the most recent movie that made you cry?,0 + nope,0 + Say your still driving at night and you see a woman on the side of the road screaming for help do you stop?,0 + Favorite Food,0 + Do you say I Love You to your friends all the time?:,0 + Dude Nishana told me she has a crush on you.,0 + do you ever wish that you could somehow go back in time? and for what reasons if you dont mind me asking anyway.,0 + Good John John(:,0 + on here? like maybe 15 people or a lil more lol,0 + What&;s the best place near you to get a drink?,0 + Y A Y!!!!!!!!!!!!!!!!!!!! IM SO HAPPY THAT YOU ARE GOING TO NORTH :DDDD YOUR GOING TO LIKE IT WAYYY MORE THAN KING I PROMISEE!!!!! =]]] I LOVE YOU <3333,0 + depends on the restaurants policies,0 + Miley's a HOOCHIE! BIEBER ALL THEE WAY GHURL!!or boy!<33,0 + Can you do push ups?,0 + Yes. I always cry when I get mad. Its dumb sometimes lol because people think I'm sad and Im sooo not :],0 + Oh thats wht i think too! dnt be sorry hahaha! Silly goose,0 + Ohh I definantly sit down and talk to him. Seems that he'd be a pretty interesting zombie. haha,0 + how often do you download songs you hear in commercials?,0 + i dont want to sorry dont take it personal.r but i will answer stuff on formspring.,0 + Can you drive a manual shift vehicle?,0 + Are you double jointed?,0 + i dont think so,0 + do you like spongebob,0 + sour krawt. i hate that stuff for some reason.,0 + Cute default.,0 + What bothers you the most about society?,0 + iDnt even kno who da hell they are,0 + None! haha,0 + Not really. Traits of people that I hate? Most definantly.,0 + Where is your biological mother right now?,0 + Do you sing in the car?,0 + umm short stack 16-04-2010 <3,0 + Nope.,0 + Is there one person that can always make you smile?,0 + Perv or Shy?,0 + hottest guy you have ever seen in real life?,0 + Share it :) help my parents out. My dad works like a dog and I feel like he tries hardest and barely gets anywhere..and my sister and brothers.,0 + When you drop your phone Do you get scared it broke? I do >.<,0 + What do you think is your most attractive feature?,0 + If you had to choose between a millions bucks and being able to fly which would you choose?,0 + hahahahahhaahha :) love you to.,0 + Do you and Timmy have a KI pass? :D,0 + serious? your so lucky,0 + yea :),0 + Surprise parties u2013 yes or no? Why or why not?,0 + -Hellz yeahh(: of course i&;m qoinqq i wannah b with you quy&;s like duhh<3,0 + what was your longest relationship,0 + Who&;s the funniest person you know?,0 + Who do you hate the most?,0 + happy?,0 + Do you put cheese on your spaghetti?,0 + Vans pants and a shirt haha,0 + Nope has anyone?,0 + eminem anything! he's whole entire cd willl be out on th,0 + Look below. I wrote an entire book about how he's the best :] haha,0 + What kind of phone do you want?,0 + !f ! @cC3pT wut yuH qon3 duuuu f@ mii,0 + every one in da book,0 + you got a myspace,0 + Would you rather lose your memory or your vision?,0 + Why do people say "be yourself" then they dislike people for being themselves?,0 + chest and arms haha,0 + Me and Xentury discussed this. If you just got out of a house with a killer and you turn around to see a kid still stuck in the house do you go back?,0 + Ive only been flipped off once in my entire life and it was when I first started driving. Some guy cut me off coming onto a highway from a ramp..So i flipped my lights to let him know i was there because I had to slam on my brakes. And he flipped me off. r It hurt my feelings and throw a fit anytime im with someone with road rage that flips someone else off. I make them feel bad about why it was even necessary in the first place....hahaha,0 + how crude people are. all people.,0 + Do you de-label your beer bottles?,0 + I would so travel thee world Visit my overseas besties then shop everywhere!<3,0 + Ay u single ma?,0 + What will make you nervous faster than anything?,0 + Do you get cold sores often?:,0 + How did your parents ever explain to you how babies were made? Did they give the bees & flowers speech or said the whole truth?,0 + What are 3 things that you consider humanely impossible and NEVER being exploited successfully? Or is anything possible? Explain.,0 + Nope.,0 + dogs.,0 + yes,0 + If I had my legs amputated would I have to change my height and weight on my driver's license?,0 + worse? that there isn't.,0 + Hmm. how to cut people in half. hahahha,0 + Any Living Grandparents ??,0 + have babies :) hahah that is pretty crazy.,0 + What would you do if you lost your bathing suit while you were swimming?,0 + What is your favorite kind of potato chip?,0 + idk but thats a good question. i always wonder the same thing. and why the parents allow them to be in it in the first place?,0 + Name the clothing store you shop at the most?,0 + Are you more of a talker or more of a listener?,0 + Have you ever been bitten by a dog?,0 + :) omg thanks! :D,0 + no i didn't actually,0 + nahhh,0 + Do any of your friends have children?,0 + Do you think famous people have the right to have a private life?,0 + haha okay. i think its funny i dont care.,0 + No other than the most recent question about if I start conversations with ppl I just met. lol weird you ask. whyy?,0 + My best friend is married to a guy that has a little 2 year old girl,0 + When did you last receive a text message?,0 + he&;s like a curse r he&;s like a drug r you&;ll get addicted to his lover you wanna get out but he&;s holdin you down r r sing it babe!!! :),0 + Last event you dressed up for?,0 + Ostratrich,0 + Justin Bieber or Channing Tatum! haha yumm!,0 + nahhh,0 + Do Chinese people get English sayings tattooed on their bodies?,0 + You should ignore all those comments people send to you. Everyone knows you don&;t fake yourself and they just want to be like you. You&;re very pretty and I know I&;m jealous of my cousin :],0 + Do you have a garden?,0 + How would you describe your style?,0 + Do you scream on rollercoasters?,0 + dry erase.,0 + Do you likee chicks?,0 + are you a filipina??or a foreigner??,0 + are you able to act like yourself around other people with your girlfriend,0 + timmeh?,0 + do humming birds hum because they dont know the words,0 + YO YO YO whaaa chuuu doooinnn guuurrrrrrlllll?????????,0 + dont have one,0 + hahahah I love your Bio (; OH OH OH question.. WHY CAN&;T PEOPLE SPELL?! VV (:,0 + Is someone on your mind right now?,0 + Why do they put crutons in an air tight sealed bag? They are just pieces of stale bread to begin with right?,0 + i loveeeee my chocolate man ;) lmao <3,0 + What would you do if you found the wallet of your next-door neighbor who you hated?,0 + Were you ever physically abused?:,0 + yes.,0 + People keep talking about me on your page :/,0 + Night 4shuree!!,0 + My fav song girly!!! is umm.. Up & Running by @jessicajarrell atm! But i have lots :) hbu!?,0 + Do you have a tan?,0 + Current worry?,0 + ummmm people tell me i am. but i dont really show alot of people my stuff.,0 + Julia Roberts.,0 + Possibly,0 + okay,0 + help a lot of people in need.,0 + would you ever consider dateing a girl?,0 + Favorite daytime talk show host?,0 + because they dont care,0 + Once.,0 + nahh,0 + Why isnt there a mouse flavoured cat food?,0 + Being able to fly!!!!!!!!!!! :] but it would have to be all the time hahahha,0 + lol wow...it dnt mata wat ya guna do for mi??,0 + iloveeyou(:,0 + panama city FL.,0 + (: ahaha hii ceara..,0 + he is really cute.,0 + My bestest.,0 + well its real meaning is a female dog. :) ahhahar but I would define it as:r An inconsiderate person that doesn't care what people think nor if or how they hurt another persons feelings. Someone who is usually insecure of themselves and have to put other people down to make themselves feel better about ones self. hahaha,0 + What&;s the longest you&;ve ever gone without a bath or shower?,0 + paris hilton,0 + Could you ever shoot someone if they were trying to kill you?,0 + Nicoooo! :) okay...welllllll bye :),0 + repeat question,0 + hi:) how are u haha.,0 + Hahhahaha,0 + The reject shop....lol joking ummmm supre possibly i dont no. lol,0 + Yes i suppose.,0 + If the professor on Giligan's Island can make a radio out of coconut why can't he fix a hole in a boat?,0 + well i know who this is..,0 + hmmm...my first,0 + i like yur bg,0 + Thats funny. Nothing yet. But im hungry now that you mention it :],0 + dui.,0 + Who is this?,0 + Are you eating anything right now?,0 + YEAH!!! I don't understand why people don't tell others about that kind of stuff??!?!? It drives me crazy. Everyone would want someone to tell them if it were happening to them!!,0 + what&;s something you&;d change about urself?,0 + Snobby small minded people live everywhere ... you can be that way .. i can be that way ... its not just in Texas ... soo yeahhh,0 + tv.....u can watch stuff thats been on tv on the computer :D,0 + ashlee 13 florida 7th,0 + i guesss so. ha,0 + jansport :),0 + :[ computers are dumb sometimes. and yup you too! I had like 110 because of you :] Well and cause I didnt get on all weekend..haha,0 + have too! :) it makes it so much more fun.,0 + YOU NEVER CALLED ME.,0 + yes again. for not coming back to class. haha,0 + do you lie alot?,0 + Where would you bury hidden treasure if you had some?,0 + a tonn :] I don't think my bf can hug me enough sometimes,0 + yes.,0 + hmmmmmmmmmmmmmmmmmmmmmm,0 + Is there anything weird that you do?,0 + yes very much lol =],0 + if u won 30 millon what would u do firstr,0 + yu tld me lmfao lykk yestadayy,0 + hippi van,0 + Not at all,0 + okay thankyou your a great help.,0 + I am going to go to bed now. I still ahve alot of stuff on my mind. Ehhh... well have a good/day. <3 Leave me things.,0 + Can we be in two places at once?,0 + yea my sister,0 + What movie do you know every line to?,0 + What&;s your thoughts on fighting?,0 + do the makers of Friendster uses Facebook? =),0 + 1995 haha when i was bornwas my year! Doh!I didnt have 2 do ANYTHING on my own haha,0 + robin in batman. i thought robin was the best and thought he should be the star!! hahah and my favorite power was..? hmm..well i guess spidermans powers. he is sick. haha,0 + have you ever been on itellyouthat.com? go there and tell something to the world :D,0 + Would you rather be a famous musician or a famous actor?,0 + would you ever want to be famous? why or why not?,0 + Would you like to go to space?,0 + Have you ever ridden in a taxi?,0 + Lookkk meahh upp! (: ALEXIS NICOLE HODNETT<3,0 + No. Im with my first and am gladly in love with him-r HARD TO GET is always BETTER! :),0 + How many suitcases do you own?,0 + Is it dina?,0 + ******************MEOWWW*************************,0 + large,0 + blah,0 + short stack lol lots of ppl are asking questions about them 4 me lol =],0 + why haven&;t i had any dinner yet?,0 + not too often once a year perhaps but it hits hard when i do get sick.,0 + Chicken Or Hamburgers?,0 + Who&;s the coolest person you know?,0 + during a game? i think maybe during heads up seven up. haha i used to watch peoples shoes.,0 + the type of tomato used :P,0 + NO no no! I Love youuu moreee<333 ;D haha!!,0 + Uranus. hahahahhahahahha I crack myself up. Pluto definantly :] its the only one thats been a planet and moon at the same time! thats soo me :],0 + i would probably try about 2050965967 ways to stop it. ninja to protest. and i would be disapointed in whoever didnt try.,0 + what if i want to ask you something inappropriate? ;),0 + reow!!!!!!!,0 + not really,0 + When was the last time you went to the circus?,0 + naw iMean foreal,0 + If you people really still think that Tabi&;s fake go look at her dang MySpace. -.-,0 + helping someone without them knowing who did it.,0 + yes.,0 + ur butiful babe i just wish i waz urz.,0 + do you have any fun summer plans?,0 + ooo i guess you're too quick for me ;),0 + Have you ever texted and drove? Do you talk on your phone and drive? Do you eat and drive?,0 + Do you own a pair of dice?,0 + tabi i feel so bad about these bitchy girls who keep on saying shit to you on here if they even knew you they would no you are the most moddest girl i have ever met.,0 + Ahhh! I love em both but I would go for Justin Bieber!!! Well because i'm older. But I perfer them BOTH!,0 + haha so many people are hating on your formspring.,0 + lol [: your a funny kidd you know that? [;,0 + what others do you have?,0 + synonym book :P,0 + sometimes when theyre trying to be gangsta or ignorant,0 + a house :],0 + waldo. and helga. nahh jk guys-lucas casey mclaine gabe jack dakota s. jake nathan girls- maddie cassie nicky,0 + Do you want to get married?,0 + What holiday is closest to your birthday?,0 + Do you sleep with your closet doors open or closed?,0 + yes.,0 + For shizz lady. :],0 + not that im aware,0 + Fist fight?? No. Im a lover not a fighter. ha,0 + Do you think we are raising the next generation right?,0 + Yeah I met them at their show :) Got a free shirt too.,0 + what do you do to help the environment ?,0 + Do you lyke gurlz?,0 + Idk. I dont get them. And yes you get them from kissing. saliva or other juices transferring from another person with the infection. They are herpes!!,0 + thanksssssssssssssssssssssssssssss,0 + What would you do if somehow you caught a STD?,0 + yes i have before. many a times :P ha,0 + Are you passionate about your beliefs?,0 + who?,0 + do you like shaun diviney?,0 + ummm MRH? nope lol,0 + LOVE THEM :],0 + i got it lol i dont like it so far.................. :/,0 + Hell NO!,0 + do you have a bf??,0 + Do you eat a lot?:,0 + Lol idk thoo Kim has a better body buhht ugh geez idk (x,0 + Have you done something bad today?,0 + I like too many songs to have a favorite,0 + how do you express your anger?,0 + Nope ;/ Bhut Not Having a BF doesnt mean The WORLD ends;] I guess im waiting 4 the 1 ya kno? Hbu mamas?!,0 + hey you&;re an amazing nice and sweet girl..pretty too!,0 + Nope:[ I wish bhut hey i might someday rite haha..Hbu?!,0 + what do you think of Spiderman without Tobey?,0 + Swedish fish && reeeeses. YUM,0 + Yes. Karma? :) its always there. so be nice!,0 + Good . hungry actually :),0 + within a week or two. depends on what they say happened.,0 + If given the chance would you like to come back as a ghost?,0 + In a graveyard. Muuuuahhhahaha,0 + ahhh true.. true... plus it plays music XD,0 + Is there anything that can make you sick just by smelling it?,0 + Yup yup,0 + What music are you listening to today?,0 + yes my camera i have now,0 + If a kid refuses to sleep during nap time are they guilty of resisting a rest?,0 + Yeah i made my first one. and forgot the password to it!!!!! haha so i had to make a new one. it sucked but at least it was farely new to me. teaachgee is the right one!! :),0 + a couple. i really only like beer haha :P and not hard liqour,0 + something you regretted after it was done?,0 + Do you ever go bird watching?,0 + If the universe is everything and scientists say that the universe is expanding what do you think it is expanding into?,0 + what nashionality are you?,0 + Nahh,0 + yeah its really hard to when i get this shit like every ither day like it seriously pisses me off now if it was like yesturday i wouldnt give 2 fucks but with everything im going thru right now its like wtf.,0 + Actually i was that kid who wanted to be by herself so i guess when i grow up im going to be ME lol! Hard question 2 answer.,0 + somet,0 + I don't mind household chores actually. but I guess I'd say dusting. I don't enjoy that :/ ha,0 + Are there any people on youtube that you subscribe too and always watch their vids?,0 + so are you talking to shira or frances? its hard to keep up playa playaa lol.,0 + Okaydokay.,0 + What is your zodiac sign?,0 + sometimes.,0 + yeah,0 + lmfao wtf yew tell mi,0 + not really . I like meeting new people,0 + why do i cause so much drama? :(,0 + AlexisNicoleHodnett is my besttestt frann<3(: iloveyouu Lexiflagss(:,0 + last snow season,0 + Don&;t you hate it when people lie to you about coming over?,0 + boiled eggs :D hahaha,0 + lol gurl iKan do anythang,0 + Okay Im super glad you asked me this question only because its a common misconception about hiccups. Your not supposed to hold your breath. The reason you have hiccups in the first place is lack of oxygen. So the usual hold your breath till your face turns blue and still keep holding it isn't what makes them go away. Its the deep breath you take after holding your breath :]r r So to relieve my hiccups I hold my breath ;) haha only to take a bigger breath afterward.,0 + complete silence and all darkness.,0 + 2 :),0 + do you like justin bieber,0 + lol im telling yew,0 + Have you told your partner about all of your past relationships?,0 + kkkkk,0 + church camp once. it was fun but we got kicked out.,0 + Do you consider yourself a good dancer?,0 + Thank you <3,0 + The beast.,0 + Have you ever lost something really important and spent hours looking for it?,0 + how have your past couple days been?,0 + yes,0 + : ),0 + anyone or someone particular?,0 + Yes. Its weird sometimes. But dreams are weird. haha,0 + im not a fucking prostitute lol. i dont want your money. maybe if you tell me who you might be ill let you know the answer ;],0 + Spontaeity. hahaha even though i wish i could say stability.,0 + Annoyed lol,0 + yes,0 + What would you do if you had a child that was a killer?,0 + If someone would give me money to do it,0 + What was your fav show as a child?,0 + iiLooveeyouu&&miss you Alexiss.!!,0 + If you had access to a time machine where and when would be the first place you travel to?,0 + idk i dont do starbucks,0 + If I had to choose. One ear because I wouldn't have to loose all my hearing and noone would see the defect of losing a part of my body. I would cover it with my hair.,0 + Mmmhm!,0 + haha i know i tried to make it really obvious for youu lol [[:,0 + Would you rather be a famous musician or a famous actor?,0 + nahh I'm a normal bitch :p / i love you too& ehh I give upp!,0 + yes and it got all swollen and red and blahhh lol,0 + If you really wanna talk to me you text me? Like for real don't be playing this game just come out and say the fuck you are cause it's getting annoying.,0 + Hmmm. he's an ?,0 + Describe your first REAL date?,0 + What is your motto?,0 + As friends...but nothing more than that she doesn't like me like that,0 + not at the moment haha. to be honest im current under quite a bit of stress,0 + How tall are you,0 + lol nigga you think u can rap?,0 + Can crop circles be square?,0 + hmm..depended on how much and where i was at the time. but if it happened now and where im at in my life currently I would buy a used car for my bf and then pay the rest of rent off for the year. hahaha,0 + yes but i dont like to. i have this crazy fear of thinking if i just do it one more time my eyes will be stuck like that and i should lf just been satisfied with knowing i did it the last time. hahaha im a weirdo. but ya never know' ya know?!!,0 + idk. people have nothing else to concern themselves with other than what they can pick apart from other people. its a way to take attention off of their own flaws i believe.,0 + Can you sometimes finish someone else&;s sentence?,0 + lols wow how wass ur easter.?,0 + i know right? ;)),0 + LOl. Funny shit huh(:,0 + yes. i sure hope so. i feel like it works my brain and makes me think!! :),0 + What are you most excited about right now?,0 + which mall bih,0 + hahahahahaahahahahahahhhahaha r why does everyone think that?,0 + Hmmm fruit!! :) any kind of fruit.,0 + okay cool.,0 + when can you drive?(:,0 + ever since jordin albertsons like deleted her formspring or something all the mean comments have stopped haha,0 + But I say I'll be back gotta get some more coronas!!!! bahaha jk my favorite drink is dr. pepper :D,0 + where is Old Zealand?,0 + being lied to,0 + why,0 + Are you stubborn?,0 + Emotionally DEtached? yes. Society is cold.,0 + I do bird watch actually,0 + ummmm all i do in the bathroom is shower o.O i like my showers.,0 + do u masterbate?,0 + can you see my halo?,0 + What do you think of Adrianne Torres :],0 + When was the last time you yelled?,0 + Have you ever been Ice Skating?,0 + yupz iParty all nite nd day,0 + do i know you?,0 + hmm this one's a stumper.....r i guess i would change it to Sunshine. I like that. haha,0 + What&;s your favorite music video?,0 + if I wrote you a love note and made you smile with every word I wrote what would you do?,0 + Money does not grow on trees then why do banks have branches?,0 + First.,0 + Heyyy lexxxi(: yuu wannnaa llikkkee asskk meeh somee quesstionss onn myy formspringggg herrree??,0 + Have you ever been rude to someone without even realizing it?,0 + Can you skip rocks?,0 + sup? :],0 + Love it but I don't it too much currently,0 + hi:D,0 + have you been out of counrty if so where?,0 + If you were given the chance to take care of a monkey for a weekend would you?,0 + Show your face.,0 + <3,0 + don&;t listen to the haters you are pretty!,0 + Hmmmm,0 + *RAWR*?,0 + What do you dread doing but have to do it?,0 + its sunny now. summers ahead of us.,0 + Do you go to Poly?,0 + haha i think that would be impossible,0 + hehe :},0 + How often do you get the hiccups?,0 + Umm... Dallas Texas! haha Idk im so plain so idk! Mwhaha,0 + Uhm. Actor(: They get paied more haha,0 + Thanks for the memo if you would reveal your identity we could continue this conversation in depth :),0 + well u say any language.. so.. coba tebak ini bahasa apa.. kamu ngerti ngga aku ngomong apa? ;),0 + Love. its the kryptonite to anything you think you can accomplish without it. its the human kinds weakness to other beings. always.,0 + formspring says oops! cant find you...sorry. i would. is your url correct??? :/,0 + :) hey thankyou! :D,0 + jordin!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! rudeo did you say the other mean things to?,0 + thanks... Who is yew???,0 + Do you guys like robot chicken? i do;) asked,0 + Tabi text me?,0 + Lil wayne,0 + Mahalo(:,0 + love pizza?r what toppings you prefer?,0 + guesss who ;),0 + What is one thing you honestly could not live without?,0 + I WANT YOU TO GRASP MY BIG PEACH WHITE NIPPLES & NEVER LET GO.,0 + what&;s the funnest place you have ever traveled?,0 + Tell me about something you've achieved?,0 + hehe yup it&;s awesome but the pronunciation is incredibly haaard :D,0 + Do you think you could defend yourself if need be?,0 + An angel appears out of Heaven and offers you a lifetime supply of the alcoholic beverage of your choice. "Be brand-specific" it says. Man! What are you gonna say about that? Even if you don't drink booze there's something you can figure out... so what's,0 + hahahahahahahhahahahahahahahahahahhahahahahahahahahahahaahahhahaahhahahaahahahaaaaaa!!!!!!!!,0 + Rain doesn't bother me at all other than when Im dressed up and have to be somewhere important. Rain is important.,0 + Something cute and ME!! haha you kno? well a beamer is my dream car basically! or a porshe!,0 + Would you be willing to become extremely ugly physically if it meant you would live for 1 000 years at any physical age you chose?,0 + trick of the mind and the eye.,0 + Idk cause it has a great beat. Jim cracks corn and i dont care jimmy cracks corn and i dont care... hahaha,0 + torment isn't much my style.,0 + Do you get nervous when alot of people look at you?,0 + And i add u again later,0 + i think u and jack should date!!!:),0 + Lmao wantt me to rub itt ?!(:,0 + he shaves.,0 + go back to sleep! hahaha,0 + whos your favoroute band?r A: ITS SHORT STACK OMG!!!r is it really?r YES!!! no really tell me?,0 + Do you like to clean?,0 + look to your right.. tell me the first thing you see,0 + how old are u ???,0 + Nooo unfortunately.,0 + Why do people get smart attitudes for no reason?,0 + lmao rite chea boo hehe,0 + Have you ever been beaten up?,0 + its all in your head. soo i'll say LOVE.,0 + Do bald men wash their head with soap or shampoo?,0 + nope,0 + Who do you like?,0 + Good change definantly. and it was me and timothy getting together that really did it. straightened me out :) and him :],0 + idk if i am really,0 + well today it was formspring but usually facebook,0 + look around see if anyone is there but if im the last one there..pocket it :) haha,0 + Reow................,0 + Where would you be able to spend hours and be happy?,0 + do you like lady gaga?,0 + Does it bother you when people curse at you?,0 + ariel. definantly.,0 + hehe. exactly ;),0 + Listen to music feed my newwest fishy :] and cuddle with my boyfriend. Unless im not happy with him and then I go hang with my family. They always make me happy hahhaha,0 + Do you have any phobias? If so what are they?,0 + OMFG!!! nooo wayyyy!!! Ughhh BROOOKKKEEEEE OMFG!!! im soo srry lmao lots of pplz r frmh ZEW ZEALAND! lmao I fukkinnn luvv yuhhhh hahaha!,0 + do you cuss alot?,0 + Does the postman deliver his own mail?,0 + yep,0 + do you think its possible for a human to sleep with there eyes open?,0 + good question:],0 + VAMPIRE WEEKEND!,0 + hi (:,0 + How has 2010 been for you,0 + Like a week. hahahaha,0 + idgaf,0 + What is your goal this year?,0 + how many friends do you have on facebook?,0 + Do you wish you were more fit?,0 + What kind of mood are you in?,0 + Hmmm....U makin me hungry first of all! && Dairy Queen! YUMM!!,0 + any of them haha,0 + Timothy. april. Mother. Chelsea S. & You.r Loyal. Funny. Stressful. Partier & intersting.,0 + Heyyy Abrilll(:!!! iloveyhuuu<3 muchooo!!,0 + apple,0 + nope tabitha jai locascio idk who she is but she is a fake. :/ i use to live in idaho but i moved to texas,0 + Yes ma'am :] thank you lady.,0 + What&;s ur favorite type a cheeeeeeeese?,0 + Do you watch the Gilmore Girls?,0 + If you found a suitcase full of $1 000 000 what would you do?,0 + if you had the opportunity to be in a movie with any actor/actress who would it be?,0 + anger and greed.,0 + hahahaha yeahhhhhhhhhhhhhhhhh member when i was makin cup cakes and he like would text me and be like hey its day and im like hi and we would talk for a min then all asudden it was you and id be like wtf in my mind,0 + haha my brother does! I think its funny,0 + Would you rather work at a large company or a small one?,0 + ive achieved alot but recently is surviving my first year of college :D,0 + would you fuck shaun diviney? answer honestly!,0 + diz grul name kiya y?,0 + nope,0 + What movie has the best soundtrack?,0 + Nahh i hadn't been on in a while. your good,0 + lol ya nigka,0 + i&;ll txt it too yhu ahah(:,0 + i wish. hhhhhighhhhyeaaaahhhh!,0 + COOKIES!!!,0 + No,0 + what is your most embarrasing moment?,0 + Yes. and do the fourleaf clover thing :),0 + Are you a good painter?,0 + yes.,0 + formspring. by far :],0 + hahaha hmmm im not surreee,0 + hmm i havent seen anything crazy lately. Its been more like uhhhh bed. sleep. sick. sleep more. haha,0 + BFG.,0 + hell yea iKan wham ta da left nd ta da rite bih iBe duining it all nite,0 + Have you ever asked someone out on a date?,0 + no,0 + - Marryyyyy!!!!??/ LOL! itss yuhh boo!!! Hahaha Noo durr suckkaaa!!! Nahhh i loveee yuhhhh mooOee!!!,0 + tell me this bra why is you so awsomeeeeeee?? you is the best love youu,0 + Have you ever eaten a crayon?,0 + Hahaha... I dont sing!! LOL! so srry! Im horrible. btw I dedicate "SMILE" 2 yuh! Its playing!!,0 + well,0 + arent u guys going out?,0 + Somewhere in my own land living off of what I can do and grow and live. be self sustainable and not apart of society.,0 + Whos the best person to talk to online?:,0 + Spam me ill return the favor : ),0 + i love you to and i no your not stalking me i was kidding. but its only one person. and yeahhh,0 + how long have you had formspring for?,0 + grippos :) they are the bomb diggiety.,0 + yeah i would say so.,0 + Ehhh i guess spiderman,0 + I love you :( but I think you don&;t care about me anymore.,0 + kaylas house..................oh yer i went there lol jks...ily kayla:) lol.,0 + iWill,0 + Are you picky about spelling and grammar?,0 + Whos A Brunette But Acts Like A Blonde All The Tyme(:?,0 + call you? why would i call you? huuuh? ohky ill give you a hint...16.04.10 where is you green dildo ;),0 + I have all my questions do you guys have them??,0 + Does smoking bother you?,0 + Hello to you to :),0 + If you could change one thing about the world regardless of guilt or politics what would you do?,0 + If you could have anyone locked in a room so that you could torment them for a day whom would you choose and how would you torment them?,0 + For money not to be the root of all evil and the rule of most of humanity. I hate money.,0 + my middle name is haejin.r I like to think everyone should be nice to everyone. r I have two chicken pox scars on my shoulder & one on my finger.r personally dubble bubble gum sucks. r i enjoy painting.r i could rollerblade 5 miles a day and still never get tired of it :),0 + You have a beautiful smile and a great set!,0 + HAHA jk i love you tabi(: (i tried to scare you) hahahhaa.,0 + Well I guess I love youu too whore(:,0 + Tabitha Jai Locascio I love you sooo much <3,0 + Do you excercise regularly? If so how often?,0 + best lil wayne song?,0 + haha yeah okay. Sounds good :] Sleep well.,0 + If I could fly I would&;ve gone to __________.,0 + What rights should the father have if his unmarried girlfriend wants an abortion?,0 + Do you own anything that involves with Betty boop?,0 + Is "vice-versa" to a dyslexic just plain redundant?,0 + Does fuzzy logic tickle?,0 + The way its spelled. Sure.,0 + Irresponsible. Your correct. I think theres a time to party and a time to grow and and realize that your an adult now. its time for the party to be over!,0 + What flavor of Kool Aid was your favorite?,0 + Do you live in China?,0 + Would you rather be a famous musician or a famous actor?,0 + what would be your course if your current course didn&;t exist?,0 + yes,0 + ew no,0 + hahahaha hmmmm thats sorta hard to choose. i dont listen to them very much.,0 + No and yes :] wanna read it though!,0 + What color leaf would you like to be?,0 + yeah . i won a car!,0 + yes actually. my yearly female doc's visit. this tuesday.. haha,0 + Hahahahhaahhaha:D ikrr im a slow american wht more can i say lmfaoo!! hahaha <333 Aww! hahaha,0 + if you could change your name to anything you want what would you call yourself?,0 + vanilla.,0 + Beetles taste like apples. Do you still like apples?,0 + Would you actually want to live forever?,0 + Do you consider yourself an animal lover?,0 + i honestly think we wake up before opening our eyes. we go thru a REM cycle in our sleep,0 + LOOK LIKE DAT GIRL OFF OF THATS SO RAVEN,0 + lost in the bed sheets yo,0 + do you like bodtf?,0 + What&;s the weirdest thing you&;ve ever eaten?,0 + who has made you happy,0 + i aqree completely aboutt hello kitty !,0 + 8th grade. Friday night football game with the first guy I ever liked. haha,0 + Papapapapa shore do :] haha r I like any thing i can do the robot to haha,0 + what was the most awkward situation in your life?,0 + Your home alone you hear someone trying to break in what do you do?,0 + If your eyes reflected everything you have ever don would you look people in the eyes?,0 + Not to my knowledge.,0 + What YouTube video made you laugh recently?,0 + okayy,0 + There is no perfect lol but I suppose with a funny guy-polite random and spontaneous maybe a night out at a 70's club and dress up go to dinner before. haha that'd be fun!! :),0 + when there is none left :P,0 + Do you get along with argumentative people?,0 + I just moved!! To my own apartment. So only one for me. haha but the building has 3.,0 + not bad haha:] ive had to take 2 minute showers before. ugh those are a challenge haha,0 + i never thought I would be friends with ________.,0 + Favorite color?,0 + Name the most terrifying moment of your life so far.,0 + Nice :),0 + Do you crack your knuckles?,0 + Uhhhhh!!!! OMG! Taquisha? LOL!,0 + how long have you gone with out bathing?,0 + italian french or better at sign language,0 + oh gosh. bavarian creme. not whipped. creme! and the kind with the chocolate icing on top. i love those things.,0 + And why are you trying to give me advice.?,0 + What was the best job you&;ve ever had?,0 + If you could ask George W. Bush one question what would it be?,0 + ya nd lmao o wow ohkay..So watz ya myspace,0 + Me. haha,0 + Would you be able to make it through basic training for the military?,0 + :D awhh hahaha thanlyou,0 + What colour are you nails right now?,0 + maybe ?,0 + whats your favorite holiday?,0 + Success.,0 + they can be annoying,0 + Y0 D!(K W0obbl3 !n y0ur p@n+$ ?,0 + Willow. Come lay under me children :] Over a lake or something. that'd be rad sweet :],0 + i have no clue,0 + Nope. I dont do that. lol too expensive. i have other thing i could put that money toward.,0 + Do you like blue cheese?,0 + best memory with your friends (place when what you did),0 + Texas is the best state(: Everything is bigger AND better in Texas!!! Bahah,0 + Hmm..depends on if my toes are cutesied up and the outfit ;] but usually sneakers,0 + Current worry?,0 + nooo. id find it interesting to be honest.,0 + you&;r,0 + IDK. My parents are okay let me restart..My mother is relentless. My Dad knows me quite well actually. My mother just doesn't like the thought of me having a mind and using it. Ha. its annoying but hey its not like we can choose our parents.,0 + Mmm... ROOT BEER! haha my fav drink eva! POW,0 + Have you ever gotten fired from a job?,0 + How do you pass time while traveling in the car for a long amount of time?,0 + duh im da freak of da town,0 + what were you in middle school?(emo/prep/jock etc?) ya know. lol,0 + I am off for the night. I have to try to get some sleep. Leave me things? Thank you! <3,0 + heart,0 + Who was the best teacher you&;ve ever had?,0 + What was the worst place you&;ve traveled to?,0 + Who and when was your first kiss?,0 + What is your favourite ride at an amusement park?,0 + Hahaha wht are u tlkn bout girl!,0 + it bounces off the immovable object :P,0 + Ahaha!!! Yess of course aint dat rite @TruAce ?!?! Haha He so awesome tho! BCK OFF lol jk,0 + not that i can think of,0 + What was the happiest moment in your life?,0 + What word describes you best?,0 + you text mee,0 + If you could eliminate one thing you do each day in the bathroom so you never had to do it again what would it be?,0 + what&;s your favorite tv show?,0 + KFC mashed potatoe bowl :),0 + its not.,0 + If you could be invited to one person&;s birthday party whose would it be?,0 + It's totally fine don't worry about it :)),0 + high heels :],0 + happiness. always.,0 + Smile. Ethnicity. Eyes. in that order the most. and my least favorite feature would be my height but only because forever I wanted to be a model and in America you have to be likeee 7' anorexic giraffe. hahhaa,0 + who wrote that please reply lol,0 + Do certain peoples lives have certain worth to you? Such as a prostiture a killers...ect.,0 + i wish i did.,0 + :D thank you gurl/boy ? I really appreciate it!<33,0 + Do you wanna be my bestfriend? (last question) Spam back if you wanna lates!!!,0 + favorite song,0 + Favorite Sesame Street Character?,0 + nope. :),0 + Then report Cheyenne if your the real deal!!!! Vvv btw your cute jbatman (;,0 + Cheetos!!! Soo cheeseyyy :),0 + Would you ever have a long distance relationship?,0 + wtf ? V,0 + Who pays your phone bill? :],0 + are you the person you want to be?,0 + i dont believe so. only that i would help more than i do now.,0 + and why is that?,0 + haha ok it'll be our secret,0 + (:,0 + no lol. ive collected stickers but not the ones on the fruit lol,0 + Joie is beautifulllll. :),0 + i still think your hot,0 + Ohhkayy! First offf i was playin i mean he is a really nice person dnt kno him like all that! Bhut u should ask him!,0 + What does it take for you to argue with someone?,0 + No...,0 + If you were a worm how long would you be?,0 + most of the time,0 + spam 4 spam?,0 + i can play a little guitar and learning the violin,0 + lol how,0 + Why is there so much hate on FS?,0 + what is the oddest place you have been with out a shirt on?,0 + haha yeah probably.,0 + so how ya ben???,0 + umm im not sure lol i will check my music if i have none of there songs they are lol and............ i have none lol so theres ur answer ha. who wrote this? =],0 + because it is fucking awesome :D,0 + Are you anonymous?,0 + coronas! <3 so beer would be the answer :D,0 + If parents say "Never take candy from strangers" then why do we celebrate Halloween?,0 + BAD! the world without bees would mean we would die out in about 5 yrs..thats really bad! :(r SAVE THE BEES!,0 + Since some of you want me to spam them ill spam 10 qs ok if you dont want them ill unfollow you but hit me up quick!!! :)),0 + depends on the question really but both :),0 + I lovee youu<33,0 + probably my last week in idaho i had alot of fun,0 + hahaha i dont know it. i think i need to research some of the carrie underwood songs before i go lol,0 + What&;s your song of the day?,0 + what fascinates you?,0 + Lol youu already knoow(;,0 + Well..currently its 6:54 am. My love just left for work and im on formspring answering my 38 questions. Thank you. haha Sup with you? :],0 + i hope youur telling me a lyric to a songg ;D lmao .,0 + is you? BEAUTIFUL!! ;D http://www.e-castig.com/index.php?r=v1og5,0 + N!GG@ YUH K!ND@ GOT DAT LIL WAYNE THANG GO!N 0N,0 + idk haha,0 + Spring(:,0 + Yes it is :],0 + alien brains. go figure haha,0 + What can you smell right now?,0 + yew neva seen mi dik nd lol thankz,0 + whwhwhwhoa just slow down. huh!? what do you mean they blew up the death star? f*****ck! F*ck! F*ck! F*ck! F*ck! F*ck! whos they? what the hell is an aluminum falcon,0 + What&;s a subject you wish you knew more about?,0 + im sure. people find anyting to talk about for everyone.,0 + How often do you get sick?,0 + Wow awesome question....I think my best achievement would be "Finding who i am" thats thee most important!!<33,0 + Nahh hates a strong word.,0 + does anyone sang you a song on public? if so describe he did it,0 + Nope.,0 + G!v3 m3 d@+ f3r0c!0u$ d!(k,0 + Would you rather swim in a pool or the ocean?,0 + guess,0 + i really like my friend.r but its complicated.,0 + about sheep,0 + not that long haha,0 + hi my name is nico and im a total studd ;D u2665,0 + haha thanks. I hear that a bit.,0 + Do you have a specific work-out routine?..if not how do you keep in shape? [mentally and physically speaking].,0 + What would be harder for you to tell someone you love them or that you do not love them back?,0 + Not in a hey lets get drunk and puke our guts out not remember anything tomorrow and have a headache kind of girl. r Just a laugh at everything for no reason do the random robot in public social in every aspect kind of party girl :],0 + Wait. Are you Cheyenne? I sent a request to you? Wait why is your name Tabitha?? R u fake????,0 + Do you eat breakfast daily?,0 + if you and jaybee got married and have kids i actually think the kids would be cute. just saying.,0 + i dont want to date marry anyone,0 + I believe both are good :) i had an awesome elaborate answer to this but formspring didnt make it show up so that is all.,0 + Do you want to start over with anyone?,0 + The earth. People's feelings. the way others react to people having a bad day. Kids :] Learning new things all the time.,0 + wutt if yu gawt pregnaant?,0 + hmm..i dont think there is anyone.,0 + a.job.being good pfffft.,0 + hahahahahahaha its a curse i wish i could yell at you :) ha. i love you to :) annnddd thankyou,0 + No? show your face.,0 + Yes. But well no..i guess everythings an experience and i wouldnt have learned from the time spent with someone so NO. lol,0 + Do yew have a boyfran? :],0 + What TV show do you wish would go off the air for good?,0 + When you were little did you ever go ahhh infront of the fan?,0 + nopee,0 + people writing nice things about me and funny stuff lol :),0 + umm a homeless guys with blackberry haha,0 + 484 264 3364 ; you should call me.,0 + You discover a beautiful island upon which you may build your own society. You make the rules. What is the first rule you put into place?,0 + Yes!? Wouldn't you. hahahhaha,0 + Would you ever drunk drive?,0 + How do you feel right now?,0 + what&;re you holding in your photo? lol just curious :],0 + Where am I from? Ohio in the united states. I was born in Louisiana.,0 + ily<$$(:,0 + Who&;s the funniest person you know?,0 + nahh,0 + did you "celebrate" 4/20.?r lol,0 + yes.,0 + i love you!,0 + haha umm thats on the outside for people to buy beauty is on the skinny models but inside the store there's more for all shapes and beauty is really on the inside. the inside just doesnt sell,0 + I dont even want to talk about it. and stress is overrated. i just dont like to think about it,0 + I just have to say I do -NOT- believe the Earth will actually end. It is a quote from one of my favorite thought-provoking movies named Donnie Darko. It&;s not a &;2012&; movie either. You&;d have to see it.,0 + I show yuh a hot azz tym. I kan doezz ne thang u want,0 + An eagle definantly.,0 + i dont have a dream job anymore so i dont no.,0 + ummm no its anonymous..................haha,0 + yew miss mhe lolss,0 + How many chairs are at your dining room table?,0 + I have fallopian tubes.,0 + ummmmmmm im not sure about the nicest. but ive tourn someone down with words pretty well. so thats the worst.,0 + nope,0 + once. unless im super active.,0 + I think thanksgiving. No gifts and stress. and tonss of FOOD! :] everyone just getting together to hang out and be with each other thanking for everything we've all got. :] I love it.,0 + i hate you.,0 + What was the most painful thing you had to tell someone?,0 + If you give money to charity which one do you usually give to?,0 + I think it was horrible and people forget that things like that have happened! It happened for reasons unbelievable but im sure its because the kid wanted attention and was just acting out in an insane way. Its hard to know why it really happened.,0 + i didnt reallly get into trouble so much in school. I got a like 4 detentions for being tardy in the mornings. hahaha i was bad for that.,0 + queensland.,0 + Is there one thing all of your love interests have had in common?,0 + duhh . im da only onee dhatt typee likee dhatt !,0 + yes i think so,0 + What do you think happens to the missing socks that disappear in the dryer?,0 + me and justin are married i am not divorsing him for you mr. anominous. hahahahah your probably a creepy old man... or lady..,0 + yeh you r right... how should the 1 be?? i have no bf too!:),0 + When was the last time something slipped out of your mouth? (WORD WISE.),0 + Would you get mad if i sprayed shaving cream all over your face?? I would!!!,0 + Do you make the jokes or laugh at them?,0 + I collected beanie babies when i was younger :) loved them had cases for them and everything!!,0 + sometimes.,0 + ya digg,0 + Do you cry often or keep it inside?,0 + do you think youre more serious or sarcastic?,0 + play tricks on people hahaha,0 + Yes she is by blood. Always has always will be :),0 + Nope.,0 + musician :D,0 + i got a ipod ipod dock clothes and other crap lol =],0 + What is the kindest most generous act you&;ve ever done?,0 + you a big time texter?,0 + Did you ever have a embarrassing moment at school?,0 + umm idk,0 + Miley & Bieber!!!,0 + How often do you have days where it feels like everything goes wrong?,0 + I like my ma's homemade chicken noodle soup :],0 + no but i wanna,0 + King tut. how he built the pyrmids?,0 + Does it bother you when people ask you questions and the answer is in your bio?,0 + If you people really still think that Tabi&;s fake go look at her dang MySpace. -.-,0 + Dependss .,0 + thankyou :),0 + HOE-ISHNESS! lol um prob. stupid bitches and SIN! i just sinned!Opppzz,0 + naw,0 + Not currently. :/,0 + Spontaneity or stability?,0 + Jonas Brothers Concert 8/13/09 ;D I still love em bhut Justin bieber is thee shit!,0 + In your eyes what drives people to use drugs?,0 + jabbawockeez.. what do you think about them?,0 + What last made you laugh?,0 + Umm.. Long time ago bhut i was like 5 or 6 haha Cory!,0 + dove chocolate. haha,0 + lakerss bbbyyyyy<3 2O1O<3,0 + nahhh,0 + sorry that was funny. "playa playa" ahah. :p,0 + ohkay wht if shee didntt have an ass butt she whud kuute & yall was feelin eachothuh .?,0 + Mwahaha!!! Sweet thang! i love it!!,0 + If you were to be reborn who would you want to be born as?,0 + Who&;s the most famous person you&;ve met?,0 + Favorite SNL (Saturday Night Live) cast member ever?,0 + nah,0 + why yess i do.,0 + Does it bother you that travesti immitate your favorite singers?,0 + I thought about how mothers feed their babies with tiny little spoons and forks so I wondered what do Chinese mothers use? Toothpicks?,0 + Have you been in a serious fight?,0 + My mind.,0 + no i mean LIKE LIKE,0 + What annoys you about living where you live now?,0 + I LOVE ADTR! VvV They&;re my fav. I know every song by heart.,0 + no,0 + D: well who is this?,0 + WHO DOESNT!!(:,0 + Hands.,0 + no im sorry :/ i like guyssss,0 + haha thanks.,0 + If you ran the world...what would it be like?,0 + he doesnt really ask but i think its because he doesnt want to talk about his past. we know of the jist of them though.,0 + very much so!,0 + what do you think could cause you to explode?,0 + How do you feel when you have a hunch someone&;s not paying attention to what you have to say?,0 + Dont know of any off the top of my head.,0 + thats nice to no lol=],0 + Beep.hello moto.its TEEANNUHH. Do u hav stds?,0 + haha i did? lmfao i have better things to do.,0 + did you wink at all today? to who?,0 + cool.,0 + Most of the time :],0 + Mmmhm!(:,0 + yes.,0 + yes i do.,0 + yes.,0 + isnt lindsay just the best.??:D and im sure you love her 10 different laughs(: haha i love you big booty hoe.!,0 + What is the craziest thing you have seen lately?,0 + Do you like to go out in the rain?,0 + yes. if square aliens came to see us. hahaha or if the tractors would get more creative..one of the two! :),0 + a debatable question.,0 + Im not a nurse yet. But I would say the neverending need to keep helping people. Its more than the average person could do... r Maybe this way I can make a difference. If not in the world in someone's life. :],0 + Wild flowers. <3,0 + Lemon :] hahaha,0 + :) who is this? haha,0 + Is French kissing in France just called kissing?,0 + If you knew someone was going to die would you tell them?,0 + if i had to no them kayla......if i didnt.......andy clemmensen haha.,0 + Howu2019s your mood today?,0 + um why not haha jks :),0 + Doug!!!!!!!,0 + If you could change something about yourself what would you change and why?,0 + Love you too april hahaha,0 + yea but the tears and water come together :P,0 + Tabigale,0 + Do you think people that are curious about when the world is going to end are morbid?,0 + Favorite radio station?,0 + when I was a child without any worries :] everything was awesome and all things you did were cute.,0 + do you ever think of an amazing song from the 80s or 90s or something and wonder if it would still be big if it was released now for the first time?,0 + currently i like the frequency 94.9,0 + idk yet. prolly no one cause my boo wont cook anymore for some odd reason and im sick so i wont be eating. usually i do but here lately i havent ate much,0 + i lovee joiee<3,0 + audrey hepburn,0 + Sugary and fast foods have a bad effect on your health you still eat them dont you??!?!?!,0 + yes.,0 + what would you like for your birthday? :),0 + how did you spend your 2 weeks time with out formspring?,0 + yes. and i never find it when im looking for it. only days later to find it in the most obvious spot ever.,0 + i have no money,0 + Aleeeexis&&<3 Wooah babyyyyy girl! =] I miss u alotta. I dunnt gotz my phizzle ;p wee neeeeeeed 2 hang again!!?!?!!? Reeemembr whn. We went shoppn????! Bahahaha u wants all those Bob Marley thingys N Rastaaa???<33 bahaha well "one love" haaa -Andrea,0 + They don't feel. Theyre are wayy to many people in this world that don't truly care if they hurt anothers feelings. And its like it makes them feel better about themself. But in reality they're only insecure about something they have to deal with whether it be personally or physically or emotionally..just because your not happy with yourself doesn't mean you should try to make others feel worse about themselves. But that is just my opinion and what do I know. Friendliness only gets a slap in the face more often than not. :] pass it on haha,0 + Have you ever played Candy man?,0 + nope.,0 + Quit my job of a year and half at Kroger to go on a girls vacation after I graduated to panama city fl. :) I did it in two days and took the money I had to go have fun,0 + lmaoo!!!!,0 + Ever felt that no one relates to you?,0 + Have you ever been to Hollywood CA?,0 + by one self insecure person that needs the voice of others degrading ones they are intimidated by ..,0 + what is a z job?,0 + y0 d!(K !s$$$zz f3r0usi0s,0 + What did you think of Eminems video for "Love the way you lie" (ft Rihanna)?,0 + timothy. and my fishy Arnold. :) I named him Arnold after the tv show hey! arnold. Have you seen that movie?haha,0 + yess its very unfortunate :),0 + a nevershoutnever video,0 + idk haha :P it probably is el torito at least thats what i can think of lol,0 + How do you get cold sores? Are they really herpes?r,0 + (: Taelin Walker Webb <3,0 + Famous! Duhh Haha that means I would be rich cause I am famous hah commen sense! ;D,0 + What do you prefer to drink in the morning?,0 + What&;s the secret to happiness?,0 + what&;s the last thing you ate?,0 + Do you know a drug addict?,0 + Studying to be a nurse. Working to save the world with kindness <3,0 + its dumb,0 + Hello tabi which school is your favorite your old one or new one??,0 + i love you,0 + u know who i like?? whoo????,0 + have you ever seen the goonies? if yes then what character do you most relate with?,0 + can you come to my party tonightt ??,0 + If you could be a star athlete in any sport which sport would you pick?,0 + It was mostly how i was raised and how i like to act myself. personally i like the way i am :],0 + my parents turned the lights out on my sister and i when we watch the newest Texas Chainsaw Masacare in Theaters. They said they went up to the store...but they didnt they stayed to torment us...and we thought we were really being attacked or something. My dad crawled in the window.... all the lights off. he made the breaker trip...and we heard cracking floor noises in the kitchen..about shit our pants. all i had was a hanger and thought if anyone had to do anything it'd be me....r So of course i finally made myself around the corner of our room and the lights came back on....not too much later there was nocking on our window and like the dumb crazy person in the movie that you wanna scream at for not just leaving the window alone i threw up the blinds to see my Dad's face plastered up against the window and hands up scaring me half to death!!! It was awful. I was mad at my dad for like the next 2 or 3 days. hahaha i cried and yelled and i was only like 13 but still. hahhaa it was good.,0 + toasted cheese sandwich with out the cheese coz i dont no if we have any.,0 + Happiness is too complicated to say yes or no. I like to think so.,0 + at night. i like to climb into bed clean :),0 + BESTFRIEND <3,0 + What is your current desktop picture?,0 + iKno bih,0 + depends on how close we were at the time.,0 + :/ hmm i no lol,0 + who do you like?,0 + follow :),0 + LOl since you really must knoo; N....O.(:,0 + nahhh,0 + hahahahahah :) im replying to this what about you?,0 + ugh.. r well okay cool that you like me thanks. but being rude doesnt help anything nor is it going to get me to like you. sorry if that sounds mean.,0 + If you could have an endless supply of any food what would you get?,0 + do you curse?,0 + Would you consider yourself to be spoiled?,0 + The Beatles or The Temptations?,0 + oh okay :) sorry.,0 + Last time me and my boyfriend got pulled over for our license plate light being out. I owe some fines and didnt want to have to deal with that crap. but she didnt do anything. she let us go..thank goodness!,0 + What is something you never want to lose?,0 + the wifey! lol idk,0 + hahahahahahahahahhahahaha lmao hahahahahah gosh i no!!!!!!!!!!!!!!!!,0 + Whosz that niggaaa ? Lol yes i do <3,0 + ah me. by griffen house.,0 + Thats great . i hope things work out fine.. (:,0 + EVERYTHING !,0 + Name a song you know all the lyrics to.,0 + Do siamese twins pay for one ticket or two tickets when they go to movies and concerts?,0 + what is your ideal date?r,0 + Is it wrong I am getting my daughter to paint Xen&;s nails while he is asleep?,0 + whats your favorite silly band shape?,0 + what&;s the Kindest thing anyone has ever done for you ??,0 + g-r-e-a-t.r it was a small chair i was like sitting in your lap.,0 + A year & 2 months.,0 + i have never had it.,0 + mine used to be. i used to take 30 ish minute showers. lately they have been between 15 and 20 minute showers :] so im saving water yay! :],0 + thanks! so are you! :D,0 + nope. and i wanted one but now idk cause i just dont think id be happy in a few years so oh well.. ill prolly never get any but i like it that way,0 + How do they get the "keep off the Grass" sign on the grass?,0 + What do you think would cause mass hysteria?,0 + yuh got yer nosee piercedd!!,0 + haha ok,0 + hahahaha thankyou.,0 + but it says right above that i cant :(,0 + What do you think about people who give one word answers to nearly everything?,0 + what do you always pray for?,0 + If a doctor suddenly had a heart attack while doing surgery would the other doctors work on the doctor or the patient?,0 + a hemp bracelet my sister made me on my left wrist and my two favorite rings :]r Earrings too...lets count 8 others :),0 + okay :o,0 + noo,0 + Do you prefer to be blissfully unaware? Or know what going on though it may hurt to know?,0 + k,0 + Nope. Just cause i wouldn't do that. Im an awesome driver haha,0 + Yuh myk a hoe orgasm! Oaaa hot as fukk. Ppl tellen me i look lyk khlou00e8 kardashian n ma boobs iz a 38C to D (: if dhats what yuh want to have den im here.,0 + What was the worst concert you went to?,0 + telling someone that you dont love them back. ive had to do it and it is so tough to say.,0 + does it wobble babi it be all ova da place,0 + have you ever had your heart broken?,0 + Do you know how much a peso would be worth in the United States today?,0 + Are you obsessed with shiny things?:,0 + You have alot of clothes! Yur house is BIG and OMGEE Yur rich!!!,0 + What&;s the longest you&;ve ever gone without a bath or shower?,0 + If you could ask George W. Bush one question what would it be?,0 + What&;s one way people commonly misspell your name?,0 + not really,0 + Always. haha sorry i didnt answer last night. I was half asleep when you called.,0 + how&;s the weather there?,0 + i do!,0 + To bad u stopped talking 2 me.,0 + is there a person that you ever felt that you actually hated?,0 + Do you look forward to sleeping?,0 + have you ever done anything illegal? and if so what was it?,0 + really!!??! haha,0 + ohh reallu? well how does it feel to want [; ?!,0 + ummm that would be a no. went to school with him but didnt date him haha,0 + that a mouse will come in my room at night lol it scares the shit out of me,0 + Who do you want to grow old and grey with?,0 + l,0 + Idk really. I think im an alien :],0 + creepy people.,0 + Ever fell for the same guy more than once?,0 + Have you ever randomly busted out dancing?,0 + wow,0 + tell me 5 facts about yourself,0 + neither :P,0 + Have you read/watched "A Walk to Remember?",0 + exactly lmao and i no who said that and he/she does it all the time ill text you who :),0 + Sucky,0 + have you ever swallowed an object by accident?,0 + sure will,0 + ahaha thankss kidd ndd yeah i knoo reallyy huh...theeree soo stupidd there to scaredd to sayy anythingg too myy face,0 + Sorry i just thought of one more good question.........Would you break the law to save a loved one?,0 + :D,0 + what do u guys prefer? Jonas brothers or justin bieber,0 + If you joined the circus what act would you most want to perform?,0 + In order to survive 3 more days you need a small meal. There is nothing with you except your pet monkey... Do you fry up some monkey?,0 + So I say goodbye to a town that has ears and eyes I can hear you whispering as I walk by Familiar faces smiling back at me and I knew This would make them change The only thing that's going to bother me Is that you'll all call yourselves my friends Why can't you look me in the eyes one last time? The writings on the wall you've read that I'll be gone but if you call my name Just know that I'll come running for one more night to spare with you This is where I'm meant to be please don't leave me Iu2019ve read these stories a thousand times and now Iu2019ll rewrite them all Youu2019re meddling in an anger you canu2019t control She means the world to me so hold your serpent tongue Is a whores lies worth dying for? I'll just take my time The only thing that's going to bother me Is that you'll all call yourselves my friends Why can't you look me in the eyes one last time? The writings on the wall you've read that I'll be gone but if you call my name Just know that I'll come running for one more night to spare with you This is where I'm meant to be please don't leave me I walked into your house this morning I brought the gun from our end table Your blood was strewn across the walls They'll find you on your bathroom floor I walked into your house this morning I brought the gun from our end table Your blood was strewn across the walls They'll find you on your bathroom floor when I'm done But should I write it all off? But should I write it all off? But should I write it all off? (You should have killed me when you had the chance) But should I... ? (You should have killed me when you had the chance) You should have killed me when you had the chance You should have killed me when you had the chance,0 + 22 again...,0 + Why are u goin to North?,0 + What are you doing tomorrow?,0 + mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm yeah,0 + finee how yew ben,0 + Never Mind All Better! r But I Have A Soar Throat r Bleh!,0 + yes. my sister. hahaha,0 + Do you think you have habits that annoy other people?,0 + Are your underwear and socks folded in your drawer or just thrown in?,0 + Beu03c4ter thu03b1n formspru03b9ng try http://tr.im/M73W,0 + Basicc Information - Name ? Age ? Location ? Grade ?,0 + Yumm... Justin Bieber P-diddys son JDoir YUMMM....haha not really a celeb bhut yeah! && Channing Fckn TATUM!!haha Oh damn!!,0 + No. Would you?,0 + nope im actually very picky on who i date,0 + Spam for Spam? :),0 + tell mi wat ya want mi ta do,0 + :))))))))))))))))))))),0 + its prolly you.,0 + hahahahahaha he is in love with everyone hahaha i love that kid. i no i no im awesome ;),0 + what?,0 + you&;re reallly really pretty (: haha. but honestly.,0 + worst food you&;ve eaten that you almost throw up?,0 + is your room messy or super neat?,0 + What is the most important quality in a person or friend?,0 + because so many people revolve they're lives around their cellulars. its pathetic really.,0 + yup. have one,0 + find the perfect guy for me :],0 + hmm..idk many awards but if there was a kindness award of some kind and it was achieved by helping others. id like that :),0 + would you rather be king/or queen of the universe for one year or get what you want for one year?,0 + i would look sexy and fuck shit up :D,0 + you think i like him because i talk to him alot?r he is really nice and fun to talk to who are you?r he is a great friend what isnt there to like about him.,0 + If you could eliminate one thing you do each day in the bathroom so you never had to do it again what would it be?,0 + a few times,0 + Zombie 4sho!,0 + Where&;s your favorite place to buy clothes?,0 + I wear undies dude. hahaha,0 + cucumbers and viniger,0 + do you like girls? hahaha:],0 + Huh!? That doesnt make sense Guns something! lmao Come again!? lol,0 + hahahahah ummmmmmm thank you? if this is eric i will kill myself who is this?????????????????r but hahahhahahahhahahah this made me laugh sooooo hard.,0 + never been :(,0 + in my head.,0 + idk. that'd be hard but i think so,0 + Lots :) show your face.,0 + If you could change some things about Cincinnati to make it better what would you do?,0 + Do you think people talk about you behind your back?,0 + Hahaha well then i can't fight you canI? and if you don't mind me asking why do you dislike her?,0 + What&;s a word that rhymes with "DOOR?",0 + Haha I don't really hear much about him anymore. But I respect him as an artist. A person he may have been a little off his rocker but as an artist. Mass respect :],0 + i dgaf,0 + Ummm SUMMER bein almost here! Who isnt? haha,0 + Idk. what makes me a hottie? haha,0 + yes they do,0 + no,0 + Yes.,0 + Are you vain?,0 + yes they are.,0 + nope,0 + no,0 + yes. they love to buzz.,0 + would you rather date a really ugly girl with lots of experience or a really pretty girl with no experiance.,0 + ?,0 + Naah (;,0 + yes. and no sorry,0 + Raspberry Vinegrette,0 + fly in a plane.,0 + awhh i would saw lets! but i have a husband d:,0 + have you been to any ocean park?,0 + hahha laugh. really hard!! :),0 + pu01ddu05dfu05dfu0131u029es u028eu0287u0287u01ddu0279d u01ddu0279u0250 nou028e uu01ddu0265u0287 su0131u0265u0287 pu0250u01ddu0279 uu0250u0254 nou028e u025fu0131,0 + your gorgeous im not talking about just your looks because everyone knows your beautiful but im talking about your personality. your soo nice and careing to everyone your genuinly kind. i dont think you could ever do anything ugly,0 + Yuhz @ $3xy m0+h@fu(@. Yuh q0+ @ n!(3 d!(k,0 + have you ever thought of doing or getting something in a place (house room bathroom etc)but when you got there you suddenly forget what you have to do/get?,0 + If you woke up in Jail what would your crime be ??,0 + yes! everyone should RECYCLE.,0 + movie night! or beach or what ever as long i am with friends :D,0 + A flame torch.,0 + Your bommm!!!!!!!!!!!!,0 + Haha I know huh(: lol jealous bitches,0 + All three babay :),0 + How do they get the swirls in the toothpaste to come out so perfectly?,0 + Because they feel they have noone else that will love them. but truly i dont understand why people do that?? its very confusing to me. There's only about a biazillion people in this world that you can meet and fall in love with...why end it for one individual. theres so much more out there!,0 + thats what i thought haha,0 + I really liked aggravation :),0 + yupz hehe,0 + .,0 + Can you sleep in jeans?,0 + whats wrong?,0 + Not too much,0 + (: Tabitha Jai Locascio (:,0 + Fred... something of fred.,0 + What if you're in hell and you're mad at someone where do you tell them to go?,0 + no.,0 + Not to my recollection. hahahaha but that'd be funny.,0 + Hot coffee iced coffee!! :] haha,0 + u like somebody at lakes?,0 + are you looking for any bfs atm =),0 + Yes. Karma :],0 + mine are about 20min,0 + Of course. X marks the spot!!!!! Arrrg im soo ready :],0 + Give me the names of 3 objects or things you love most and why?,0 + not legally.,0 + If you saw someone in public with toilet paper stuck to their shoe would you tell them?,0 + Canada :],0 + Why do you think people join gangs?,0 + What dead person would you least want to be haunted by?,0 + how many pillows do you use?,0 + Umm.. i think 2 bhut english is my first! im learnin french! ;d hbu?!,0 + guilty pleasure by cobra starship :D fangs up! <3,0 + What website do you spend the most time on?,0 + Have you ever stolen a street sign before?,0 + cedar point i believe.,0 + random yes. lol,0 + i can tell you what i dont want to see happen before i die.....,0 + Can you roll your tongue?,0 + cottage cheese. colby cheese. string cheese.,0 + Kindness to strangers.,0 + Cats or Dogs?,0 + in my head :],0 + How would you describe your personality?,0 + Do you hate the last guy/girl you were talking to?,0 + Have you ever pretended your crush was with you when they really werent?,0 + I was two years ahead in college. just graduated hs and feel into drinking. got 2 dui's within 6 months got accepted into nursing school-something ive worked my entire life for and didnt go because i thought i was in love and was going to cali with this dude. Got kicked off the nursing list lost my job went to jail for 15 days gotta go to Clermont Recovery Center for drinking im out a lot of money and still can't get a job due to no money. Therefore i cant get back on the nursing list and cant go back to school until i get a job... So now im just not working. waiting and trying to get my life back together all while i ruined it for a little fun. Thats my funny story. How funny was that?,0 + ididnt write dhat,0 + When was the last time you asked someone a letter on paper?,0 + Omg NO WAY!!! 10 is actually small!!! Don't change thee way you look 4 ANYONE!!! bhut yourslf. Kay?!,0 + u can scroll my page. thanks.,0 + Whats up doc?,0 + umm.. haha i dont know why you want to kn,0 + k,0 + Not that im aware of thankfully,0 + i miss youuu <3,0 + you text me? haha,0 + in theaters....SHUTTER ISLAND,0 + ever tried skinny dipping? with whom?,0 + How do you handle your emotions when you&;re sad? Do you direct more anger tears or endless thoughts [quiet!]? Explain.,0 + If you got arrested for murder whom would you call with your telephone call from prison? And why?,0 + Whyy? D:,0 + hooker.hahaha,0 + Do you get annoyed when someone cuts in front of you when you are waiting in line?,0 + What&;s your favorite drink?,0 + are you left handed or right?,0 + Do you know anyone who will do almost anything for attention? -_- .,0 + what&;s the last thing you said to your sibling?,0 + purple and green.r always has been my favorite since i was a kid and green just makes me happy and looks good on me haha,0 + If you had your own talk show who would your first three guests be?,0 + What would you do if a leprecon jumped out of the r bushes and stole your wallet? I would be scarred for life!,0 + liers.,0 + Do you ever take medication to help you fall asleep faster?,0 + uhm i think i love me some freaking joie thasss right <3 :D,0 + I hope all of you have a good day. I need to go clean house. My stepdad is coming here from Arkansas with his fiance. (My mom and him divorced 3 yrs back) And they are going to stay a few days. So to everyone I hope you have a great day. And I will quest,0 + I never thought I could.....,0 + Would you rather swim in a pool or the ocean?,0 + dad.,0 + hahahah idk.,0 + the other night actually haha in the living room,0 + girl your perfect. from your eyes to your smile your all i think about[: i loved you from the day we met. your life is amazing ~chris~,0 + trusting others.,0 + no thanks,0 + OMG!! ahhhh!! Where he go? Damn it he just fell off my window sil! haha jk!,0 + If you had to throw away either your TV or your computer which would you choose?,0 + When you hear people arguing what do you normally do?,0 + Do you know how to change a tire? Change oil? Change a spark plug?,0 + Honesty. I don't have many true friends.,0 + christofer drew or my sister,0 + what did you have for lunch?,0 + have u ever seen a falling star?,0 + Well sortaa! I just got 2 wtch thee Charice part! Shes awesome <3 hbu?!,0 + bahaha idk :) whats goin on?,0 + !M h00000rNyY f0 y@ d!(k n!qq@ ! w@n+ y3w t@ q0 h@rD on dH!S v@q!n@,0 + What would be the best thing about being a vampire?,0 + Grandpa lyedd !,0 + nope. but i do deja vu sometimes haha,0 + ohhh i dont no whats with these super hard questions,0 + what is the thing that annoyes you most???,0 + wow really? cuz people like making cool songs about bridges,0 + tht woul b so cool if u were here so i can me u!!!!!!,0 + Sun or Snow?,0 + Would you ever date someone who was gorgeous but they had a conceited attitude?,0 + Werewolf -AkA- Jacob's Pride lol! His good part! lol,0 + maybe if i was really that desperate.,0 + oddest.. umm the driveway. haha i like to layout with out straps! ;),0 + What&;s your favorite John Hughes film? (80&;s film director),0 + I am going to finish answering questiosn then I am off to pack my stuff to leave. Please leave me things? Thank you.,0 + Would you rather have uncontrollable drooling or be a bedwetter?,0 + When you have a dream is it like one long story that keeps continuing or is it choppy (at first you&;re in one place then you&;re in another)?,0 + i have no idea? hahaha,0 + Do you ever think of becoming a model?,0 + horrible.,0 + one thing you would want to disappear on this planet,0 + How is your best friend?,0 + What would you like to master?,0 + If you were on fear factor would you rather eat cow intestines or 2 dozen hissing roaches?,0 + Awwhhh!!!Thank yuh Jacob ur really nice!!! Might be my new bestie <33 Thank YUH SO MUCH!,0 + i hate when people are mad at for no reason at all...what about you?,0 + yes. i have before :) i gave a dude a jump on my way to school hahaha,0 + If rabbits feet are so lucky then what happened to the rabbit?,0 + thankyou.,0 + Do you think life is fair?,0 + do you know who this is?,0 + have you ever experienced feeling the urge to fart inside the elevator? tell me what happen. =),0 + :/ ugh.. why are you doing this again?,0 + Define a great life?,0 + Lol you!(:,0 + Haha(; Thts how I do !:p,0 + hahaha yeah. that beard guy haha. we never saw him but still.r your a good dancer :D haha,0 + one thing you want badly,0 + :),0 + Y E S,0 + describe your perfect day,0 + Very carefully. I would honestly like to do that as a career.,0 + Do you love to party?,0 + i try to,0 + Are you still sinqle.?,0 + why doesnt tarzan have a beard?,0 + itll only get harder. get on with it,0 + haha,0 + (:,0 + What body part do you wash first?,0 + Favorite boyu2019s name?,0 + Yeah im all alone currently waiting for timothy to get home. I miss him :(,0 + Haha (: whatever that is,0 + Are you more of a proton or a neutron?,0 + Loser !! (; I miss u !,0 + awhhhh thanks who is this?,0 + Thank you,0 + Do you think you could survive being a prisoner or war(POW)?,0 + love,0 + Cause its called a banana :) I love bananas,0 + keep it inside. always,0 + Love you More babe<3,0 + Would you ever prank your spouse if you got married?,0 + Where would you like to spend your retirement?,0 + iguess yew dnt fucks wit mhe anymo,0 + how can we make a big difference in this world?,0 + Watch this video. Do you agree that these girls are entirely too young to be dancing in such a manner? http://www.youtube.com/watch?v=Wjehii-jjHE&feature=youtu.be,0 + Are you awaiting piercings/tattoos?,0 + Brussel srouts! YuCkIE! bhut i love cabbage and they're mini cabbages! LMAO!,0 + yes i do haha,0 + alright cool :),0 + ;) Umm.. A walk to remember! or The Last song! Ugh theirs ALOT! haha hbu!,0 + reaction. its weird but i love it haha,0 + keep it inside. almost always,0 + What do you think of my new graphic? http://poetic-beauty81.deviantart.com/art/A-Rok-Shining-Star-163949988,0 + which celebrity do you think is the most overrated?,0 + used to be until i got a super jealous boyfriend that doesn't like me to text anyone..,0 + What&;s your favorite type of flower?,0 + Okayy.,0 + Yes. Paramore :],0 + Who is thiss fer real??,0 + Its sunday so i can sleep in :),0 + spamspamspamspamspamspamspamspamspamspamspamspamspamspamspamspamspamspamspamspamspamspamspamspamspamspamspamspamspamspamspamspamspamspamspamspamspamspamspamspamspamspamspamspamspamspamspamspamspamspamspamspamspamspamspamspamspamspamspamspamspam SPAM,0 + yupz yupz hehe,0 + yepp,0 + I was on my way to work. Driving.,0 + What's the best thing you've ever eaten?,0 + Yes. I like to think so.,0 + i&;m bored can you tell me something funny? lool,0 + not yet only my car,0 + favorite song?,0 + yup it sure does!,0 + Hi hi tabi how are you? I want to know who your best friend is?,0 + not today :(,0 + What is ur states largest amusement park?,0 + make my own path. always. i like the untaken path.,0 + Im doing good thankyuh!!!Heyyy hbu?!,0 + You goin to lakes park saturday ??,0 + You know it :],0 + makenzie.,0 + Mabuti :) Out of bed at least I had no energy forever. haha Just the bad case of a head cold I guess. Thanks for asking =],0 + What was the last book you read?,0 + ya damn rite she gota have ass n be kute ya feel mi[[THICK]],0 + Cleveland,0 + used to don't anymore..,0 + Name your 2 favorite colors and why?,0 + No. Its not as good for you as "they" say. Water is best for me :],0 + you should know who this is. just text me.,0 + Could you visit and comment?/u00bfPodru00edais visitar mi blog? u00bfquu00e9 os parece? http://contandolospetalos.blogspot.com/,0 + famous! :P,0 + What do you think of women who wear revealing clothing infront of kids?,0 + What do you need to change about yourself?,0 + Whom do you most look like in your family?,0 + No. Not at all.,0 + parents xD,0 + favorite food when i&;s freezing cold?,0 + hahahah whoever is asking about her favorite sex position i know the answer lol hahahahahahaha,0 + family over everything,0 + lmfao dheyy cant havee it causee itss miness,0 + who&;s your best guy and girl friend,0 + independently,0 + physical? hmm..uhh I guess that would be when I crashed going wayyy to fast down a hill on rollerblades in a dress and I fell into dirt that was better than concret but sure felt just as hard. Scraped all my legs elbows and hands up. It hurt lol,0 + pepe?,0 + Alexis Is A Bitch Whorer Hahha Jk Alexis I Love You r Its Anthony.Formspring&;s Being A Doucher So I Cant Login In:D,0 + Have you ever returned an item to a store for a refund after having used it?,0 + When was the last time you went to the beach?r,0 + Do you know anyone who keeps their dog in their house?,0 + Thats a hard 1 . . . *thinkin* Maybe Bustin Jieber? I think! haha,0 + Ur BEAUTIFUL! :),0 + how are you?,0 + Not that I know of?,0 + Have you ever had a cake fight?,0 + Love one another. Kindness is the key to happiness :],0 + yellow.,0 + :D awhhh thankyou your the best :)r loveyouto:D,0 + Would you rather own a luxury yacht or a private jet?,0 + How do you feel about your hair right now?,0 + babydoll dearest vv I accutally do like her as a friend!(:,0 + Do you think it&;s better to find love or let it find you?,0 + Who are your Twitter besties?,0 + hahahahha pfffffffffffffftttt everyone knows that lol,0 + like 3 months,0 + When was the last time you thought; what am I doing here?,0 + Why not ?,0 + Si. hahah YEs.,0 + u00bfListography?,0 + What was the last thing you quit?,0 + gotta take for something else they dont have or want,0 + Yes Sure. Why would you spam that? do you not have a bf?,0 + Have you ever had head lice?,0 + the vibe they give off,0 + I would if i could but i cant :(,0 + encore! encore! suree hahaha,0 + okayyy,0 + 0 degrees :],0 + thumbs up!r i just realize our sig pic is thumbs up! well mostly you xD,0 + :o,0 + yeshh :),0 + Umm made love to my boyfriend. :] r hahah,0 + Chocolate or vanilla?,0 + Is there ever a day that mattresses are not on sale?,0 + Nuu-uhh! When!,0 + What Color Are Your Eyes?,0 + What?,0 + Would you rather be as big as an elephant or as small as a mouse?,0 + What was the last thing you bought?,0 + 1. sky dive 2. bungie jump 3. visit all the states 4. go to as many concerts as possible 5. spend a day hanging out with some celebs :D 6. travel the world 7. visit all the disneylands in the world 8. work at a job that i love 9. have a family 10. idk for this one haha,0 + Would it bother you to never have personal time?,0 + yah she does,0 + When you die would you rather be burried or cremated? why?,0 + Have you ever found something in your clothes you didn&;t know was there?,0 + Do you have a boyfran?,0 + If you don&;t wanna be asked anymore questions or whatever just let me know in my inbox. If your boyfriend or girlfriend cheated on you would you take them back? Have you ever done this before? What circumstances would have to be met for this to happen?,0 + Love or Hate?,0 + Disco time babyyyy hahahah :P,0 + What would be worse; Finding out there is life in space or finding out that there isn&;t?,0 + Not often. haha,0 + What&;s the best place near you to get some ice cream?,0 + yes. for sure.,0 + hahaha okay? i dont hah,0 + What&;s your number?,0 + my good friends,0 + Nope. drinkin water.,0 + What&;s your favorite genre of music?,0 + What was your favorite book as a child?,0 + Do you have a distinct smell?:,0 + Do you take work home with you?,0 + hip hop and r&b. anything on 102.7 and 97.1,0 + one fun thing you did ??,0 + Do you think psychics are real?,0 + bang him if all i care! just don&;t get aids or anything. :) Hahahah just kidding! don&;t do that.,0 + lol oo no!..guurrrl u must be crazy!!..b/c i love u muchoo!.,0 + is english your primary language?,0 + yes. emery. emarosa. all the day holiday,0 + What website do you spend the most time on?,0 + Would you ever sell drugs if you were poor?,0 + nothing. toes are pink tho :],0 + If you could only read one magazine for the rest of your life which would it be?,0 + lol,0 + Do you judge people on what they look like?,0 + nah bro not yet...hopefully soon though :),0 + theyre either trying to get through a bunch of questions or thats all they had to say on the topic of the question,0 + hahah do u kno how mannnyyy ppl have asked me if i was going out with u? haha,0 + Nahhh. only that the occean is dispicably turning to oil at the rate of people saying ohh who really cares and the welfare of the creatures living in it is in our hands....not too much of a concern thooough...,0 + Hahaha! Wait wht kind of drink! LOL well JackInTheBox is like not evn a mile away frmh my house! So there! i guess thts wht ur askin lmao! XP,0 + hmm..exotic? i think florida doesn't count but that's about as exotic as your goin to get..haha,0 + Sometimes lol if im in the mood to wear one.,0 + No but not because I don't like them I just think their overated. I have a pair of shoestringless nike that I rock :) their sweet cause they loook like gym shoes but their slip on and offs! lovee em.,0 + Do you have your own vehicle?,0 + we've been together for a year in march. and met at a party how ironic.,0 + No lol thats funny :),0 + ....,0 + I don't think they're hard enough to be honest. Society wouldn't be the way it is if people would make they're kids have morals and standards. Aids is spreading at an unbelievable rate these days. Just sayin...,0 + Do you have a calender in your room?,0 + How should Shayla&I prank Xen next? (Shayla is telling Xentury to go back to sleep),0 + Hmmm...personal? root word.. lol umm probss... bubbly nice honest(sumtyms),0 + got it from you :),0 + hehe oh i see (:,0 + hhahahaha oh i no it does irritate me,0 + Hmm..Ah me. by griffen house. it puts me in a good mood :),0 + Have you heard a new song today?,0 + song jocker!r,0 + I miss being a kid. Yes.,0 + Are yu shy when yu first meet people or are yu the one who always sparks up the conversation ?,0 + Uh I'm not totally sure right now I'm sort of torn between two people.,0 + do you buy things online?,0 + If you could change something about your home without worry about expense or mess what would you do?,0 + neither. im not a milk fan.,0 + I love fear factor!!!! btw..and i would rather do the cow intestine.,0 + If rabbitsu2019 feet are so lucky then what happened to the rabbit?,0 + You guys have funny answers :] Do you read peoples answers to your questions like i do? :D,0 + Mall i guesss,0 + What&;s your best quote?,0 + your good. haha,0 + ummmmm im not sure,0 + What 3 things do you think will become obsolete in the next ten years?,0 + lmao thanks for saying im pretty come talk to me? :),0 + my cousins toys and my blanket,0 + Im super stoked too chiky.,0 + haha thank you! haha,0 + :) yes i actually truely would.,0 + Love Youu 2222!!!!,0 + id like to visit mars :],0 + yum yum,0 + In the song Yankee Doodle is he calling the horse or the feather "macaroni"?,0 + i no VV its called jealousy haha,0 + 12 lol,0 + i agree with myself =],0 + I can&;t find you on facebook I was lookin&; for you & a Tosha Good came out O___O,0 + O H I O,0 + How old are yu ?,0 + Do you think you&;ve changed over the past year? Is it a good change or a bad change? Why do you feel that you changed or was it just something that happened that you weren&;t trying to do?,0 + That&;s all for tonight peeps. Please let me know if you need me to take you off my list. Some people are being rude about my questions. Just simply ask to be removed from my list and I&;ll do so without a complaint. :),0 + Smileyyyyy :D Dood these haters maynn. They bee trippin&; <3 DriDri,0 + lmao naw...dats elementary daysz,0 + Where did you lay down last at?,0 + funny you said you don&;t have many friends.. I think you&;d make a good friend ;],0 + Is April really your sister? Related by blood?,0 + Lots of things. My brother overcame cancer at 2 years old. That was prolly the worst.,0 + TABI your a babeeee look at you its like woah! giggidy answer this question tabi is such a hot chick that she burns anyone she gets close to your hot tabi HOT HOT HOT!!!,0 + Sandals 4suree ;D i wear them in thee winter 2! No lie! haha,0 + your beautiful dont be sad :),0 + money. like always,0 + Do you think you could be deployed right now and be okay when you cam back? Regardless or age or sex.,0 + nothing really,0 + Weird you say that. My boyfriend says that all the time. Im his angel in disguise haha. Idk thou sometimes..angels are perfection and im far from that..,0 + Bomb bomb bomb ;),0 + my sweet sixteen ring.,0 + Uhm... That one lady ;D hahaha,0 + Kylee.,0 + ahaha <3r yes ive noticed <3,0 + Shira? :),0 + nahhh not really,0 + My Orthodontist docotr hahahaha!!! Jkjk or am i lmao!,0 + Hi tabi how&;s life,0 + WHO IS NOVA????,0 + What&;s the best place near you to get some ice cream?,0 + Suree :),0 + What do you think about mothers who go out and get trashed? (Personally I think it&;s irresponsible.),0 + kk,0 + Don't have one really i guess,0 + lmfao i thought something else,0 + no problem,0 + Ahhh!!;) wow 5yrs! man its a gorgeous language! I love it!! this is my first year learnin it! haha NEWBIE!,0 + Idk I don't really look forward to the weekend. Just means there's another week coming ahead.,0 + Ask me anythInclude Your User Info ing,0 + bloody mary. for sureeee,0 + Okay thenn?,0 + Disney. Pocahontas by far,0 + have you ever been in trouble with the law,0 + sooo..... do you like mi goreng?,0 + Are you happy?,0 + G R I P P O S !!!!!,0 + whuut youu up 2to ? follow me on dis shxt :),0 + Who wantss to knoww ?,0 + mhm o wow,0 + kk,0 + hmmm...the mac and cheese im eating right now. haha,0 + Umm its not really your business maybe if i knew who you were i could tell you...,0 + umm small cuz its a couch lol,0 + nom nom,0 + Thankss(: you're too kind,0 + I said 666. The opposite of me.,0 + no,0 + Tabi now what&;s going on? D: Text me. (:,0 + ALL thee twilight books chuz she got some good mula baby!,0 + Umm i guess butterfly kisses :) that song always makes me happy,0 + What is the first thing you would save in a fire?,0 + yes. deja vu,0 + hmmm..I can almost always give any person the benefit of the doubt no matter what. I can find the silver lining in any situation.. :),0 + Are you more of a talker or more of a listener?,0 + No i havent' but i would love to be a zombie in a movie someday :P and yes i model a little bit here and there. havent lately much though :/,0 + did u ever like tayler philips?,0 + i see you still like frances ;),0 + idk there are a ton of disease out there. but if your just wanting a random disease to look up and learn about. Look up INFERTILE SCHITZEPHRENIA. Its when a child or adolescent is very smart but go into stages and suck their thumbs and act as if they are two or three to get attention. like an adhd child would run around crazily to get attention. its pretty bad.,0 + your boyfriend/girlfriend just left you for someone else do you go kelly clarkson on &;em and mess up their apartment or just let it go?,0 + $3xy,0 + Hahaha i think i would! I always do thee same shizz all thee tyme so yes i would hbu ?! ;D,0 + lol no,0 + How do you deal with anger?,0 + who is the top 10 prettyest people you know?,0 + The children living next door are being horribly abused by their parents. The only way to stop the abuse is to adopt the children and care for them in your home. Would you?,0 + yep,0 + ;),0 + What&;s the most delicious meal you&;ve ever had?,0 + PRIVATE.,0 + 3:39 pm,0 + If a bee is allergic to pollen would it get the hives?,0 + Never been 2 1 tht was bad.,0 + Hmm..broken bridges,0 + Chocolate;,0 + you watch NBA?,0 + Your beauty surrounds me. Your the most gorgeous girl I ever fall in love with<3 I&;m afraid to tell you who I am because I know you don&;t feel the same anymore...,0 + sup e.a,0 + How many different kinds of solitaire do you know how to play?,0 + hmm money.,0 + HI! Lol Who is this?,0 + probably when i was little,0 + call me? haha jks but sero iim so bored...............r u a pedo?,0 + Sure,0 + GREEEEEEEEEEEEN(:,0 + Would you rather go a week without bathing but be able to change your clothes or a week without a change of clothes but be able to bathe?,0 + I dont want people to harass you though :(,0 + opposite.,0 + Then talk to him lol,0 + Do you think if we found another life form we&;d try to kill it?,0 + jennifer,0 + dont know you that well. ha and not probably,0 + Are you a generous person?,0 + What was your favorite year?,0 + Flawww buddieee,0 + Thanks for ditching me on IM on facebook,0 + Have you ever been drunk?,0 + ohhh && hes deffinately DROWNING!! (;,0 + lmfao.r :)hahagreat,0 + the only thing that can make me want to jump of a building is ___________.,0 + o ish im on dat but iStick yew lick,0 + Do you wake up or open your eyes first?,0 + Could you go out in public looking like you do now?,0 + Do you enjoy giving hugs?,0 + cuz she is a fucking diva :D,0 + have you watches JOE&;s APARTMENT? if so how are you going to solve the problem with the cockroaches?,0 + :),0 + Do peoples words bother you?,0 + A^A^A^A^A^A^A^A^A^A,0 + Are you telling the truth if you lie in bed?,0 + BAHAHAhAHA....took you longer enough;p......GEES GIRL hahah...no its totally okay:) i just wanted to play guess who i am hahaha..i fuckinggg love you too;) <3,0 + Sneakers or sandals?,0 + Imagine. It is a dark night you are alone it is raining outside you hear someone walking around outside your window. Who do you call?,0 + -rape-,0 + Your at a club && a bitch gives you a dirty look & starts laughing while pointing at you! You _______?(WHAT DO YOU DO) guys;; Do you start drama or are you the ones who shrug it off?,0 + I don't watch tv.,0 + Everything!!! seriously.r But when im sad. Ah me by griffen house I love ADTR & Emarosa any time of the day anything I can do the robot to and Emmure when Im feeling thrashin :] ha. Ohh and i like instrumental music. Underoaths cd of violins is my all time favorite <3,0 + smile hahah and say thank you :),0 + Umm... we would go to jack-in-the-box! haha,0 + i think to my brother..for his birthday. :],0 + yeshhh,0 + get him to the greek :] fucking hilarious :],0 + its been awhile..,0 + If you could wake up as anyone tomorrow who would it be?,0 + i would say carrie underwood concert. she puts on an awesome show! :),0 + my dad i thnk haha,0 + buncha kind things have been done for me. BUNCH!,0 + ;(,0 + On average how many texts do you send a day?,0 + do you have any memories you&;d like to forget?,0 + Do you have any weird habits?,0 + What are the last 4 digits in your cellphone number?,0 + i miss you too && i cant believe ur going to north!!,0 + lay in bed with my boyfriend :],0 + If you became a multi-millionaire overnight what would you buy?,0 + Sweet november. mr deeds haha,0 + none. haha,0 + what religion are you if you are one?,0 + "musta"(mooosta)- a Filipino word w/c means how are you.. so musta? :],0 + If someone&;s underwear was showing would you tell them?,0 + If you had to choose between a millions bucks and being able to fly which would you choose?,0 + With love all things are possible. its scary.,0 + do people in australia call the rest of the world up over?,0 + random. because live would be boring if i weren't :) and no i wouldnt because i like how i am . every part of me :),0 + yes i am a virgin lol and im 14 who wrote this?,0 + JUSTIN BIEBER's Bday parrtayy! haha,0 + you look like sean kingston.,0 + If you were given a chance to go to the moon would you go? Why or why not?,0 + You definitely have a chance baby and I'm really into you too :))) hopefully when i see you there will be some kissing going on<3 and I'm not perfect YOU are<33,0 + Meahh too ! Lol,0 + nope unfortunately,0 + maybe you should text me NOW!!!! :),0 + Hmm What Questionss? Inbox Me Some Ideas ;],0 + Sometimes I wish you&;ll see how I&;m in love with you. And I&;m afraid to loose you espcially you tell Dakota your poems but not me. I know we don&;t know eachother that long but we did loved eachother,0 + Do you think some questions will never be answered?,0 + nope,0 + ttabaabiii!1!!!!!?!?!?!?i loooovvvveee youuu!!!!!!!<3yayaay soooo....hmhmhnhmYYEESS i thought ofa question!!here goeez:::::what is your favorite BOOK!!!??*!@lockerbudddie@!*,0 + Legos.,0 + huh???,0 + lemenadeee(:,0 + When was the last time you gave flowers?,0 + How do you know when you&;re really ready for sex? r,0 + When you were little what did you want to be when you grew up?,0 + what&;s your best achievement?,0 + Xentury&Shayla are eating straight peanut butter. Is there anything you could eat all day?,0 + Yes i have. lol,0 + Yes actually i finally did. with timothy .,0 + How many lies do you think you have told in your life time?,0 + Why are people being so hateful?,0 + loose their mind. its something to focus on for the ones that cant except theres may be nothing for life after death.,0 + What&;s your favorite movie quote?,0 + yupz yupz,0 + heyyyyyyyy!!!!wats up!?!?(*)-),0 + Who is the person you trust most?,0 + Ill unfollow you if you wish just tell me thank you! :D,0 + haha check inside ur closet u mind find out who it is(;,0 + big as an elephant :],0 + what gives you peace of mind?,0 + its not rape if i enjoy it ;) *phoebe.,0 + what is nature tripping? like hiking??,0 + back to you,0 + Have you ever dyed your hair an unnatural color?,0 + lolss mhe tew,0 + how to survive in this crazy khaos of a world i live in.,0 + why doesnt Tarzan have a beard?,0 + If a parsley farmer is sued do they garnish his wages?,0 + Will this weekend be a good one?,0 + Softball. Alltime loved sport. It was my haven to this world. Behind the plate I was a superstar and nothing could go wrong. :]r I miss it mostly.,0 + Hmmm..prolly timmy and to come see you! :] ahaha,0 + bullllllllll. ( : ahah.,0 + its okay i honestly still dont understand why you got so angry but sometimes you get mad worse then girls do. just saying not trying to sound mean. but you do.,0 + dancing around singing seeing everything that i wanted and giving as much to everyone and spreading as much happiness around to anyone and all with as much as i could. i would give everything away and do sweet nothings for random people to make their day a little better. :),0 + can u name an animal that is orange?,0 + Wait my phone? -dakota,0 + What are you planning on buying with your first check? What did you buy with your first check?,0 + How tall are you?,0 + If you were given a brand new yacht what would you name it?,0 + the queens lol why would i say that oh well haha - weird :/,0 + do you smoke or drink,0 + Do you like candy necklaces?,0 + not really,0 + Nope not that im aware of,0 + lmfao seriously...Well idc Alot of femalez got a crush on mi,0 + hey hey this is from skin and bones by romance on a rocket ship. i love that song,0 + Who&;s the best ninja you know,0 + sharing my most intimate thoughts with another being my boyfriend. i used to hate telling anyone anything. but i dont now.,0 + not really,0 + What&;s your motto?,0 + Be my pen pal?? :),0 + What was your last awkward moment?,0 + Not really why don't we just have sex? :D hahahaha,0 + What&;s your favorite food?,0 + its only life. katie vougel,0 + Fkkin Bicthes Needa Get A Life Hatinqq Because You Got Boobies And They Dont JEALOUS HOES! (: Your Amazin Sister !(: I Love Yopu <3 FKK HATERS :DD,0 + lame,0 + What are your thoughts on earwax?,0 + hello i would just like to tell you that i think your soo perfect and adorable a LIAR and totally kissable&;&;and im pretty into you<3 do i have a chance? [;,0 + ha yeah i know right?,0 + hahah yeah yeah :),0 + Did you make fun of people in school?,0 + Hahaha!!! Ohh cool wait are yuh thee april on twitter?! april2? haha yay! We beasts yo! haa,0 + the creepy guy that crawls in little girls windows and does bad things to them in the night.,0 + YES. Because I want to go to the moon. I want to know if its made of cheese :),0 + What do you tell yourself when times get hard?,0 + Proton definantly. Positive polly yes i am :],0 + What&;s one food you&;ll never eat again?,0 + Ever done something you&;re embaresed about ??,0 + never been on a plane :(,0 + Can crop circles be square?,0 + <3 i love you!!!!!!!!!!!! LDS,0 + A piece of grass?,0 + outside. smile r inside. personality,0 + Ehh? I don't remember! ;0 haaaha but I love Bob Marley and all that shit lolz so prollyy(: but your name doesn't ring a bell! D: fucking amnesia :/,0 + Do you like to travel by airplane?,0 + Do you like the smell of cigarettes?,0 + Do you give it up easy? As in sex wise :| Or do you play hard to get it?,0 + What did you think about before bed last night?,0 + lots and lots,0 + Not at all,0 + Strawberry-Banana Smoothies from Jack in the Box ;D Yah dig?,0 + describe yourself in 3 words.,0 + duh bestiee lol !!!,0 + what time is it where you are?,0 + I think Xentury is thinking of a prank to pull on me what shall I do?,0 + i used to go a lot. but now i dont go so much. waiting for a really good new movie to come out!,0 + Spam me? (:,0 + What is the last thing you watched on TV?,0 + didnt get into star wars much actually,0 + sister 18r borthers 11 8 8 months :],0 + nope,0 + Pool,0 + what would the worse prank EVER be?,0 + Are you a tease? I am haha :),0 + justin bieber is my driving teacher oohh yess!..bahah we gonna be doing sumthing else instead of him teaching me how to drive(; lmao,0 + Oh ammmmm I? Lol Who is this?(;,0 + He says he did :] haha,0 + Noopee ;not at all (:,0 + what do you mean? what drama did you cause?,0 + Flowers from my bf yesterday :),0 + the 2nd one!!!,0 + Hmmmm dont. i think reality tv should be banned haha,0 + whats your favourite fruit?,0 + Kinda...but idk if she's still feelin it...,0 + What would you do if you found $100 at a movie theater?,0 + http://formspringme.zendesk.com/home complain about FS and the limitations they&;re making here you have to make a whole new separate account to do it.,0 + they made me shit ;0,0 + so do you believe that "What Goes Around ... Comes Back Around"?,0 + hmm..illegal huh? r Yes. Ive gotten 2 dui's in the same year before I learned its not a good idea to drink and drive. I've smoked green. And shroomies are my favorite. though I do not do drugs anymore. r Dont judge meee :( haha,0 + GOD,0 + someone i could laugh with,0 + So baby don&;t worryr You are my onlyr You won&;t be lonelyr Even if the sky is falling downr You&;ll be my onlyr No need to worryr Baby are you down? r Down downr Baby are you down? r Down downr Even if the sky is falling down,0 + well who is this? even if i dont feel the same ill still be nicce :),0 + where you are to meet you because i think we would get along just peachy,0 + and last q for the moment..........is duck tape made out of ducks?,0 + Here? 7:51 am :],0 + Eyes Smile Personality And athletic(:,0 + Do you hate being alone?,0 + Do you watch Family Guy regularly?,0 + What&;s your funny story?,0 + Have you been in a wreck?,0 + nope,0 + Done spamming for now. Leave me things? Hint hint wink wink say no more? LMAO! <3,0 + Wet or Dry?,0 + white. i hate it. we have no choice. were in an apartment,0 + kan u wam? Because i love lil wayne and da wam i be doin it even do im a girl,0 + Which Power Ranger is the best?,0 + favorite food?,0 + GASP. He told me): I could cry.,0 + heyy besttfriend !(:,0 + favorite color?,0 + How often do you lose your voice?,0 + ur having a party and notice a group of people you didnt invite how do you go about getting them to leave?,0 + Yuh already know who i am. Yuh adedd me on myspace ?,0 + ily!,0 + personality 9r physic 8r looks 8,0 + Do you act differently around your friends just to fit in?,0 + i get lost in your beautiful eyes,0 + What hair color do they put on the driver's licenses of bald men?,0 + Yes. Cause it would totally be awwesome as long as they didn't do experiments and stuff on me hahaha,0 + About schmidt. r The only movie I couldnt get through to save my life. And I love Jack Nicholson. But this movie was horrible.,0 + If one song were to describe your life what song would it be?,0 + is jon the person u like?,0 + LOVE IT,0 + not grandparents..,0 + Who&;s the most beautiful person you know?,0 + Do you like Kool-Aid?,0 + Heheheh Hey MIKEY !,0 + my bad,0 + 3 physical features you get complimented on a lot?,0 + Virginia,0 +2007,0 + sometimes :) i like her opinion.,0 + What color is your toothbrush?,0 + i speak english frensh and a little arabic cuz i&;ve been to egypt a lotta times :D,0 + prada or jansport?,0 + umm i well there is alot of bad things that have happened but i like to look at them as good things that made me who i am so there isnt a worst.,0 + i have never dyed my hair,0 + How would you describe yourself in 3 words?,0 + Oh really(; ? And i cnt let alix see it i dont want himto knoww cause of something i cnt say or he ll know,0 + im bored,0 + What was your favorite birthday gift?,0 + oh gosh!! i love jd. hmmm.. i really love pirates of the carribean for shiz. but i really liked secret window as well.,0 + hi,0 + i dont think so?,0 + Apriiiiiiiiiiiill!!! I miss uuuu! It&;s Emma btw haha,0 + Im not a loserrr xD and damn people are nasty they should learn how to speak properly to a beautiful young lady such as yourself <3,0 + Help as many people as I can that I either do or don't know. As many. Spend all my money give as much as I can make a difference. Give all that I can...in one half hour.,0 + Who would you most like to be stuck in an elevator with? Least like?,0 + I think ur not pretty. Sorry.,0 + hmm ...my daddy :),0 + it has to be the 3oh!3 and cobra starship with guests travie mccoy and i fight dragons concert :D Gabe Saporta is my new love! :D,0 + definitely true! :D i&;ve been learnin it for 5 years cuz i&;ve frensh origins haha ;),0 + ummm... what? u didnt know jose was my first kiss?,0 + Not currently.,0 + Hey,0 + When is the last time you cried?,0 +4,0 + knowing when your time to die is,0 + Blahhhh,0 + do you also like diary of a wimpy kid??,0 + Are you vegetarian?,0 + so where are you located and what is it like there? :),0 + not long,0 + What is your favorite outfit yu own ?,0 + do you like your name?,0 + haha i love how in your bio you wrote "Cyberbullying=jail" <3,0 + how long have you been together?,0 + nothing. i wish i was smelling food hahahaha,0 + for you is it f.o.e or "family over everything"?,0 + haha thankz,0 + Too cutee(: i lovee youu too hunny<3 anywhoo who might this be?,0 + Have you ever seen or enjoyed watching the O.C.?,0 + do you like the sound of the wind chimes?,0 + when i wanna be haha,0 + HAHAHA NOPE! ...,0 + Are you so in love with yourself?,0 + welll forr righhtt noww no onee iss_):,0 + Confusing.,0 + me?,0 + awhhhh thank you sooo much!!! idk why people keep saying that i think im so pretty haha because i think im nothing special and then it brings me to the im fishing for compliments when im litterally not. idk who commented that but thanks all these people need to get a life and stay out of mine because they obliously do not no me.,0 + If you had access to a time machine where and when would be the first place you travel to?,0 + :|,0 + Why is it when something doesn&;t work we have this urge to physically abuse it?,0 + what dont you like about yourself? (and everyone hates something about themselves),0 + what if you won&;t be able to bare a child? will you get a surrogate mother or adopt a child? why?,0 + Datz mi kuzo !!! [[ nd Im Not lien ]],0 + ability to fly or breath under water?,0 + ohaii :),0 + Why do hot dogs come in packs of ten while hot dog buns only come in packs of 8?,0 + Did you believe in the tooth fairy?,0 + Would a fly without wings be called a walk?,0 + GOD.,0 + nope igO TO lakez,0 + What was the last thing you ate?,0 + Egypt :),0 +3,0 + What would you want to be written on your tombstone?,0 + hahaha thanks a ton. I laughed when I read it :],0 + So i heard that alot people were complaining on too much spam so now we are allowed 100 only? wow?,0 + Do you think people end up warped if they are not loved as a child?,0 + Haha! Maybe 2days? lol idk,0 + Do the minutes on the movie boxes include the previews credits and special features or just the movie itself?,0 + are u guus foing out yet!???,0 + straight sorry :),0 + U.S.A!!!;] Known as Mars!!<3,0 + What is stressing you out most right now?,0 + =],0 + really? You don't want to know anything about me.,0 + the high dive.,0 + Skyla misses y,0 + u so made up tht guy jaybee,0 + Hello there :],0 + fuckk wee havee to muchh hatersss.!!<33 butt i lahh yhuu lexiii(: myy awesomestt step sisterr<3,0 + I think there are always reasons. of course ;],0 + probably,0 + I don't . but when i was little sweet and sour sauce from mickey d's :] hahahha,0 + um um um um um um um bank it and then go shopping with a keycard thingo coz then if i got robbed it wouldnt matter as much hahahahahaha,0 + yea,0 + being able to hide my feelings.,0 + no. i dont but thats cuz im insecure about myself,0 + Umm... Barack Obama 4 another 4 years! iLovehim!,0 + I accidentally just deleted the thing you just wrote to me D: SEND IT AGIIIINNNN,0 + my fridge,0 + whats ur myspace page??,0 + best high school memory?,0 + i love you alexiss<333 no homoo niggyyy(: aha,0 + you like painting?,0 + When you say you don&;t care do you mean it?,0 + ily2 boo!,0 + What did you eat for breakfast today?,0 + Do you give out second chances too easily?,0 + BESTiE iiLOVE YUUUAAA!! akekeke:D,0 + What was your worst travel experience?,0 + ever been to the derby?,0 + like how many photos do you have on fb?,0 + i have 1000+questions in my inbox yesterday.but now only 100!!!i didnt answer any questions from yesterday.what happened to remaining questions?did this happen to you? :&;(,0 + idk haha,0 + How do you groom your nails?,0 +3,0 + Yes. im with them now,0 + Suave. Its cheap and gets the job done. haha,0 + what kind of hamburger do you like,0 + Are you carrying any grudges?,0 + Do you know what boricua/moricua/morena mean?:,0 + If you could wake up as anyone tomorrow who would it be?,0 + yea,0 + have you ever been an extra in a movie or commercial? have you ever done any time of modeling or print work?,0 + How do youu plan on making my birthday amazing?:D<3,0 + If you could ask Barack Obama one question what would it be?,0 + Would you help a person who just tried to kill you?,0 + chocolate :P,0 + its stupid.,0 + do you want to see your real mom?,0 + do you have classes? what&;s your favorite subject?,0 + Do you have a favorite Beatles song?,0 + yea -__-,0 + no?,0 + Seriously what did parents do with those teeth we lost?,0 + your cute(;,0 + iLY LEXiS_(:,0 + pictures!,0 + What&;s your favv waterpark to go to? :],0 + What&;s something that no one else knows about you?,0 + What is the one thing in the world that makes you teary eyed?:,0 + What is your best friend&;s Mom&;s name?,0 + Hmm thats a tough one. I would hate it if I couldnt' bare my own child. that would be really hard. and i would probably pray my guts out before going the other route but if its enivetable then I guess I would adopt. Surrogate mothers are too hard to trust not them wanting the child in the end..that would be really hard.,0 + Being able to control other peoples thoughts. hahahha,0 + In scale from 1-5 how afraid of dark are you?,0 + Do you dance in the shower?,0 + when my little brother was diagnosed with cancer.,0 + its the day of exceptions where we can look like idiots also :p,0 + You are on a flight from Honolulu to Chicago non-stop. There is a fire in the back of the plane. You get enough time to make ONE phone call. Who would you call?,0 + haha nah you know me:) just guess...,0 + What is the nicest thing you&;ve ever done and the worst thing you&;ve ever done,0 + Which do you use more your computer or your mobile phone,0 + yeppp,0 + What music are you listening to today?,0 + Ever dropped a cell phone?,0 + I used to have a ton more than i do now. Why aren't we friends on fb yet??? hahaha,0 + Yes. All the time.,0 + ummmm jack screw you not my fault people get mad about a stupid state. and also its a inside joke so every one is lame.,0 + Do glow-in-the-dark objects stop glowing when somebody turns the lights on?,0 + How'd you know that im in gym shorts currently?,0 + What&;s your thoughts on the Columbine tragedy? Why do you think it happened?,0 + Kann I get witt you,0 + next period theres another note and this one says will you be my "Girlfriend"?,0 + Stars :],0 + Glee who? ha,0 + magenta and white :],0 + 1. I am totally able to telepathically read others minds.r 2. Im a fairy in this world here to spread my sparkles in someone elses life.r 3. I can drink an entire gallon of OJ in one drink. r 4. I can make a mess like nobodys business.r 5. Sometimes I eat in my dreams and am so full I don't have to eat for days. r 6. I can change the weather with my emotion alone. :],0 + when is ur birthday?,0 + What&;s the best place near you to get a drink?,0 + Yeshhh,0 + Whats with all these random ass questions ?,0 + Do you know anyone who was adopted as a child?,0 + let it find you. it will :],0 + Yeah. why?,0 + Keeping up with the Kardashians! or Kendra! My FAV shows atm!:D,0 + April. my sisterr Timothy my boyfriendr Dad. r r My very best would probably be........r April. She knows me best. Always. and how to handle me.,0 + So tell me if you came up on a dead corpse...what would you do?,0 + hahahaha good one. Thanks for all the questions seriously. But i still have like 398 questions that im eventually gettin too!! Thanks to you. haha,0 + Its better for me to get too little. I can get more done! haha but its healthier to sleep more.,0 + how many boyfriends have you had? :),0 + the second one. i can never concentrate. ever. haha,0 + worst place to eat at?,0 + look inside your bag/purse.. name three things you see,0 + are you the ideal person that you want to be? if not what would you do to about it?,0 + its cool how you swear when your only 13 :),0 + whos that lady in the b,0 + Whatu2019s your favorite shoe?,0 + Thank you lady :],0 + yup probably,0 + im a girl:),0 + Definantly not. Im a thrill seeker.,0 + What body sprays are better Bath & body&;s or Victorias secrets ones?,0 + Who do you think it is?,0 + What was your first love like?,0 + lol no,0 + If you won a million dollars what would you do with it?,0 + If you could become any fictional character who would you be?,0 + I dont think we will ever know ALL of what is truly hidden underneath the glaciers and ice caps of the sea but i think there may be creatures beyond our belief. Like an iccey polar dragon :) haha jk,0 + What kind of monster did you use to be afraid of?,0 + Do you do what needs to be done regardless of the consequences,0 + M@ pu$$zzy +!qh+3r d3n +!q3r w00d$ $vv3@+3r. ! knoww how +@ h@v3 @ q00d +!m3 !n d@ b3d. ! d0 k3q@l 3xc3rc!$3$ +@ +!qh+3n !+,0 + Who&;s the most overrated actor?,0 + No. I tend to feel a self-importance but it's certianly not fake. I don't believe so :],0 + lol yupz,0 + spiit yo gamme niqqa aha,0 + If London Bridge is standing why is there a song about it falling down?,0 + someday,0 + Colgate i think. its the minty kind :P,0 + Does it bother you when strangers try to tell you what to do?,0 + Which is more appealing to you? Sun moon or stars?,0 + are you better today than you are yesterday?,0 + Nahh,0 + In scale from 1-5 how afraid of dark are you?,0 + If you were a candy what candy would you be?,0 + HEY. ^_^,0 + I&;m in love with you,0 + OKay. Hope everything goes okay! :),0 + chicken salad :],0 + Do you own a bathrobe?,0 + N3qRO WUZZ YA NUMBER,0 + wutchu mean u tellin me?r,0 + Have you ever had a dream (good/bad) that actually came true?,0 + i can be haha,0 + Both? LOL! jk,0 + hey everyone im gettin alot of complaints please inbox me and let me know if u dont wanna be on my spam list,0 + idk she a jit.. ya feel mi n she anit mi type,0 + Nahhhh its cute,0 + Who do you like? =),0 + Have you ever eaten a crayon?,0 + yes maybe. perhaps..depends,0 + Are you bi?,0 + How would you talk someone out of suicide?,0 + nope! :D,0 + yea :D,0 + okie dokie :P,0 + hmmmm then to of never of moved or to be happy.,0 + How much money did you spend yesterday?,0 + Awhh i love ur earrings!,0 + tea ach gee means that i spelled out my initials to be more creative. haha t h g. tosha haejin goodin. tea ach gee. and no i dont know what emahsnouoy means what is it?,0 + I have no idea haha maybe fly so then like it doesnt matter what happens to the world i'd be safe coz i could fly away right?,0 + I dont much like bitch either.,0 + What&;s the most recent movie you&;ve seen in theaters?,0 + ummm hes alright haha but not that much.,0 + so who do yhu think yhur inlovee wit ??,0 + what would you do if you were wading through a river and all of a sudden a fish jumped out of the water and puked on your shoulder and then called you a fucking bitch?,0 + If you could choose to live on a different planet which one would you choose?,0 + not always. but i don't say idc very much. haha,0 + Yep so far :]r He was diagnosed when he was 2 and he's 8 now. So usually if the cancer is going to reoccur it does between 4-6 but we don't want to get cocky. The oldest person with his type of cancer has only lived to be 22. its kind of scary.. but thanks for asking! :] he's doing great now.,0 + Do you think the last person you kissed cares for you?,0 + i love you to :)r thanks people are lameee,0 + can you cook?,0 + NO.,0 + just stuff. i can handle it imma big girl dont tripp.,0 + I had a wedding to go to in columbus lastnight and today im just chillin with my baby all day in our new apartment :],0 + are u a virgin? how old are you?,0 + Name your 3 closest friends. Which one is your very best friend?,0 + Which is better yogurt or pudding? What&;s your favorite flavor?,0 + If nobody buys a ticket to a movie do they still show it?,0 + If you don&;t know the words to a song do you improvise?,0 + Urgh . . this is difficult to answer haha! Umm prob. fixing computers! ha yes i said it im like a WIZ at fixin comps that MYSELF and MOM destroy! AHAHA!,0 + M33+ m3 @+ d@ m@ll 0n m0nd@y @nd !ll q!v3 yuh d@ b3$+ b3(ky 3v@,0 + Beach or Waterpark?,0 + seriously take a wild guess! then message me on myspace or comment me or text me. we need to talkk.,0 + If anyone hurts Tabi i will come to where ever you are and hurt you physically :D I love you Tabbbbbi. (:,0 + so what do you think will last "Until the End of Time"?,0 + Shut up your prettier! <33,0 + pocahontas. :] Im the one that doesn't do whats in the book and travels outside of the comforts to explore and see the new land. A leader and wanderer..faith in finding your own way.,0 + Really?!?! Thanks?! haha,0 + MySelf!(:,0 + The most major flaw in our Justice system are the corrupt people behind the surface that keeps the system running for the wrong reasons. Using the government as a face for greed selfishness caring less for the good for humanity and getting ahead before another country. r Sadly we can't make them more stable. There will always be corrupt in the system-therefore never allowing the good for human kind to prosper in the end. Never. Just my opinion though what do I know.,0 + no it shows safety,0 + Do you like hot or cold showers?,0 + a thong,0 + If you could be on one TV show which one would it be?,0 + nope,0 + nooo,0 + Uhmm like 6th grade on a corner of a street. I was on my corner :O Lol jk and it was randi..,0 + What is boring to you?,0 + what ethinicity are you? sorry you just looked so tan :),0 + yes,0 + fort polk louisiana. in the united states. it was a military base.,0 + Heyyy askk mee stuuuff!(:,0 + Yes. Love the creativity.,0 + hey you.. who thought you about "musta" ? =),0 + Jac...bahahaha,0 + What is your favorite flavor of water?,0 + What was your childhood nickname?,0 + Negative. I think we as humans all tend to sometimes but its all in unintentional purpose. So I try not too :),0 + accomplishment,0 + live with both Parents ??,0 + hahaha love you to :Dr remeber i got a camo shovel ;DDDr your the best.,0 + Are you an introvert or an extrovert?,0 + What do you do for headaches?,0 + didnt have one,0 + Is that a problem?,0 + t tosh and thats it i think lol miss attitude.,0 + davey jones. haha,0 + i heart<3 youu.,0 + What do you wish you were doing instead of answering this question? :),0 + kuz dea claimed iHit sum female wid a trash can,0 + did you get all my questions? cause I&;ve been flooding you for the past few days..,0 + Shore I'd be happy too!!!! :),0 + What is it you like best about your mateu2019s personality. What do you like the least?,0 + (:r cools iLike that pikk lols,0 + Yea y?,0 + Baby im down(;,0 + haha okayyy the only one about six flags was with me and nicky name another :),0 + what&;s heaven for you?,0 + Nahh I'd do it myself lol,0 + I care wayy to much.,0 + Ohhh uhhh?? No to be honest.,0 + Your beautiful<3 don&;t listen to others(: they don&;t have a beautiful thing called LOVE<3 while you do cause we are married :p I love you<3,0 + oh yeahhh we already talked about this. :),0 + Do you like spiders?,0 + Who do you lyk?,0 + How many floors does your home have?,0 + So who diz,0 + are you loud or quite?,0 + Last question for right now. You have the choice to save the life of the person who has hurt you the most do you do it? If you don&;t no one will know.,0 + Not at all. I like my space that's for sure. And I hate clingy touchy blahhh ha,0 + Who do u like,0 + Do you/have you ever watched Desperate Housewives?,0 + Have you ever snooped in somebody else&;s medicine cabinet?,0 + i killed a man.,0 + no.,0 + That person VV isn&;t daydrien is it?!?!?,0 + have to,0 + No? Is it possible. ha,0 + Do you believe in the quote " I&;ll sleep when im dead&;&;?,0 + I am your most favouritest twitter person =},0 + nope,0 + 3 things that your mom doesn&;t know about you,0 + i do want to.. :) but who is this hahahahah,0 + ohkay,0 + Would you rather read a magazine or a book?r,0 + :?,0 + greed.,0 + If you don't mind me asking how would you kill me?,0 + Have you ever seen a cloud shaped like a thing? What was it? lol,0 + Rate yurself?,0 + ah me by griffen house =D,0 + Yes i think so ;),0 + have you ever had a "Summer Love"?,0 + can you take jokes?,0 + What would you do if the cops busted in your door?,0 + Dropped it in the sink when I was doing dishes. never talk on your phone and do dishes. Your doomed as soon as you start it..,0 + idk honestly.,0 + Anything thai and spicy.r mexican.r Veggies :]r Grapes strawberries Fruit. har And Rice. r I love food btw.,0 + Does eating carrots really help you to see in the dark?,0 + What kind of music can you just not stand to listen to?,0 + cute,0 + I dont hardly give IDK answers to your questions much so I dont believe your referring to me. But I feel like you don't read my answers anyway sooo idc if you spam me so much..,0 + If there was an amendment that you could flawlessly enforce which would it be..why?,0 + Have you ever spent over an hour thinking about nothing but your crush?,0 + I am done spamming for now. I am going to get a shower and relax for a bit I will spam more tonight! <3 yas!,0 + Do you consider yourself a good dancer?,0 + Laughhh loud and zip it of course :] hahaha,0 + not too much. we're okay! :) hahaha How are you? I missed talking to you actually.,0 + Haha well your my bestfriend/babieeee nothing else (:,0 + green pepper cheese onion bacon-crunchy and cheese :D,0 + same thing again man nor woman it makes no difference. i would see i suppose,0 + Beatles :],0 + nop.e,0 + What is your shoe size?,0 + I really wanna take you downn ;] ( It&;s a song! ) lmfaoo .,0 + Nah you wish so,0 + i like to be nakeed,0 + What is the weirdest thing you have overheard lately?,0 + no again.,0 + Why do you think people get irrate over little things?,0 + God.,0 + with family :),0 + Kindness through ALL humanity.,0 + HAHAH GUESS WHO!? <3,0 + mhm yew do gosh,0 + wen eva ya ready,0 + who&;s the prettiest person you know?,0 + when was the last time you cried so hard?,0 + musta?you said you were sick last week.. you okay now?,0 + Do you conform or make your own path?,0 + Have you ever had detention?,0 + Why is sex so talked about?,0 + Twitter.,0 +14,0 + Ok to answer your question honestly I do want to smell your feet but I swear the truth is that I did *not* ask you those questions previously. That honestly was someone else.,0 + I loveeeeeeeee u Alexisssssssss! your teew fukinn beautiful :),0 + ill play ya saturday,0 + im not sure actually. I guess how ever many I am blessed with :]r r but like 3-6 would be awesome. i like big families!,0 + neck,0 + Juss krista as usual..,0 + Name 3 thoughts at this exact moment?,0 + yes i think so. if it need to be necessary.,0 + Have you ever had a stalker?,0 + She is whatever the Hell she wants to be and not one bit of that is anyone named Cheyenne!,0 + some of them haha,0 + Hey,0 + did you have fun this weekend??? :),0 + How many times a month do you go to the movies?,0 + Who do you think should be the next president of the United States?,0 + Baha You guys fights online a hilarious!,0 + If you could have an endless supply of any food what would you get?,0 + CAN YUH WAM?,0 + what&;s the best movie you have ever seen?,0 + have you ever gotten stitches?,0 + nope,0 + whats candyman? hahha,0 + Do you fall asleep during the day and cannot sleep at night?,0 + can you travel around the world in 80 days,0 + Luckily im not in highschool anymore. No more next periods for me haha,0 + Do you trust easily?,0 + Are you quick to take medicine or more likely to wait it out?,0 + PCD. All the way! :),0 + When was the last time you received flowers?,0 + If I looked on the bed next to you what would I find?,0 + hahahaahha i know myspace.com/tabiisaninja,0 + hehe i know people are stupid...and i knew it was you ;))),0 + yes. many people. i work with alot of the mentally handicapped,0 + your moms house,0 + Jumprope,0 + How often do you really "go out"?,0 + yes but i dont much anymore..... things for others is most fun!,0 + i love your hair.,0 + what your fave colour?,0 + In 1386 a pig in France was executed by public hanging for the murder of a child. How did the pig kill the child?,0 + why don&;t u answer ur phone?,0 + What type of weather do you enjoy the the most?,0 + Have you ever had a poem or a song written about you? if so what did it say? what was the title?,0 + are you a trusting person?,0 + Do you really know all the words to your national anthem?,0 + Thank you miss pretty yourself :],0 + What&;s the oldest piece of clothing you still own and wear?,0 + yes I love it. its a funny hobbie and way to express yourself :),0 + K-PAX. Watch it :),0 + Would you be willing to commit perjury in court for a close friend? What if your lie would save his life?,0 + Girls; Have you ever had an accident while on the rag? Boys; Have you ever peed outside the toilet? (Yuck),0 + i like to talk yes.,0 + Who&;s the most overrated athlete?,0 + How would you handle if your partner was pressuring you into sex when your not ready?,0 + What time do you usually go to bed?,0 + You can date/marry Tabitha! :D,0 + Who is your favorite Star Wars character?,0 + christofer drew :) hahahar no doubt.,0 + uhh wtf who keeps asking things about who im texting and stuffhahhahahaha.r mclaine. thats who im texting.,0 + the darkest moment of my life was...,0 + not really,0 + I would love to follow him :]r Absolutely!!!!!,0 + Xentury has been a good sport. He took the nail polish off. Shayla is going to paint them again. Are you a good sport?,0 + What amazes you the most?,0 + no fucking clue,0 + Were you a Michael Jackson fan?,0 + your welcome :) sureee,0 + never,0 + Were you ever a boy/girl scout?,0 + excuse to stand out about something,0 + What song always makes you happy when you hear it?,0 + not that i can remember :D,0 + have yu ever wondered what people would be like without yu ?,0 + everything,0 + idk . good question.,0 + i love you you are gorgous!,0 + its okay unless it effects free will. but good morals and standards aren't bad to push on a child with no form or structure that needs it.,0 + I have no clue. What makes anyone do the mean things they do? we're all human. Humans are confusing.,0 + Are you saying you would fight for lindsey because a lot of people would. Your not the first "challenge.",0 + nope not really do you?,0 + Woot woot got a mytouch today lol just thought id share that with yall,0 + mmm i dont really have a favorite. my gpa used to call me buster. one of my best friends calls me mel. haha those 2 are the only nicknames for me :D unless you want to include bitch whore and slut lol,0 + Do you like hugging people when you meet them or are you uncomfortable doing this?,0 + How important does a person have to be before they are considered assassinated instead of just murdered?,0 + Kitty face!!!!,0 + do you always trust your instinct?,0 + Why thank you<3 I'd like to be your stud ;D,0 + Uhmmm depends on the mood im in I guess haha,0 + purple : ),0 + Have you ever been to Six Flags?,0 + ohkay iWill,0 + Bra ;),0 + Can you drive a motorcycle?,0 + I would say what freakin mexican is trying to pick me up lol i would have no idea who it is..and i would be thinking what a silly person. and throw it away.,0 + Are u a virgin?,0 + idk,0 + Who is your idol?,0 + None. i dont have pockets on right now lol,0 + yeahhh me to except i guess if they were i dont think they would be under my name or whatever so idk how we would find them,0 + spam,0 + yes i love cheese.,0 + How old were you when you learned to tie your shoes?,0 + If there was a hour extra everyday what would you do in that time?,0 + Are you listening to any music right now? If so what is it?,0 + Thank you :),0 + Karma YES. Destiny NO.,0 + What is happening around you?,0 + same here :,0 + yes. Ive had two years. Im on a waiting list for clinicals..which is americas way of being stupid to the people who are trying to get ahead in life..,0 + YESSSSSS. i love to dance :],0 + SLEEP LATE!!Duh!,0 + Chocolate! Bahah!,0 + mhm,0 + .,0 + Idk...i personally think makeup is unnecessary because it merely hides natural beauty,0 + Have you ever dated someone out of your race?,0 + What was the last thing you made with your own hands?,0 + Jupiter gets its name from where?,0 + My 17th. My family went to Florida Disney World for a week and on the way back they took me to the beach its what I wanted. I was sick the last 3 days and the entire way home. It was great.,0 + i havent ate fries in a long time!,0 + All the time. haha Unless we're going out. Its uhhh more comfy!,0 + awhhh :) good,0 + Awh yourr so sweet(: Who are youu?,0 + depends if there are little kids about i dont trust lol,0 + When was the last time you went to the beach? Where did you go?,0 + umm my 18th? went to dland and bought things that 18+ can buy haha,0 + naw now yew kno,0 + maybe. it would be understandable,0 + Are your dreams mostly sweet or bad?,0 + Txt me what?? Lol,0 + i brokke up withh him .,0 + honesty respect for your partner,0 + i wish you were bi or lezbian your pretty :),0 + Nike or Adidas?,0 + yes. not sure really. Maybe the earth and all the planets are just tiny specs of dirt in a giants pocket somewhere..,0 + dont you hate scarlett though?,0 + Dont delete your account!,0 + my computer does that too! "Invalid request" haha thanks for all the questions :],0 + Do you believe that the guy should pay on the first date?,0 + What is Satan's last name?,0 + Mmmh... My second grade teach Mrs. Caldwell <3,0 + hi,0 + hahaha who told you that?,0 + A cami and gym shorts :] haha,0 + ohh um this ones really hard lol well i like them all and i spose it was andy but its now bradie i guess haha i would choose them all if i had the choice lol =](i do like shaun to),0 + yeah :),0 + both cuz im an arm rest nazi :D,0 + probably not,0 + I can't complain chuz i dnt have or had one! hahaha soon though! real soon! ;,0 + kkkkkk,0 + God.,0 + Did/do you listen to your parents?,0 + If you can be in a fairytale.. what story would you choose to be in?why?,0 + :(,0 + Would you rather have to live one year as an elf or a mermaid?,0 + Why yuh only answered da one thng,0 + Why do you think people stalk other people?,0 + What is one item that you really should throw away but probably never will?,0 + is your brother okay now??,0 + Can you name one person who has the same first and last initials as you?,0 + o ok change the subject. well who u cause iam her cuzzin,0 + If you didn&;t have enough money to get the bus home what would you do?,0 + Yes veryy trustin person!!! May i help yuh:!,0 + every other wk or so,0 + NSYNC or Backstreet Boys?,0 + No I dont/ My bf does. and yes if i could or had the extra money too have one i would i'd like to take a gun class as well. just to shoot one. r Because you never know when you'll need to defend yourself. zombies are cruel. hahaa and there's a buncha crazies out there. ya just never know and being prepared isn't half bad anymore....,0 + Frances :),0 + lmfao shee a stalker dhat bihh saidd who aree yew,0 + te,0 + everywhere :( its awful. ha,0 + my mum,0 + Give half to a cancer hospital to help the cancer kids :/ And then juss save the rest and spend it.,0 + my heart/,0 + what does the last text message on your phone say?,0 + ...no.,0 + its not a big deal,0 + not showing up in pictures,0 + wonder why im in it? and whos it was,0 + What is the worst prank that has been pulled on you?,0 + What did you do over the weekend?,0 + ive supported a friend that needed comfort.,0 + cooling it !!,0 + If you were stranded on a desert island which one person would you bring with you?,0 + Ever gave a really long apology?,0 + okay so here&;s another Filipino word "mabuti" which means I&;m okay :) haha my cousin from CA is here in the Philippines now and I kinda have a hangover from teaching him lol,0 + please lol,0 + I did. but now im overwelmed with questions hahah thanks to you! :],0 + What do you think about formspring.me so far?,0 + Yes. because you think with your heart not your brain and thats the most dangerous thing you can do. its not using your brain at all?!! Sometimes i wish i had a pair of im in love see past the bullcrap glasses to put on to see a little clearer with days are a little dreary..,0 + because you like him,0 + How do you get your questions?,0 + I love you like I love to sing. I love you like I love to swim at night. I love you like I love my kitties. I love you like how I love to day dream about you. Someday you&;ll realize I do love you for now bffls I guess,0 + Idk where anything gets its name from. But i would like to name something sometime! :(,0 + If I could __________ then I would.,0 + Oh wow your tallllll!! And im like 5&;6 and i have a monroe piercing,0 + Yes but I hate that so much. I usually try to make up by saying something funny :),0 + just kidding :] ahha,0 + why are you not talking to anyone,0 + What last made you laugh?cry?,0 + nationality...tehehehe. Im half korean.,0 + Hot or Cold?,0 + well i think i no who this is.,0 + Hmm same thing. i would see i guess though,0 + Nahh. I like being a female :],0 + That's right!! :D,0 + hmmmm.. prolly computer honestly,0 + If you won a $1 000 shopping spree for any store which store would you pick?,0 + hahaha!!! im the farthest from,0 + well what if i dont have a favorite? what am i supposed to say then? lol,0 + Wait. Are you Cheyenne? I sent a request to you? Wait why is your name Tabitha?? R u fake????,0 + never,0 + If you could be a plant what would you choose to be?,0 + Are you a people person?,0 + um probs short stack though i dont no haha i listen to a whole lot of different bands.,0 + If love is blind why is lingerie so popular?,0 + i do have it hoe<3,0 + do you play an instrument ?,0 + Starbucks guy "It&;s ten o clock we are closing" My Mom "You&;re kicking us out",0 + what is your favorite video game?,0 + Yes. all the time :),0 + I lovee fruit.r But i would say strawberries. no watermelon. berries! blue rasp black..ughhh maybe melon. oh lovee apples and bananas. Hmmm..pineapple. Anything but the little bright red cherries. there imposter cherries. ha,0 + hey!(: im justin,0 + Oh wow! How do i know you? :),0 + well then why did you bring it up?,0 + Star girls....haha I WAS LITTLE they were pretty rad actually....u dont get many jumping comps at concerts any more.,0 + well w.e. its obvious he is a player so i think its funny u got played,0 + no. but i bet its cheesey,0 + what did you do last night?,0 + I would buy my mum a house and a car buy me a house and car buy my brothers a car and with the left over money i would go shopping and concerts (i dont no how much all this cost though lol),0 + have you every used a turn dial phone?,0 + yes,0 + Say your driving at night and you see a man on the side of the road screaming for help do you stop?,0 + favorite animal?,0 + If you had the chose to be a demon a vampire or a elf which would you be?,0 + no but i wanna go their,0 + Have you seen Titanic?,0 + Are you a touchy feely person?,0 + no lol my sister. but that's different,0 + None. Im happy without money. :],0 + Nahhhhh just when its like get a room suckin face all over the place touchy public kissing hah,0 + people.,0 + anytyme,0 + hahahahah yeah sorry :) he is my husband,0 + ever been high/drunk?,0 + ehh no i dont think so. I guess i would rather go up and see all the others that have already passed on and catch up with them. :) I look forward to that eventually :),0 + What&;s your second favorite color?,0 + iDnt be on da cumputa lyke dat,0 + If you could change one thing in the world what would it be?,0 + My Dad :),0 + k,0 + what&; your favorite blink 182 song?,0 + What YouTube video made you laugh recently?,0 + what if it was realllyy hott out?:D still hot brownies or ice cream:O,0 + What experience has changed your outlook on life?,0 + Yuppers! Nose and Cartilage piercings(;,0 + Hmm easter. its always within a week or so :),0 + sam,0 + Would you rather be filthy rich with no friends or dirt poor with tons of friends and a dog?,0 + Would you ever try to summon the undead?,0 + Describe yourself in a single sentence,0 + Chrisssy!!??? hahahahah Chantelle Alesha Kailee? Tori?? LMFAO iddkkkkk,0 + Heyy :D,0 + idk,0 + yeah except i'd be scare it'd eat my face off.,0 + haha i dont have a question just wanted to say hi(:,0 + so whats up?,0 + N!qq@ @r3 yuh @ v!rq!n ? ! D0n&;+ +h!nk yuh !z,0 + Did u watch bieber on oprah?,0 + Are you a sore loser?,0 + What do you think about men who hit women?,0 + yea all the time,0 + do you still believe to the race concept? like asian black and white are different type of races? or you prefer to use the term ethnic group?,0 + are bi??,0 + Not everyday. Usually when I wanna pretty or im going out for something special :),0 + What happened?,0 + Quit being mean to me and I will be happy!!!!!!!!!!!!!!!,0 + how many of you like twilight series?,0 + Which cartoon character do you resemble the most?,0 + What is the worst thing you have lived through?,0 + Yeaaah,0 + Yes <3 thanks for asking !,0 + Hello Beautiful-You've been NIBBLED ON! Today is NIBBLE DAY and baby you know you're sexy if you get nibbled! GO ahead & start NIBBLIN'! Send this to all your sexy friends (even me)! If you get 2 back you're ugly 3-4 ok 5-6 damn 7-8 WOW,0 + what your fave band?,0 + idk what is it?,0 + Why do people think that swaying their arm back and forth would change the direction of a bowling ball?,0 + If I care about the person lying to me..,0 + hard. seems like with everything. ughh ha,0 + Hahahah okayy! good! &;cause likeee; "he&;s in looove with audrey!" hahah jus&;sayin&;.(: Buttt yeah yeah yeah; allll because of youu. :),0 + enough for now. im still trying to catch up,0 + Vagabond.,0 + ehh idk?,0 + What annoying habits does your best friend have?,0 + i like questions please feel free to ask more.,0 + yea,0 + nope,0 + Currently. the 2010 camaro.r Its so beastttt :],0 + vvvvvvvummmmmmmmm,0 + write.,0 + we would go crazy! movies would suck haha,0 + Idk hoe get cha own cup of blackberry with a hint of lemon ice tea. Dayumm! hahah JK Brooke?,0 + Look down there....,0 + what&;s the best part of your day?,0 + Is life more meaningful if you live for someone [s.o.] or living a life to die for a cause for the better of humanity? Explain.,0 + Do you swear when youu2019re mad?,0 + You&;ve been kidnapped by aliens. What do they feed you?,0 + thats a lie.,0 + name the hottest girl that you have ever met,0 + Dang like 6 or 7 years ago. Its been a while..,0 + What do you think Victoriau2019s secret is?,0 + nope. probably not. haha,0 + Why do you think people give smart ass answers to questions?,0 + twice.,0 + If you won a million dollars what would you do with it?,0 + do you like nevershoutnever,0 + anythanqq,0 + Nope.,0 + lol who wrote this :/,0 + lol how ya kno????,0 + Ummm probably playing softball for 10 years(:,0 + Trick or the mind or trick of the eye?,0 + no im tabitha jai locascio. myspace.com/tabiisaninja face book- http://www.facebook.com/profile.php?id=1601024519 I HAVE NO CLUE WHO THIS CHEYENNE IS so please send a link so i can see for myself because i guess she might be using my pictures :) thankyou i would really apriciate it.,0 + well i had to put my two cents in [: haha,0 + the dryer eats them.,0 + Always wear your seat belt?,0 + your beautiful and it seems like all the rude comments you get is all from one person. dont listen to them everyone knows you are the sweetest girl ever and cold never be mean,0 + What turns you off?,0 + i wouldnt know,0 + Do I know you?,0 + Hey my name is April too! Haha. People named April are always cool. LOL.,0 + no. lame.,0 + NO NO!!!!!!!!!!!,0 + Has anyone told you a secret this week?,0 + How do you like to celebrate your birthday?,0 + as long as i fucking wanted to be :D,0 + I already answered that,0 + I was dancing in the kitchen lastnight while cooking grilled cheese for timmy and we were laughing about it cause i was doing the robot out of the blue :),0 + U r soooooooooooooooooooo pretty Alexis<3 y r u so nice???????,0 + Aha love you too<3,0 + no i dont put ppl in jars but if i want to dispose them nicely i would bury them if i dont i spose i could cut them up in little piec yer i will stop there its kinda gross haha,0 + If you could be born into history as any famous person who would it be and why?,0 + What in your opinion would be the hardest drug to quit?,0 + If you had to challenge someone to a duel of some kind what your weapon of choice be?,0 + Favorite male comedian?,0 + Do you take a lot of pictures?,0 + It's only life..by Kate Voelege,0 + yes for most,0 + I always wonder why those damn rapist that rape lito girls dont just fucken a pay damn prostitute && fuck them? Fuck it kills me to see lito girls dying like that :|,0 + Minnie mouse,0 + usually,0 + ahahahaha yer needd yaa phonee<3&; ahah "" and our parents were like owww yhu stratched me.!",0 + If you could attend any concert what would it be?,0 + call the police prolly,0 + hi!how are you?thanks for spamming,0 + first.,0 + Do you have any magazine subscriptions?,0 + Guys; why do you think girls pucker their lips in photos? Girls; why do you do this?,0 + hey (;,0 + Have you ever kissed someone on the beach?,0 + no.,0 + well wat if he asks u out would say yes or NO cause u like pryce :D,0 + What colour is your bedroom painted?,0 + idk dude. why do you call so much haha,0 + how many kids do you want to have in the future?,0 + hey who diz?,0 + are you dating "jbatmann",0 + yes of course!,0 + iLyke dat..Let mi meet yew,0 + who inspires you the most?,0 + I'd like that one explained to me too! i hate being restricted to sidewalks.,0 + are you the person you want to be?,0 + mmmmmm it was awhile ago like idk really. haha but he kept textin me offa dk phone likeeeee 3 weeks ago maybe buhh dont worry it was just friendly friend stuff haha :) i member how you guys ment ;D,0 + When was the last time your inbox was empty? Lol do you remember what an empty inbox likes,0 + No,0 + on a scale of 1-10 how would you rate yourself?,0 + timothy.,0 + Kindness to all or your exiled to the shark sea.,0 + Duck tape. It fixes everything.,0 + Who is the bestestt ? lol,0 + Shutter Island for both. paid at the theaters :],0 + What&;s the quickest you&;ve fell for someone?,0 + dude like i said your so lucky! no,0 + i need a job hahaha,0 + kum get it,0 + Did you do any school shopping yet?,0 + You have a prety name :),0 + That&;s all for tonight peeps. Remember to send me a message in my inbox if you don&;t want any further questions from me. :),0 + Laid around with timothy :) watched movies and made each other dinner.,0 + EGYPT! :),0 + no freaking way what???,0 + OH VISIT ME IF YOU TRAVEL THE WORLD KTHXBYE. xx,0 + im pretty happy too(: lmao i DONT like King at ALL ! hahaa; i love you too ? u2665,0 + I don't have one anymore i deleted it,0 + i&;m jealous of jaybee,0 + Last night you felt?,0 + i L o v e Y u h h ! ! ! ! (:,0 + Cool byee,0 + how often do you check on your formspring?,0 + TABI AND EVERYONE ELSE SHUT UP YOU&;RE BEAUTIFUL- sam,0 + If you could hear what someone is thinking for a day who would you choose?,0 + Save the dog and plea with my boss i was on the news for saving a drowning dogs life!! Too check it out and hope I don't lose my job. If I do...then there are plenty of jobs out there that need a working :) ha,0 + vampire :),0 + nahh,0 + Do you have a boyfriend?
,0 + boo tell ur lil groupiee dnt bee textinqq on myy formsprinqq bout yew.,0 + den dats different if she kute but not to skinny,0 + Who&;s small minded and snobby in texas and what made you so mad?,0 + member me? ;),0 + no im tabitha jai locascio. myspace.com/tabiisaninja face book- http://www.facebook.com/profile.php?id=1601024519 I HAVE NO CLUE WHO THIS CHEYENNE IS so please send a link so i can see for myself because i guess she might be using my pictures.,0 + Sometimes :],0 + If a stripper gets breast implants can she write it off on her taxes as a business expense?,0 + http://www.chatzy.com/498131478193 join me in a chatroom,0 + ummm theres alot of memories but none that i can think of at the moment,0 + mr. deeds. hilarious :),0 + don't have one,0 + Hmmm.. Perhaps how if we want to take over an entire country we can make sure we do so but when it comes to third world starving countries..well we can only send so much food.r Another would be how we control missles by satelite and split atoms to destroy anything we want but we cant stop this oil spill. Ohh no. Its out of our control.r && I guess the inhumane way of growing all our food supplies is something to overlook as well. Only being that the animals literally cant think move do anything ut produce giagantic chicken breasts and stand in their own poop their entire life till the stock yards. Sooo its way out of our hands for that as well. r All these things need to be asked to our 'Oh SO lets make a change' president because the way I see it theres no changes only what the government cares about is what is necessary. and that is wrong.,0 + && if anyone gets tired of my questions or just generally annoyed with being spammed please let me know. I am not here to bother anyone! Thank you!,0 + Haha Im not sure its just natural ;),0 + you should ask my sister that. shes obsessed with SNL.r sweetiepie18 <------------- i have no idea. i dont watch it.,0 + Who&;s the most famous person you&;ve met?,0 + a million :),0 + Have you ever been Ice Skating?,0 + hi,0 + If you had to give up one favorite food what would the most difficult?,0 + one person who have touched your heart the most,0 + well hi :),0 + Shrug it off. :] haha no time to deal with petty bullshiz.,0 + Lol thank you dinaaa(:,0 + nooooo.,0 + For sureeee :],0 + What has caused you the most physical pain?,0 + Where does the toetag go on a dead person if they don&;t have toes?,0 + hahaha dude you're a badass,0 + how&;s obama as a president?,0 + oh most definantly,0 + how so you spend your Christmas eve?,0 + Name 1 girl you find pretty.,0 + What? Who is this?,0 + San Fransisco<3,0 + what&;s the worst drink ever?,0 + Do you enjoy going shopping? If so what type of things do you enjoy buying?,0 + What&;s your biggest phobia?,0 + Do you like carrots?,0 + Weirdest pet you have ever had?,0 + nah im just joking,0 + Do you find the opposite sex confusing?,0 + Does your closest Starbucks have a driveu2013thru?,0 + leftttttt :),0 + no. havent you seen Bruce Almighty. Nobody knows what they really want...?,0 + if your going to ask a question like that don't you think if im going to be honest with you you should give me the respect of knowing who you are?,0 + violin i think for my bday from my booo,0 + When you packing your stuff to leave and go somewhere for awhile what is the first thing you make sure you have?,0 + &i love you(:,0 + shut up ur prettty!..ll,0 + hahahahahahahahahaha whyyyyyyyyyyyy?r maybe? he is cute.,0 + Yes. yes. and i have the idea of it. as long as i have the paper thatt tells me which numbered spark plug goes where..i could do it :),0 + what is one thing you can&;t live without?? :] its me right?,0 + nigggahh i la la la loveeyou(:,0 + yup sure did,0 + hahahaha jealous? WHY? haha hello!,0 + Whn we gonn b 2gether?,0 + oh okaythats good,0 + Lol haha how cute is tht? Juss keedingg(:,0 + what song best describes you?,0 + enough undies!! :),0 + doesnt everyone..,0 + its not my bedroom . but tan. blahhh,0 + no haha =],0 + What&;s the longest relationship you have had?,0 + haha ;)so.. have u ever been to france?,0 + If you could date any celebrity who would it be?,0 + i dont mind it because it gives me questions i guess,0 + Ballfuck she&;s real. Get over it. vv,0 + It&;s fine i think ima go though my eyes are getting heavy. But text me when you&;re off. If I don&;t reply im asleep.,0 + Would you ever save a prostitutes life?,0 + yea >_<,0 + If you won a million dollars what would you do with it?,0 + What color is your hair?,0 + heyyyyyy!!! how u doin!!!!!,0 + umm brian mcfaddern jokes umm umm umm i dont no to be honest so im going with santa reow lol =],0 + Did you have a good day ??,0 + you a sexxyy mommma =),0 + one weird fact about you,0 + mr. taylor 7th grade english,0 + mes they can be fun,0 + Hahaha ohhhhh hi :)),0 + Carefree fun laughing giggly silly girl that loved barbies and using her imagination and learning and acting like she was older and more mature than she ever was.. :) haha,0 + i have a whole bunch! :D but the 2 memories i remember currently that are the best are with kelly and ashley. kelly being a kickass weekend filled with fun in slo and ashley being the renaissance faire and the 3oh!3 and cobra starship we went to :D,0 + i never said i liked pryce.,0 + u ever play beer pong?,0 + How do rumors get started?,0 + why do we say "heads up" when we actually duck?,0 + the bs.,0 + ..be invisible and punch mean people in the back of the head...,0 + haha i like you to hahaha :),0 + The important 1 is Love bhut ive given people themselves! Like i let my friends have themselves instead of me! It helps to see who they are as a person! Very important! Viseversa.,0 + sureeee.,0 + ya damn rite,0 + hi do you like nachos?,0 + I would have to say currently..r my newest pair of brown skinny jeans and this polester teal crazy print off the shoulder blouse :] I feel super pretty in it!,0 + How come sheep don&;t shrink when it rains?,0 + Black or White?,0 + Have you ever locked yourself out of a car?,0 + U go to RMS?,0 + bien. which is good in spanish. hahaha musta?,0 + Baptist but im solo currently with the whole not going to church and all. I hate the overwelming feeling of having to go to church for the preacher not the reason..GOd. Its whatever though.,0 + Don&;t You Hate How People Make Fake Celerbity Pages? >.<,0 + Are most of your dreams realistic (that it feels like it can actually happen in real life) or non realistic (you flying)?,0 + nope.,0 + Who are you???????????????????????????,0 + doodle,0 + are you a registered voter?,0 + yes,0 + does any one say you look like a celebrity? if so who? do u think they&;re right?,0 + >.< ily haha :),0 + Heyyy. I am downloading songs at the moment. Would you mind helping me? Write your suggestions to my page as in right now. :),0 + No,0 + growl;],0 + nothing prolly. getting over a sinus infection and upper chest congestion,0 + how is your mom,0 + Do you look for quality or quantity?,0 + What&;s your best trick?,0 + How many licks does it take to get to the center of a lollipop?,0 + :) Are you currently happy in your life right now?,0 + Do you chew on your pens or pencils?,0 + did you know gaga was on an episode of mtvs boiling point?,0 + they used to be and i like them to be that way but any more with timothy in my life they arent,0 + followed! follow me also :),0 + THE LAST MESSAGE WAS JUST FOR PEOPLE WHO ARE BEING RUDE IF YOUR NOT DISREGARD!!! :)) SORRY IF I OFFENDED ANY OF YOU!!!,0 + Indeed(: Lol,0 + Favourite song atm (:,0 + because myspace is dead and FB is overrated. :) plus to expand my brain powers,0 + Orange Juice,0 + Would you ever lick a hobo&;s foot?,0 + lol funnyy childrenn. but slidinqq babe;!! (insiderr juss forr yuu mikeyy.)) hmmm let&;s see let&;s see.,0 + What are your plans for the rest of the day?,0 + fuck no! i live with a used-to-be sheriff im careful with the law outside of my home :D,0 + What color is your bedroom carpet?,0 + Do you believe there&;s intelligent life on other planets?,0 + When you looked at yourself in the mirror today what was the first thing you thought?,0 + Could you would you eat a caterpillar?,0 + What is the funniest nick-name someone you know has?,0 + well it sorta depends on what mood im in like i cant really choose favorites,0 + how do you make yourself happy?,0 + Robot Chicken is a funny ass cartoon in Cartoon Network for those who dont know :))) i watch it around 12 :)),0 + nope never. would never.,0 + what&;s your nationality?,0 + ever tried dancing in the rain?,0 + But I know who you likee(:,0 + Thankss(:,0 + hahahha thank you :),0 + A loud shakin' dancing singin toy thats really colorful and makes little ones learn lots of stuff!! :],0 + You're very annoying,0 + Jarrod is god.,0 + Are you ready to start school? I am <3.,0 + depends :P,0 + Good morning sunshine! ^^ ,0 + Girls; Do you like how you look in a bathing suit? Guys; Do you like you chick in a one pieec or two piece?,0 + Do you make your bed daily?,0 + single!!!!!! gabe saporta has my heart at the moment ( he is the lead singer of cobra starship if you didnt know),0 + samantha locascio <3 lmao.r but no i just have that there cuz i like it,0 + My old school shit i wud SOOO throw it away bhut my mom! Urgh,0 + If you could be invited to one person&;s birthday party whose would it be?,0 + whats the wierdest color you&;d ever dye your hair?,0 + Wait. Are you Cheyenne? I sent a request to you? Wait why is your name Tabitha?? R u fake????,0 + you just shamed my people tabi.. you like making black rappers feel bad huh? makes you feel powerful? still you rock,0 + are you a trusting person?,0 + what if formspring did not exist?,0 + What&;s the last play you saw?,0 + ..,0 + Do you have any scars on your body? If so how&;d you get them?,0 + Hey hey Tabi. I guess you&;re not supposed to trust dead people! BHHAH :D,0 + eating oranges!!!!r CASSIE I LOVE YOU!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!,0 + What&;s one thing you hate the feeling of?,0 + yes of course. i would love to be a pirate. always. errrgg.,0 + In what country other than your own would you like to live?,0 + show your face,0 + Was the last time your heart pounded like crazy for a good or bad reason?,0 + Last night about 11 o'clock,0 + Life is never going to be easy.,0 + How do you feel when someone disagrees with everything you have to say?,0 + alrighty !,0 + would you still consider your self as a true friend if you don&;t tell anyone but you allow your friend to do it? what&;s your opinion with that kind of a friend?,0 + yes.,0 + hahahahahhahahhaahhahahahah vvv ayee fix yerr infoooo ->>,0 + ExpLOrE tHe WOrlD :D,0 + i love you tabi!!! <3 (:,0 + r u g00d at art,0 + What&;s your worst habit?,0 + hahahaha thanks i think? did you call me beautiful? thats a first <3,0 + summer :],0 + Bugs Bunny or Mickey Mouse?,0 + Cajun Turkey and melted pepperjack cheese. Lettuce. Tomatoe. Miracle Whip/ lightly evenly spread. Pickles. Cucumber. Colby cheese sliced in a circle. && all layered perfectly on a toasted whole wheat honey and oats Bun. Deliciousness! :],0 + i think it would be fun,0 + ohhh your making my life soo hard!!!!!! ummmmm still brownie WAIT ANY FLAVOR OF ICE CREAM?????? change my mind. i was thinking plain vanilla but if its any flavor RASEBERRY CHEESECAKE,0 + Can you cross your eyes?,0 + Okeyyy honestly now I think this stupid person is just making up stuff cause she/he wont send you the link. Probably just trying to create drama and such. Maybe trying to make you worry? I dunno. Butttt anyways I love you TabiLou (;<3,0 + the last thing I want to do before I die is...,0 + the first one :]r if i had to choose.,0 + yes.,0 + aree yhu inlovee ?? if so ... with who ?!!,0 + When was the last time you were at the doctor? Why?,0 + we&;&;ll have to make room in the book mom gave you!!!!,0 + If you wanted to look very sexy how would you dress?,0 + If you could go on a road trip with any person dead or alive who would it be and where would you go?,0 + Would you kiss the last person you talked to on the phone?,0 + Off courrseeee dudee hahahahaha!!!! Awhhh lol! i think i love it 2 chuz im in it lol!!!! jk! i love yuh!!,0 + I do yoga. :],0 + Hell yeaaa how'd youu knoww?,0 + What is unbelieveable to you?,0 + Do you think that animals dream?,0 + not too often unless im in the car,0 + if you wanna be my lover by spice girls :],0 + would you like fries with that?,0 + Would you ever travel out of state to see a band that you like?,0 + What are you doing this weekend?,0 + lmao! V ( :,0 + What was the worst concert you went to?,0 + ....oats
,0 + Are you afraid of heights?,0 + have you gone nature tripping? if so where? and how was the experience?,0 + iKno dat grul,0 + Have you ever been to Georgia<33? :],0 + Do you like to dance?,0 + Vans sukka! (:,0 + kkkk :],0 + fly most definantly.,0 + do you have a bf :),0 + Star Wars.,0 + watt yuu meann...?,0 + Yeah I wanna be with someone...,0 + toasted lol wat a random question !,0 + What was the best job you&;ve ever had?,0 + hahaha okay,0 + ummm im not sure. i guess,0 + If you could bring one character to life from your favorite book who would it be?,0 + Are you a morning or night person?,0 + i'd say honesty,0 + brush my teeth,0 + Do you believe in ghosts?,0 + What&;s the most spontaneous thing you&;ve ever done?,0 + Tabi. If you stopped hating on Texas everyone from Texas will stop getting pissed....so just stop.? It&;s that easy,0 + entertaiin mhee,0 + How many drinks does it take before you get drunk?,0 + Yes we are.,0 + WATER!!!!!!!!!!!!!! :],0 + Good morning.,0 + Have you broken any bones? If so how?,0 + who diz?,0 + who do you remember from idaho,0 + :D,0 + are you in college? what course are you taking?,0 + Would you be afraid to find out someone you knew was in a mental hospital before?,0 + yep stop useing our jokes,0 + Are you nice to people you dislike?,0 + bahah yup that you do. but im not gonna tell the whole fuckign world what it is lol,0 + what is the last thing you did before you went to sleep?,0 + If it isn't broken don't try to fix it :],0 + Yes i do that all the time. haha,0 + haha connnnceidddddeddd much?,0 + Hahah Helllz yess! I will mamas!!<3 love u!,0 + Would you get high with me?,0 + nothing. my boo is studying and im FSing :D,0 + Woop I so did that Adam Turnbull one :) from adam lol! :),0 + I dont. and yes i see what your saying but not really cause guys are different than how we think. I think it more the forbidden territory to them so that's why they get so turned on when thinkin about doing it in the butt. haha Just don't do it if your not comfortable doing it.,0 + haha well you are the only ninja i know ;),0 + causes they can't have violence in the kids show. come on you knew that..hahah,0 + babaysitting and lawn mowing until i was of age to get a legal job. and that was a gold star chili the restuarant.,0 + Awhh shit Dx who your man.?,0 + Okay I am done spamming for right now. I will more later tonight. My husband is cooking dinner and I am about to eat. But please spam me back. And I hope you all have a great night! <3 -ChloroformGRL,0 + No I don't know anyone and yes I did know that.,0 + I like to think so. :/,0 + nope. ive been lucky,0 + timothy. Lastnight for both.,0 + Others what?,0 + Okay well my computer won&;t let me ask you anymore question right now emahsnouoy haha so i&;ll hit you up later? :],0 + Alone and in my sleep,0 + Do you take any dare?,0 + I have no idea. Haven't seen the commerical.,0 + Can you ride a horse?,0 + Tabi. You know I like u but I&;m starting to get that u don&;t like me. I like you alot. Justin boy is just some crush while I&;m open right here ready to love u. Pryce,0 + lol how ya kno,0 + Stephanieeeeey(:,0 + I am done spamming for right now. I am still sort of tired. Leave me things. I will spam more later <3,0 + DO YOU GO WIT ANYBODY AT THIS MOMENT,0 + Have you ever been on the guestlist for any event?,0 + pirateesss .,0 + Do you like pasta?,0 + Do you have one or more Britney Spears C.D.?,0 + Do the Alphabet song and Twinkle Twinkle Little Star have the same tune?,0 + What's cute?,0 + no but i should more often im sure,0 + stalker?,0 + :] your fine.,0 + they are yummy,0 + If you could change your name what would you change it to?,0 + yes i would. i would love the opportunie of saving another persons life. and everyone gets hurt..but is being hurt worth not saving another beings life? I dont think so. I'll save them!! :),0 + Both! I love tea <3,0 + Oh Most Definantly.,0 + no,0 + Have you ever cried from being so mad?,0 + thats really a hard question. and to be honest i dont think i could care for the amount of children that are being abused and self sacrifice my entire life for them. thats really harsh and makes me sound awful but that exact senario is happening next to my parents house and when i was about 18 i thought that is something i would have been willing to do but now i see them and how far they are that it would almost be mear unfair and unsuccessful on my part for them. its all they know. and if the state wont do anything its sad to say but what could i do by ripping them from the only home they do know and tell them its all wrong. i guess im not that selfless. and its like 12 kids. so that would be a lot. idk. but rightnow i dont think so. just because im not in any way capable of taking care of them any better rightnow anyways. other than the not abusing them but whats worse?,0 + What was the last thing to scare you?,0 + yeah. my boo just did but only cause ive been laying around like a hermet crab sick as a dog for the last couple weeks.,0 + easy Short Stack<3,0 + elmo. cause he laughs so much =D,0 + I am going to go to bed now. I still ahve alot of stuff on my mind. Ehhh... well have a good/day. <3 Leave me things.,0 + Favorite brand of clothes?,0 + If you could put somebody on a postage stamp who would you choose?,0 + stalkerrrr,0 + not really,0 + W3N YUH L0$T Y@ VIRGINITY!,0 + Are you good at giving directions?,0 + bravest? idk off the top of my head. im pretty brave but idk if ive really had to opportunity to be brave yet....,0 + Who is ur lover???,0 + Okay. Will do :),0 + lolss yew nastyy,0 + Bright room or dark room?,0 + Nope. I don't want to be a doctor. Only a nurse. traveling nurse actually :],0 + Ewwiee! Nothing haha(:,0 + Marissa Nicole Gomez!(:,0 + Yogurt!! and blueberry :],0 + iAnit flaw so juz chill,0 + Did you ever get in trouble for talking in class?,0 + What brand of shampoo and conditioner do you use?,0 + Do you like ketchup?,0 + Do you feel weird being around people you do not know?,0 + Tabithaaaaaa I love youuuuuuuuuuuuuu <3,0 + I didn&;t say the question after the one about texas!! I promise! And I was just joking around......because u strongly dislike texas!!,0 + lmfaoo wow,0 + im sooo hungry now. idk of any right now haha im eating grapes.,0 + What do you do when you have alot on your mind?,0 + Juno Sweet november mr. deeds :],0 + Have you ever ran with scissors in your hand?,0 + Would you rather date a lot of different people or be in a committed relationship?,0 + Sometimes if im looking forward to gettin the call from that particular person.,0 + Yes. Standing over the border line. Ive been in Ohio and indiana at the same time :),0 + Favorite board game?,0 + Hahaha I like everything thats etiable. :D soooo like chipotle is one of my many favoritees :) r r Buuuuut I really enjoy tacos kung pao chicken veggie penne-my creation ;] cajun rice. Pancakes always. I love ALL veggies and fruit is awesome. hahar I also like to try new foods. Exotic things noone would ever try! Ive had Sate Torpedo ;) haha I wouldn't suggest it.r r I don't eat fast food or frozen gourmet meals. Processed food grosses me out :P yukkkkie.,0 + ummmmmm i would like to move back to idaho falls because it was really pretty and i miss all my friends.. but i guess california or new jersey or new york would be cool. :) p.s. who is this? i love the questions,0 + What were you like as a kid?,0 + Not really. I wanna go back to gatliburg..i gotta necklace from one of the gem places up in the mountians and the head on the necklace broke. so i wanna get it fixed. :] haha but other than that. the beach would be nice but were tyring to get a house around here so idk if money will work.,0 + nope,0 + If you had A Big Win in the Lottery how long would you wait to tell people?,0 + Have u evr listened 2 a song repeatedly just b/c it reminded u of ur crush?,0 + yes,0 + i know alot of pretty people.,0 + Crap this is hard haha umm "People Need Inspiration"- The Last Song <33,0 + not too often.,0 + scorpion as long as i wouldnt die,0 + i guess the other people in it?,0 + Stupidity.,0 + Hells yeah you go back!,0 + Do you miss your hometown?,0 + hahahah what,0 + oh god um um um um maybe london =] i dont no somewhere where there is alot of clothes =] =] =],0 + guess who r u obsest wiv short stack,0 + If you had to give up one favorite food what would the most difficult?,0 + Yes :),0 + How does Freddy Kruger wipe his butt?,0 + Do you like traveling? How often do you think you ride in a car?,0 + I love you tabi!!!!,0 + Well i do now :p,0 + What is answer you hate hearing?,0 + What award would you love to win and for what achievement?,0 + ahahaahahahaha. yourr a funny kid.,0 + positive :],0 + uhhh not really anything.,0 + i have no idea. but its prolly because of where our priorities lay.... compared to the others that dont think. where are theirs?,0 + something to make me money.....like lots of money.,0 + :) hey thank you that means alot. is this who i think it is?r but really thank you,0 + Give me a hint :),0 + im pretty fit :),0 + I haven't been online for like three weeks hhaha,0 + If drugs had no bad effect on your health...would you do them?,0 + Umm like; sure(x,0 + Committed I want to like one girl cause then I will know for sure that she is the one((: <3,0 + r u & Frances still talken?,0 + What do you know about the.illumanati,0 + Fuck yes i think i am! haha,0 + yep and p.s. my phone died im lazy to charge it,0 + Honestly I don't know yet. I will find out in a few months(:,0 + Janet son of a gun. haha,0 + along came polly. cause its funny,0 + Someone still needs to read someone one her poems >:( (Smiley is not pleased),0 + Im going to spam anonymously k? You down?,0 + im a ninja if that helps,0 + I think there good :) I like most of your questions most of the time hahaha,0 + nope,0 + Errmm...Harry potter? lol,0 + Do you think parents are too hard on kids these days?,0 + do you think you could make it in the woods with just camping supplys for a week? {no cellphone.),0 + do you think gays are more stylish than girls? why or why not?,0 + omg really i never noticed lol =],0 + when ever you go to google translate DONT USE IT!!! trust me....,0 + Ohio USA. And its pretty rad :],0 + Are my questions boring?,0 + what was the weirdest thing you have seen?,0 + yeah when it first came on but not anymore at all,0 + i think everyone does,0 + 1 no 2 idk..???? help me out give me there myspace 3. no i use to live in idaho but i recently moved to texas.4. i have plenty of pictures at my school home old home whatever and PLENTY of videos.5 MY PICS ARE IN PHOTO BUCKET???,0 + im pretty fucking skilled then :D,0 + Purple,0 + Do you eat cheeseburgers?,0 + Hey if ur reading this I dnt know if u were following me or not but if u were I think I deleted all my followers so could u follow me again thanks,0 + dont even try <3 haha,0 + no. i suck.,0 + Ohh man i bet its tha shit!! Ohhkayy!(: be safe have fun!! <33,0 + You can only have one kind of sandwich. Every sandwich ingredient known to humankind is at your immediate disposal:,0 + lmfao! haha! Nahh its my badd;),0 + If you could make one person fall in love with you who would it be?,0 + How would a world without music affect us?,0 + yeah !,0 + Have you had an std be honest? Im sure half of y&;all have.,0 + What are you having for dinner? Who is cooking? Do you cook your own dinner?,0 + Blue Bear or Purple Penguin?,0 + Have you ever cheated in a relationship?,0 + my hearing aids as they help me hear the smallest things like crickets :D family as they will always be there for me:D and God even tho ive been struggling with my faith lately i know he will help me and wouldnt give me anything i cant handle,0 + how many times do u take a bath in a day?,0 + What character from a movie most reminds you of yourself?,0 + Nope,0 + I did. And then realized I dont get on my account enough to follow a bazillion people and keep them all posted up on my life. So I deleted it. r So Im sticking with formspring :],0 + i found you on jensens thingie. i cant really see your picture but i guess your cute?,0 + Wet the toothbrush or brush dry with the toothpaste?,0 + the guy at lunch at ur table at school who u hang out with and talk to he is HOT,0 + How do you tell when you run out of invisible ink?,0 + huh? they love animals so they dont eat THEM but they do gotta eat one way or another lol,0 + Hmmm.. its a tie. I loved all the Bailey School Kids Series and Dr. Suess books. But the BFG. All time favorite childhood book.,0 + Do yooh lite it upp ma?!,0 + tim.& i dont think men are hot.,0 + :))),0 + Why nott secret person(:,0 + okay,0 + myspace for the freedom of creativity :] and facebook for the social aspect.,0 + you tell me :p,0 + Where do you buy your groceries from?,0 + nahh its humorous usually,0 + Usually going to my brothers baseball games :) then all day outside!!! my favorite <3r Rollerblading or finding a new park and then out with the boyfriend usually to eat and then doing something..from a movie to going grocery shopping haha,0 + they laughed alil too much i guess,0 + no but i so wanna go this year!,0 + How would you describe in your mind the greatest guy in the world? What would he be like? What would he do with his time?,0 + Do you think we will find another life form in your life time?,0 + Was Jesus a virgin when he died?,0 + i dont no tomato sauce,0 + Do you eat all the servings in the food groups on a daily basis?,0 + It really depends on my mood and the type of people im around. Im very good at starting conversations but if Im around someone else thats doing a lot of talking I may just be a bit backwards cause I don't like to steal the light :),0 + Thank you(:,0 + jesus!,0 + i like learning french how about you? =),0 + IDKKK!!!GOD?! Not understndin this ? srry its like 3am hah,0 + Do you like Tom Cruise movies?,0 + Have you ever collected stickers that are on fruits?,0 + Yes it is lots of fun :) I wouldn't mind learning latin. Its a dead language of course but apparently there are a lot of good things you can get out of latin and a bunch of things are based on it.,0 + this one and the one about boys at six flags flirting with you that were older yeah that&;s too,0 + yes,0 + Dance the robot. :],0 + hahaha im pretty sure he has a girlfriend and even if he didnt there are sooo many pretty girls than me.,0 + jack.,0 + in between. i have a boyfriend that likes to contribute to my cleaniness with his messiness.,0 + I THINK SHE GOT U ON MYSPACE,0 + dont be silly wrap ur willy! lol,0 + r How much do looks matter to you in a guy/girl?,0 + If you had to cook dinner for someone tonight what would you make?,0 + corona lights :D,0 + I love cheese cubes.,0 + If Uranus had earthquakes would they be called Uranusquakes,0 + cremated because i wanna be spread in the ocean.,0 + Has anyone ever taken a picture of you while you were asleep?,0 + What wood yuh do fo meh???,0 + What happens when you put a lightsaber in water?,0 + In your opinion is being argumentative a positive trait or a flaw?,0 + Give it back to them. I don't really hate anyone..,0 + idk haha maybe beowulf:],0 + i think the death jokes are worse.,0 + Can bald men get lice?,0 + smile. eyes. complection,0 + yesssssssssssssss :D,0 + Youuur daddyyy <3,0 + What do you think makes a person snap and kill someone?,0 + Shh....Dnt tell any1 k? haha! NOTHING! MWAH!,0 + I've had a lot in the last year.,0 + not really,0 + Don't be anonymous. Share your name :],0 + great yours?,0 + depends on who their spying on.....,0 + tv cuz i can always find my shows online :D,0 + hmm foohl i said dont approve xD,0 + Do you have any concerns at this moment?,0 + How well do you handle rejection?,0 + why do we yawn when we see other people yawning?,0 + lala,0 + Yes but it was for the good. They meant a lot to me at the time but at the time I was being a stupid girl. :l,0 + ummmm..,0 + haha damn the ninja thing gave it away,0 + I think I would be a true friend. Now if your saying that my friend was in a relationship with another one of my friends that I knew were being screwed over? then that would be hard but the truth always comes out no matter what. and I dont believe its my place to do so. But as for them being what kind of friend. I just wouldn't trust them.,0 + when you feel like you accomplished things you wanted to do and had the time of your life,0 + Both .,0 + i cant tell you that because it would give it away...but i didnt know you personally last year...,0 + Usually I can.,0 + Your gorgeous :),0 + a what?,0 + What would you like to have named after you?,0 + Anything your parents should know about?:,0 + What&;s the best invention EVER made?,0 + yes. and that movie is hilarious btw. :) i would not be living there first off.....hahaha but i would trick them somehow. tell them of a better place on a landfill reserve.,0 + y0 v@q!N@ sm3lL lykK c0tT@q3 (h33s3,0 + What&;s your favorite music genre?,0 + YES :),0 + never. I hate that.,0 + nope. but i wink at timmy sometimes :],0 + haha!! it is haha lol!! man i hvnt even gotten 2 dat part yet! FML hah,0 + What is your guilty pleasure Disney movie?,0 + Yes i have. Not the newest one with Will Smith's kid and the chinese boys pickin on him but i have all the others with the white kid hahaha there all great movies :),0 + thank you! oooooohhh hot brownies right out of the oven :D,0 + like 4 or 5,0 + they didnt',0 + live life love,0 + yea it&;s different from warm cali but&;s cool :D weeeell gtg now :| gonna meet some friends i a few minutes lol.bye :] xx,0 + You can only have one kind of sandwich. Every sandwich ingredient known to humankind is at your immediate disposal:,0 + Whats yo fav position,0 + Heyy.....I am so sick of all these anonymous(however you spell it) people are hating on you. EVERYONE leave Tabi alone! TEXAS does want her and her family here. AND Jack...seriously stop. Please don&;t hate on her. What has she ever done to you?! K thanx(:,0 + heyy!,0 + DINA!(:,0 + i know! seriously! whoever they are obviously doesnt have the BALLS to tell me to my face or at least tell me who they are lol,0 + What happens to an irrisitable force when it hits an immovable object?,0 + ummm idk i do and i dont haha,0 + hobbies,0 + where in ohio are you from?,0 + -Haa you guessedd righhtttt:Dr its Maryyyy(: ahhh ilovee this picture!!!!!!!!!! mayb becuase youhr in it babe<3,0 + silliest. idk haha im pretty silly all the time,0 + Lol I lovee youu too!<3,0 + sometimes,0 + no i live on my own :),0 + Free cookies at Subway! Start the week off right with a Free Cookie at Subway! Recieve 10 points redeemable for a free cookie with any purchase today.r r Of course it had to be the longest text ever. haha I had a subway card and get those dumb texts all the time hahaha,0 + have you watched Karate Kid? I watched it yesterday it&;s a very nice movie :),0 + lay out and swim :),0 + Well any planet in the universe would involve planets that aren't named to me yet...therefore yes I would :) love to go to a planet we've never heard of!! haaha Yes i would live there.,0 + crazyness.,0 + Because she is an amazing person and I hope that she would agree with me when i say we're "close friends"...,0 + what part of louisiana was you born in?,0 + Oh wow haha i just read that guy/girl&;s(?) poem Love how my name is in it i feel honored jk,0 + well thats just too bad now isn&;t it? [;,0 + Be honest: Do you have a song by Ozzy Osbourne in your library?,0 + ahaha,0 + Not at all. well i guess with timmy i am. he'll get me anything lol but not when I was a kid.,0 + Who are yew??,0 + give me your number<3 ;),0 + ow much cash do you have on you?,0 + the way people are to each other.,0 + yesh,0 + Do you know a alcoholic?,0 + I want ________ to be my sister.,0 + DoIhKnowYuh?r AndYuhrLike...SpammingMyFS.,0 + Uhhhhh? Who is this?,0 + Yeahh,0 + Whats your IQ?,0 + u would call me coz i said so and im extremely bored mwhahahaa im guessing angel but i met more ppl on that day so it could be anyone....,0 + random song of the day?,0 + yes. I think it should be made into a cologne/,0 + is love really blind? why or why not?,0 + haaa its all qud sorry abouht the "hoe" thinq iwas mad lol,0 + whre do u wanna go 2 college,0 + he is a really good friend,0 + whats ur favorite band?,0 + cough drops. deodorant. glasses case.,0 + florida and yea,0 + If there's an exception to every rule is there an exception to that rule?,0 + Your very pretty.,0 + Is it legal to travel down a road in reverse as long as your following the direction of the traffic?,0 + Hmm I wonderr? Maybee my babeyyboy<3,0 + Are you a risk taker? If yes what kind of risks had you taken? If not why not?,0 + It's been a while. Prolly like 6 months or so..r Which is pretty good being that I turned 21 on the 17th ;),0 + toilet paper.,0 + Shouldn&;t the opposite of shut up be shut down?,0 + are you foing out???,0 + I don't ive always liked kylee sooo get outta my bisnatch!!!,0 + do you love justin?,0 + Hahaha it kinda seems like it&;s one person just repeatedly asking you if you&;re fake to irritate you. They&;re a low life who need to find better things to do than start crap on the internet with someone they&;re jealous of (;,0 + Haha i knowww.r i was kiiddding!,0 + Aww thanks a ton. but honestly what?,0 + whats you favorite movie of ALL TIME,0 + Maybe 2,0 + Why do people always think something can&;t happen to them until it does?,0 + i know i know i know! :),0 + I dont ever rememeber peeing my pants?,0 + Chocolate or Vanilla?,0 + How many TRUE best friends do you have?,0 + sweeeeeeeeeeeet,0 + hhahahaha okay :) nice opinion.,0 + nope neva did,0 + waaaiiiitttt what?,0 + boxers or briefs... or boxer briefs lol,0 + What is more difficult for you; looking into someones eyes when you are telling someone how you feel or looking into someones eyes when they are telling you how they feel?,0 + i think serious enough,0 + hmmm thats a good question,0 + im not completely sure but i would probs have to say off air or here in ur arms.,0 + The upkeep of downtown. its beautiful in what you can find in an innercity but the horrible the way it gets soooo run down by the next year or so. its sad really.,0 + Who was the last person to call you?,0 + Do you like your name?,0 + yes actually :) you feel pretty awesomely special when your walking in. hahha,0 + Faveee Timee - Sport ?,0 + Definantly. I just haven't found anyone like me.,0 + are you sick of hearing about michael jackson yet?,0 + Does it bother you when someone says they&;ll call you and they don&;t?,0 + Did you French kiss before you were 16?,0 + We're all Human. its in some ours genetics i believe.,0 + ha yeah cleveland rocks! where was your first kiss?,0 + What is your best birthday memory?,0 + very much so when it comes to things i believe in or think i should stand up for..,0 + Are your underwear and socks folded in your drawer or just thrown in?,0 + Are yuh single and ready 2 mingle?!,0 + What famous person do other people tell you that you most resemble?,0 + Uhhmm. Myself(:,0 + haha me too haha iloveyouutooBABYY<3;D,0 + I have many! 2many actually bhut i guess when i found my lifetime friends ;D,0 + st8,0 + yes. duh? ha,0 + Are you and @TruAce best friends?,0 + Do you get excited over cameras?:,0 + Lol how many?,0 + probably just the movie itself,0 + noooooooooooooo you dont have a name,0 + Yup yup!!:P,0 + If you could be a bird what would you choose to be?,0 + Actually IhDontMind..GoAhead,0 + remembering. but i have some crazzyyy dreams haha,0 + its frmo south park lol,0 + yeash yew do lolss,0 + Have you ever dreamt about something more than once?,0 + oo i gotchu yeah. manee,0 + What one thing are you exceptionally good at?,0 + im 30 u,0 + very generous.,0 + What do you think about people who dip? Like chewing tabbacco,0 + im still in love with my first love.,0 + Star Trek or Star Wars?,0 + how often do you go braless?,0 + have you ever had a "cub" sandwich?,0 + Idk.,0 + What does shaving cream taste like?,0 + i likey.,0 + The love of my life :],0 + Dina?,0 + Why do people fear for no reason in your opinion?,0 + If you could be on the cover of any magazine which would you choose?,0 + when timmy gets home :),0 + whare do you live? which countr i mean lol ^_^,0 + Wow... someone wants to smell your FEET???,0 + My boyfriend,0 + nope :),0 + Do you get mad when people lie to you?,0 + okay welll the question that was asked was if i was fake as in useing someone else pictures off the internet. and really i take that as a compliment because all the people who are ''fake'' i think look reall pretty soo stfu.,0 + Does a 'Marks-A-Lot' marker mark any more than a regular marker?,0 + Do you ever count your steps when you walk?,0 + hahahahha :),0 + i would probably make it so the people in my family were happy.,0 + Rice :] haha,0 + What annoys you most about living at home with your family?,0 + if its someone that,0 + If you could go only to one restaurant for the next five years which would it be?,0 + Do you have two formsprings me? Because I&;m following a different account and it&;s still you? Haha,0 + Tell me who it is cause I really don't know?,0 + Kaylas house...,0 + .,0 + Name something you bought on your last trip to the store.,0 + omg who wrote this? and umm please dont ask that again lol hes 21 im 14 :/,0 + Good night every one ! ! Spam me and I will do the same ** kisses **,0 + Have you ever been bitten by a spider? If yes what happened?,0 + do you think letting go means you love best?,0 + define what a bitch is haha,0 + when can i see u again?,0 + how many cartwheels can you do in a row?,0 + the cheesey kind,0 + after the viewing of said video footage who sees it next?,0 + Are you easily offended?,0 + Well idk who youu are ? So ..hha im afraid of strangerrrs.,0 + Two.,0 + Leeme&; get choo&; numbaa ;),0 + Why is it that some of us are cursed to constantly think? While on the other hand other people so rarely do so?,0 + Do you remember your dreams?,0 + yua gt dat liil &&H.B.M. fwum me yua needa cool iiT,0 + i dont hate her i just dont like somethings she does doesnt mean those jokes arnt ourss?,0 + im a lover not a fighter.,0 + Spam time :))) My questions can be a bit too much so if your not comfortable tell me to unfollow you! Thanks,0 + What&;s your ethnicity?,0 + No. Being Atheist is someone who denies the existence of God. Period. And you asked my opinion so please don't argue my opinion about something I don't personally care about anyways. If you want to be athiest then be it. If you don't then don't. I don't care. r Its your life.,0 + What&;s your secret?,0 + hm i don't have one,0 + Sunset :],0 + A boa knife by the bed. a in thick lead pipe under my end table and i guess anything thats around..my laptop cords to strangle or we have wood chisels that would take out an eye lol,0 + If you&;re in college or graduated from college what is/was your major?,0 + Does it annoy you when people kiss in public?,0 + oil spill and world peace and world hunger :] i know thats 3 but i cant choose lol,0 + Why do you think people lie?,0 + hot cheetos :D oh! and el torito salsa :D,0 + I would call it being curious but naah(: Aree you ?,0 + My bedroom door.,0 + what do you like best about formspring?,0 + yes if i was starving. theyre filled with lots of juicy vitamins.,0 + Name 3 cheese products you like.,0 + hmmm im not sure.,0 + The last song you listened to?,0 + If u got out of a relationship 3 months ago can you still say you just got out off a relationship?,0 + What the hell.,0 + haha what?,0 + water!!!!!!!!!!!!!!!!,0 + Do you ever think humans will be satisfied?,0 + Of course I can(:,0 + profile song!!!,0 + When someone says that something"just"happened what is the time period That comes to mind?,0 + I don't know what an ocean park is.. but if it counts I've went to seaworld twice :],0 + What would you consider a serious question?,0 + what is the strongest emotion a human has?,0 + Why&;d you go to jail?,0 + Name a movie or movies you can watch over and over?,0 + Last night. Me & My boyfriend went to the store and I started pickin up all kinds of things to buy and was like what the heckk did I even come here for!! :/ haha Thank goodness for my bf having his head on straight.,0 + hello :]] sup? ;p,0 + everyone judges. maybe not conciously but all humans unconciously judge even its only for a second. :] no worries i say i dont judge either. haha,0 + Longest relationship?,0 + Hell yahh(; LOl I love you too babeyyygirl<3 no matterr what,0 + Would you consider yourself to be fashionable?,0 + are you reliable?,0 + nothing. sorry im uninteresting currently haha ive beens ick,0 + to the corner of it and cry :D,0 + haha yeeee im awesome(:,0 + Justin Bieber.Duh. && Russia! ;],0 + ...........999 a girl?? lol oh god why did u make me so stupid??,0 + hmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm,0 + Have you saved a life?,0 + yes lol,0 + more than ever,0 + Go back to sleep and hope its a dream hahahahahha,0 + Which is your favorite day of the week? why?,0 + Never.,0 + Have you ever spent an entire day in bed without being sick?,0 + Have you ever cheated during a game?,0 + who du u like,0 + Have you ever found a four leaf clover?,0 + Nopee. Its been a while actually lol,0 + Tell me something about you that most people don't know.,0 + correction.........sex..........its not rape if i enjoy it ;) lol,0 + Haha Sureee,0 + how many languages do u speak?,0 + Yes I would(:,0 + Actually i do!!! Just my whole experience with this fake a$$ friend!!.<,0 + Do you own anything leopard print?,0 + Sunshine. Lots of food and hanging with my boyfriend and family :]r Awesomeness.,0 + What was cured ham cured of?,0 + Closed usually,0 + Have any favourite quotes?,0 + L3+$ h@v3 $3x? @nd ! W!ll q!v3 y0u d@ b3$+ b3(ky y0u 3v@ h@d !,0 + What&;s your dream car?,0 + my bed? haha,0 + Im a very happy person but I could definantly be happier with some different aspects i my life.,0 + do cats have psychic powers to control babys minds and tell them to take over the bahamas and control the worlds supply of milk?,0 + My baby. Timothy :],0 + kkkkkk,0 + Yhuuuu and Brandon are ssssssooooo cute !!! ;]<333,0 + Are you scared to lose the person you fell the hardest for? Are you still with this person or have you already lost them?,0 + YES! people just dont know what it is.,0 + i know. im sorry :( haha,0 + Do you do your own dishes?,0 + spam ya ma'am,0 + Intriguing.,0 + you are a cursed chameleon and you can only live with one of these: having the ability to change your color or the ability to turn your eyes in two different directions. what would you choose? why?,0 + im good (: &+ you bestfriend ?,0 + yuppp,0 + Has anyone pulled a prank on you while you were asleep?,0 + ummm.....ahhh hottt seniorrr(:,0 + dgaf :],0 + Always seems like..,0 + Can a short person "talk down" to a taller person?,0 + nopeee ;D,0 + will u cook with me in food tec whenever we cook next :P ?,0 + relation to Miley Cyrus?,0 + BACK OFF MY MAN.r Wait what man?!r pshhhh. :),0 + yes.,0 + Yuh m@k3 d@ 53x m3+3r q0 vv!ld,0 + Tabi I love you. (: I will meet you one day (;,0 + im not good with pranks. soory :(,0 + Everything really! AHhaha Lovin my HipHop atm! Ester Dean is thee shyyttt!,0 + What is something fun you use to do with your parents?,0 + Nahhh your fine :),0 + I rather not,0 + :D yeahhhh tottally!!!!!!!!!!!!!!!!!!!!!!<3,0 + too easily,0 + Nahhh. Things always have a purpose. :],0 + Scientists. Doctors. Engineers. r Because we would all know how to do everything ourselves.,0 + aw ill ask something so u dont go crazy ^_^ ok um what do you want in life :P,0 + Do youu?,0 + tabi what makes you think it was me?! come back to IF you know you want to,0 + why,0 + Idk much about my birth. So idk lol,0 + my life to get back on track. ... oops i told. does that mean it wont come true?,0 + Yeauh I&;m Really A liar. You&;re Cool. r i don&;t lie for stupid reasons.(:,0 + What are your parents like?,0 + just me.,0 + okay forsurre(::,0 + i love my LDS.,0 + Do you watch bugs crawl on the floor?:,0 + Do you know anyone who has broken their thigh bone? Did you know the thigh bone is stronger then concrete?,0 + Anything ethnic!!,0 + say my name. say my name..haha,0 + who is this? haha. add me on facebook then maybe ill tell you haha.,0 + hahahahaha no you wont i know u wont lol he just wants to kow just tell him,0 + Why do people feel weird when they forget their cellphone?,0 + hmm..dogs cat fish. Pretty average.,0 + Nope. What'd ya mean Still shy?,0 + what are youu talking about GAYY&;BOYYu2665 idid textt you back YOU didnt text me back!?,0 + you still going to cali!,0 + what&;s the first job you had?,0 + NAME ONE FEMALE YOU REALLY ENJOY TALKING TO AND BE HONEST,0 + well r i think i really like my friend.. :/,0 + I have him. My Timmy :]r He's super in everyway possible. Sweet and sensitive enough to understand but hard and can stand his ground when it comes down to it. A little over protective but only enough to show that he truly cares. He brings flowers home for me being his girlfriend day! :] If I want anything he'd get it but knows I have everything I want. Compassionate and caring and loves everything that I do. He enjoys all the same foods as I do and is open to exploring new boundaries he's never expierenced. Ohh and He let's me be crazy about things that Im so passionate about that most guys would laugh at and make fun of. Recycling planting flowers and smiling at people just because I want to make their day! :] He's perfect for me. He understands me in every aspect a man could. Hes sweet enough to damper my attitude and sarcasm at times but bullheaded enough to not always give in to me. Lets me whine if I want attention and holds me more than I could ever want to be held. I love him. And for me hes my perfet guy! <3r Ohh and he's a super sexxy stud :] of course.,0 + ..,0 + Do you like your name?,0 + Hell yes! Lots of them and thats including yuh!<3,0 + Doo You Still Gedd Ass Wopinqq&;s (: hahaha ;; Ps Dont Lie ?,0 + iDnt even kno if she iz,0 + POP!,0 + That&;s okay; I have Aidan(:,0 + What&;s your favorite way of making people smile?,0 + Isnt that quote from alice in wonderland?,0 + yea that is sooo annoying,0 + If everyone found out NO religion was real what do you think people would do?,0 + yes. slow danced with my boyfriend :),0 + What is something you have always wanted to know?,0 + Alexis My Stomach Hurts :/,0 + no,0 + no ya didnt iDidnt get a request,0 + what do you usually do to relieve yourself from hiccups?,0 + Have you ever watched someone drive drunk?,0 + kkkkkk,0 + Cereal!,0 + Dare me :),0 + huh??,0 + hes sweet to me and willing to do anything for me. but hes very selfish when it comes to being truely selfless sometimes.,0 + hello :),0 + hahahahah lmfao i laughed out loud. but IM NOT EVEN TALKINBTO HIM HAHAHAAHAHAHAHAHAAHAHAHAHAHAH,0 + kkkkkkkkk,0 + Yeah on funniest home videos. funny stuff huh?,0 + y0 d!(k !$ l!K3 @ c0RND0q,0 + Have any of you girls used the mens restroom before? Guys have you used the womens restroom? I saw a guy today going into the girls restroom cuz the mens was being cleaned lol!!! i was just like wtf?lol,0 + alejandro by lady gaga,0 + cleverrrrrrrrrrrrrrr,0 + ima miss you too ! but... im sorry i am haha,0 + Would you rather be really hot or really cold?,0 + whats the most entertaining event youve ever been to?,0 + awwhhh thankyou!!!! your soo nice,0 + what are you afraid of?,0 + Thanks :),0 + I miss being a kid. yes.,0 + No.,0 + If you had to cook dinner for someone tonight what would you make?,0 + Are you random or predictable? Why do you think you are this way? Would you rather be the other way?,0 + Favorite lyrics?,0 + Ahh,0 + i guess i would gett fat and have a baby .,0 + nope,0 + I could have a better one. :(,0 + Great you?,0 + deffo the star girls.......,0 + Do you believe in love?,0 + ask me something!!!,0 + Never;;,0 + haha im not a liar(:,0 + Did you ever have a crush you never acted on?,0 + Do you like this dress I ordered earlier? http://www.topshop.com/webapp/wcs/stores/servlet/ProductDisplay?beginIndex=20&viewAllFlag=false&catalogId=19551&storeId=12556&categoryId=160952&parent_category_rn=42344&productId=1762331&langId=-1,0 + nope,0 + why do butterflies die after a week? (you can make a creative answer =),0 + I can&;t believe through out our entire friendship you never told me you were fake D:,0 + Hmm thank you .,0 + a scientist lol,0 + nope,0 + What is your greatest regret?,0 + y0 dick size is off da charts,0 + Who was the last person to make you laugh the hardest?,0 + If you could rid the world of one thing what would it be?,0 + when was the last gift you received?,0 + No.. hate that.,0 + Yes i do!,0 + Basketball<3,0 + You just got a free plane ticket to anywhere. You have to depart right now. Where are you gonna go?,0 + ember.,0 + yes.,0 + Wow some dude wants you rach :/,0 + Justin Bieber Demi lovato and Barack Obama babay!!:D,0 + Do you like beef jerky?,0 + wet it first. always.,0 + How many times have you been cussed out? for me its alot cause of work lol,0 + What vegetable do you most resemble?,0 + Yodda,0 + umm idkk..,0 + Favourite game?,0 + Do you ask questions that sometimes you really don&;t want the answer too?,0 + anything jennifer lopez haha,0 + i wub you Joie(:,0 + Have you ever cried in public?,0 + Are you a lonely boy?,0 + nothing,0 + Do you tell a person if you see they have toilet paper stuck on their shoe?,0 + how???,0 + probably not lol,0 + can i get a encore? do you want more?,0 + haha yup i know thanks! :D,0 + Well don&;t because it&;s crude.,0 + Ever won a spelling bee?,0 + Yeah I know hahaha. they just pop up out of nowhere! :P,0 + all time? i have no idea. but i love comedy movies so i watch them pretty often,0 + Wow you really are persistent,0 + yes,0 + A painted wooden dragon.,0 + what is your favorite color?,0 + Talk about a time when you got into trouble at school,0 + no,0 + Do you believe sometimes in life you have to be selfish?,0 + ahaa to late i already sent youu onee[;,0 + Nope. Actually the science books with the weight chart says im obeist for my hieght but they're crazy if I lost weight according to what I "should be" i'd be skin and bones! I like a little fat on me hahaha,0 + i got a new phone today!,0 + Nico Martinez why are youu so hott!? Hahaha,0 + Yes.,0 + where are you from thn ?,0 + what&;re you wearing right now?,0 + Do you get distracted easily?,0 + Then do it(;,0 + are you working?,0 + yea if your awake haha,0 + What dead person would you least want to be haunted by?,0 + i would answer that but im not so sure of who that is ?,0 + why doesnt Winnie the Pooh ever get stung by the bees he messes with?,0 + I'm actually pretty happy about myself currently. Buuut if I could I guess it'd be to be a little taller so I could be a model. :] haha,0 + hahahaha its nothing :) really. its okay.,0 + Pink & Neon green(:,0 + musically cobra starship. but other than that nope!,0 + What was the best concert you went to?,0 + during the winter i do.,0 + besides the country where you currently live which country you want to spend the rest of your life?,0 + yes,0 + NOPEEE!! my name starts with b :O,0 + If an orange is orange and called an orange why is a banana yellow and not called a yellow?,0 + No. Only because if it were up to fate then noone truly has any choices in life. And well i don't like to be told what to do. I like making my own mind up! :],0 + If you could transport yourself anywhere instantly where would you go and why?,0 + wee.. we are in the same field =) so you mean you haven&;t start college yet?,0 + hahahahahahahahahahahahahhahaha love you to :),0 + samee here bby gurl,0 + PHONE SExxx boo!,0 + Cincinnati. You?,0 + 1 year and 3 months,0 + yea idr tho,0 + if you were to be a bird what would it be?,0 + to live on a deserted island with friends and family away from the world. money. selfishness. mean people. traffic. cliques. bad influences. annoying laws. limitations and live off of the land like an indian :) haha,0 + Have you ever yelled at a telemarketer?,0 + Do you have a cellphone or iPod with a patterened cover?,0 + thursday. its always overlooked. ahaha,0 + Do you know how to play poker?,0 + Nahh<3,0 + Shaun Diviney's house and everyday haha. we would be besties<3 and Andy and Bradie of course =],0 + What was the easiest time in you life?,0 + just so you know scarlett wasnt on when that was wrote.,0 + running into a glass window in a mall :P,0 + many times haha,0 + Do you have any obsessions?,0 + not often. i dont download much at all,0 + What are you talking about? Haha,0 + LMAO why would tabi be fake? hahahaha it cracks me up that they put up YOUR picture but put up a different name hahahaha thats low. so. back to a question cuz thats what these are for: hmmm.. do you like caramal apples?,0 + bahahaha noooo SIDE BURNS GUY! and thank you:D,0 + Have you ever fell in love with someone who you knew was no good for you?,0 + What&;s your worst nightmare?,0 + cheesecake. hmmmm yes cheesecake. raspberry swirl cheesecake ;),0 + -.- you&;re pictures aren&;t on photonucket.r I just checked.,0 + To all the people saying that Tabi is fake: Shut your faces. She isn&;t fake I know for a fact.,0 + i dont handle it,0 + lol its cool i dont deny it haha,0 + Idk... its a month that 4 sure lol,0 + pikturess love! ahah yuh dont tell mii nuthinqq no moree ahha I FAWKINQQ MISS YUHH!<3(:,0 + Do I like them No. Do I think they have a big part in society yes. So I take part in them. In america the government is the people. So why do people say they hate politics?r It can make a great conversation sometimes lol,0 + Do you have any piercings?,0 + ahh this is cutee [;,0 + yes i have. i know two people. and my reaction was dang that sucks. i guess tahts what you get for sleeping aroundhuh?,0 + probably 2,0 + lol idk,0 + On Gilligan's Island how did Ginger have so many different outfits when they were only going on a 3 hour tour?,0 + which one? kuz iThink yew tawking bout mi ex,0 + its a beautiful life.,0 + you felt like you could fly :D,0 + welll,0 + kkkkayy,0 + Omg Justin Bieber!!!! :) haha.,0 + What doesn't kill you only makes you stronger.,0 + Dark. I am a vampire. I am a vampire.,0 + Show your face.,0 + Like 2 in a half years? I think.,0 + Did you ever play duck duck goose as a child?,0 + Cute :),0 + swine flu.,0 + This person actually told me this "fried" i had was not a true friend and she wants me 2 still be this person's friend! Thats a NONO!,0 + nahh,0 + do you have twitter? =),0 + ever tried an ouija board?,0 + its needed just clean it out so its not too visible. ha,0 + what&;s up? how&;s timmy and you? haha,0 + Sassy. she was a cat. i hate cat's now. funny and weird huh?,0 + possibly,0 + Shrug it off. I'm prolly there to have a good time so i wouldnt phase it.,0 + If you know that down the road there was a business that dismembered baby boys and girls each week would you do something to stop it from continuing? And would you be a bad person if you didn&;t try to stop it?,0 + oh yah itz yew but ya neva added mi,0 + Most of you said your parents kept them. Don&;t you find that creepy in a way?,0 + haha no then u will be lik o ew that guy ~_~ *runs away* lol,0 + what do you do when you get upset?,0 + being bored enough to get on formspring hahha jk. listening to nagging. i hate nagging.,0 + I love youuu<3 &i miiss you !,0 + Would you rather be a vampire or a werewolf?,0 + nope. i love to claim it :),0 + because they have nothing smarter to say,0 + Do you put anything on your spaghetti Bolognaise?,0 + Would you take a actual hard drug if it could save your life and you were about to die?,0 + Who is your favorite comedian?,0 + Oh! Hey (:,0 + Do you learn the easy way or the hard way?,0 + Tabi all those people who are talking shit on your formspring ANONYMOUSLY need to grow a pair. If they&;re gonna hate on you anonymously then they obviously have no life. Grow up stop trying to start shit with her on the internet. I love you Tabi (:,0 + ya so watz up nd y formspring changed,0 + Would you rather be a zombie or a mummy?,0 + What do you think is your most attractive feature?,0 + Vampire weekend song happy mood and sad mood,0 + i dislike that,0 + Not currently,0 + your cute ;) dump jaybee and come talk to me,0 + Laswtnight.,0 + Thomas Gibson. He's an actor.,0 + If K.F.C Stands for Kentucky Fried Chicken Why do they play sweet home Alabama on the comercials?,0 + not really being that i am one as well.,0 + what is your favorite thing to do with friends?,0 + Hahaha Yup! Bhut not lookin 4 a man rite atm chuz dey 2much drama!,0 + bananas :],0 + idk lol,0 + You are on a flight from Honolulu to Chicago non-stop. There is a fire in the back of the plane. You get enough time to make ONE phone call. Who would you call?,0 + Ya i fixed the name but i just made this cuz i don&;t like being anonymous ahaha sept when i make up lame pickup lines,0 + with family,0 + yes and i dont remember.,0 + How did you meet Adriane Torres,0 + best day ever?,0 + Nothing like that should be stressful. It should be fun. When it becomes stressful that's when you know you've lost sight of the true meaning of christmas!! think about it people.,0 + like his movies. dont like him.,0 + What&;s the last furry thing you touched?,0 + yes,0 + what&;s your favourite colour?,0 + Have you ever heard that song by carrie underwood...cheated? that with a little of my own spice. :] ahahaha,0 + I knowwww :),0 + like a buck or whatev,0 + online <3,0 + Why or why not should I delete my FS?,0 + harry potter cause ive never seen the lord of the rings.,0 + no,0 + hey everyone im gonna start spamming again starting tomorrow...if you dont want to be spammed then inbox me ASAP,0 + NOpE,0 + Would you rather have a lovely day in with your family or go out partying with your friends?,0 + Pshhh liar ^^,0 + What can you not be trusted with?,0 + i like one of my friends,0 + I believe so :),0 + Name the most terrifying moment of your life so far.,0 + Sun.,0 + Ion kno lol,0 + Lady gaga looks like Christina Aguilera? True Or False?,0 + What is the bravest thing you have done?,0 + What do you think JUstin?,0 + If you were given $100 would you spend it or save it?,0 + Did u know the sky is blue :O unless u get all scientific and say its back ~_~,0 + chest hair mean hair on chest ? (-_-)?,0 + Joiieeeee:) I LaLaLovee Youu <3,0 + Hola! :],0 + Not a guy! haha maybe a cheerleader haha jkjk!,0 + What do you usually drink during dinner?,0 + Alexisssss! Fukk thozz haters ma! they dumb they aint gona do shtt to you!!!!! they meet hell they decide 2 touchhh yyyyou. i love you<3333 -Remz,0 + most hated movies?,0 + listen. duh? hahaha,0 + Let&;s get married?,0 + you! :],0 + Nahh i dont think so. i like my privacy too much ;),0 + HUH?,0 + Texas!!&Yuh hun?! xox,0 + are you serious??? does she have a myspace im very confused ill unlock my old picture album on my myspace pics from 2 years ago go look and they are in photo bucket? send me a link please.,0 + HAHAHAHA TEACHIN HIM how to ur his stickshift Mwhahahahahaha! i llalala love you best frann!,0 + Smiling at them. It seems to work pretty well. :],0 + being fake has nothing to do with your looks,0 + Would you rather get up early or sleep late?,0 + My life can only be perfect if ___________.,0 + Never been to either. SO idk yet :],0 + Enlighten me....,0 + ! w@n+ yUh t@ m@k3 m3 $w3@+,0 + kroger babay. its soooo better than walmart.,0 + how do you no that??,0 + Vanilla,0 + <3 hahahahhahah thakssssssssssssss,0 + Have you ever hated that you loved someone? >.<,0 + Peter Pan or Captain Hook u2013 who is cooler?,0 + what do you cook best?,0 + xdfcvghjkl,0 + M!,0 + how are you such a hottie?,0 + mmmmmmm,0 + Where do you wish to live?,0 + Nope i don't swear,0 + pictures pictures and more pictures,0 + Yes already. haha,0 + did timmy have fun?,0 + my parents,0 + If heat rises shouldn&;t hell be cold?,0 + watss ur email.?,0 + who is this dumpster baby,0 + what song? wtf haha,0 + What is the first thing you notice in the opposite sex?,0 + Life(: haha!! umm idk thats hard!,0 + Do you like shopping for new clothes?,0 + No. It&;s not Pryce,0 + Have you ever cried infront of alot of people?,0 + Is @TruAce single!?,0 + You accidentally eat some radioactive vegetables. They were good and what&;s even cooler is that they endow you with the super-power of your choice! What&;s it gonna be?,0 + Hahahaha Crazy.,0 + yes.,0 + maybe,0 + shira or frances?,0 + are you fat?,0 + Have you ever watched someone get arrested?,0 + say say say _________? finish the verse,0 + Bra or Braless?,0 + hahhahah yeah you!,0 + What&;s the number one thing you want to achieve in your life?,0 + Ive thought about it. I really feel like I influence a lot of people in my life. SO I kind of know. But I would sure hope that it wouldn't be like I never existed? :/,0 + nope,0 + Would you rather own a luxury yacht or a private jet?,0 + Why do you like Justin? You guys talk alot. And like really?,0 + do you cuss?,0 + Of course! :],0 + haha ummm your welcome..?,0 + How many phone numbers do you have memorized that you don&;t need to look up?:,0 + where in the World do you live ?? I am in Wyoming in the States,0 + what is something that your mom doesnt know about you?,0 + Not to my recollection. but funny you ask because my brother just did that and busted our neighbors chair at my sisters grad party this past sunday. it was hilarious!!,0 + yea,0 + Heck no.,0 + yeah,0 + ya iGot yo request... Damn yew gotta lil ass behind yew,0 + Sean Stouffer lol VVV lol jk naw it wasn&;t me,0 + Have you ever been French kissed by a dog?:,0 + 1. Are you fake? 2. Who&;s Cheyenne Taylor Tarren Samantha Jessica. 3. Do you live in Montana? Cheyenne is the real one. 4. She also has videos of her in school etc. Why is your pics in photobucket,0 + I don't unless Im really mad then I cry.,0 + no i am tabitha jai locascio im pretty sure this cheyenne is a fake so please send me a link so i can check it out i have amyspace and a facebook.,0 + i dont no lol =],0 + SARCASTIC. :],0 + the office 100%,0 + Tabi you are so pretty :) just wanted to say that haha,0 + Is your middle finger longer than your ring finger?,0 + Do you own a striped sweater?,0 + Hmmm...i don&;t know. I want to. :D,0 + What would you like to hear more about?,0 + do you think the jonas brothers are a bunch of faggots? if so your now my best freind :),0 + Best thing that happened to you this summer? :],0 + What&;s something random that you&;re currently loving?,0 + a c t u a l l y;;i DO want himm<33 [: so you can hush that! [:,0 + doodle in a box ahaha what a great song.....,0 + currently the hangover superbad forgetting sarah marshall how to train your dragon and a few more that i cant remember lol,0 + If you could go on vacation for the next month with an unlimited budget where would you go?,0 + how many people do you know with your first name?,0 + Who&;s better? Superman or Spiderman?,0 + WHUUT HAPPENEDD??,0 + do you go to church regularly?,0 + Favorite video game?,0 + Have you broken any bones? If so how?,0 + Have you ever dreamed something then it came true?,0 + iLove your nose ring!,0 + APRIL,0 + If a king is gay and marries another guy what is that guy to the royal family?,0 + tell me something about.. SNOW :],0 + I wanna play spin the bottle lol Have you played it? When was the last time? Mine was when i was 20 :),0 + Are you the type who is in a new relationship every week?r,0 + where you from??,0 + eagle,0 + do they die after a week :(,0 + Do yuh have any stalkers?,0 + Would you rather have the ability to fly or the ability to breathe underwater?,0 + If you could ask God any one question what would it be?,0 + do u have a cool anagram for your name,0 + What do you think of the papparazzi?,0 + lolss damn,0 + the perks of being human i persume.,0 + tabi! you&;re hittin&; on my bestttt friend! WTF. whooo cares i love you. :),0 + Even if Tabitha was fake she wouldn&;t hurt anyone! She can&;t even yell at me or control me. She&;s too sweet&nice! And people love her for personality. However she has both<3 I love you tabilicious<3,0 + Uhh..i answered this i think My Dad :) haha,0 + What are you getting for Xmas :D,0 + my sis is naked,0 + Favorite nickname somebody gave you?,0 + Do you know I took my backround picture?(:,0 + h2o. snapple raspberry white tea. oj-homestyle with all the juicey bits,0 + yes......cut my self with a knife (accidentally)...cut myself on the rabbits cage and fell off a chair haha and then i have a random one on my arm and i have either a scar or a dint in my forehead :/,0 + usually during the week everyday. but on the weekends Im with timmy so not too often ;),0 + vacations.,0 + yes.,0 + not standing up for herself.,0 + Hahaha. Strange!:S,0 + What was name of your first pet and why did you give it that name.,0 + are you dateing a &;&;jaybee alxeander?&;&;,0 + Where Were You Born? Did You Also Grow Up There?,0 + your parents tell you that you need to change your name into any animal name that you want.. what would be your name?,0 + i know,0 + thanks lady. :],0 + do u wana be justins gf?,0 + I gotcha :D,0 + umm idk haha theres a lot of them that i say alot lol.,0 + Do you have a T.V. in your bedroom?,0 + My grandmother. It's pathetic really.,0 + iguess,0 + a kids cereal. :],0 + nahhh.,0 + What is your height in ft/in centimeters or whatever standard of measure you like :],0 + Do words really hurt you?,0 + Only if i've had a bad day.,0 + Lmao!! kk lemme get my ass off this toliet seat then ill check!! Mwahah!! jk,0 + i miss you !(: lolz,0 + which do you think is stronger: love or happiness?,0 + Get dressed! haha and then grab one of the three or four things i said and beat the living crap out of them haha,0 + what do you like in &;YOU&;?,0 + Does being yelled at bother you? Do you yell back?,0 + I do not judge gyrls im not bi or a lezzboo!! K thanks',0 + Have you ever thought about how life actually started?,0 + Would you rather work at a large company or a small one?,0 + *POOF* Your in prison... Why are you there?,0 + yes.,0 + Well that wasn't fair because I was eating while reading this question so when I closed my eyes... I just thought about how awesome this sandwiche is tasting hahahaha yum. :),0 + What time do you have to wake up tomorrow?,0 + :O lol no freaking way! btw i didnt ask that :D,0 + huh?,0 + Have you ever found a really great place that you kept kind of secret so only you can enjoy it?,0 + Would you rather die a hero and fighting for someone you love but having to be in pain or die peacefully and painless?,0 + When did you last attend a party?,0 + "hey angel you duh sexy",0 + Single or taken?,0 + You have pretty eyes,0 + haha read my previous message :),0 + I snore sometimes so im told . and nahh i lay pretty still when it comes to sleep. I sleep like a log. ha,0 + only two.,0 + probably,0 + If you could would you kiss the last person you texted? Is this person just a friend or something more? Do you like it that way?,0 + GUYS- What do you hate most about girls? GIRLS- What do you hate most about guys?,0 + Do you own any band tu2013shirts?,0 + Depends on if I were in the country and who I was with.. But i'd say figure if it had anyone it belonged to and if not spend it! ;),0 + If your house was on fire and you could only grab three things what would they be?,0 + What&;s your earliest memory?,0 + What does sex smell like? My bro said like pussy lol,0 + aaron carter bayside secondhand serenade hoping for haley and carrie underwood,0 + Have you ever cried from being so mad?,0 + in the shower,0 + I can sleep in anything when im really tired lol,0 + Hmm..a new person that likes to talk and is intersting. least like....a creepy stalker dude.,0 + I appreciate the help ;))),0 + Hmmm depends. sometimes I get bombarded with questions but here lately since ive gotten on everyday its like 15-20. haha enough i suppose :),0 + What is the first thing you think of when you see a cow?,0 + met personally um Andy Clemmensen unless u count Santa hes pretty famous or the guy that helped train the animals from babe the pig or something like that ur pick. lol,0 + my mommy(:,0 + ight well its kinda hard...idk well mi lil boo mi boo and mi ex.,0 + Do you get nervous before doctor appointments?,0 + When was the last time you slept on the floor?,0 + Not fist fight. But a serious fight yes. haven't we all? ha,0 + Why you confused?,0 + know whats going on because then it was MY CHOICE to be hurt.,0 + Has you ever drawn on a drunk person?,0 + you would know if youd answer ur phone!!!,0 + Idk really. I never get hate on here?! :/,0 + How long does it take you to get ready in the morning?,0 + Like another language..i know some :),0 + Hhahahahaah ohh noo problem mamas! ahah me2 im soo exhaustedd *yawn* *ywan* LMAO!,0 + Where are ya From??=),0 + yes. like most websites i think people are addicted to having something to do :),0 + My pu$$zzy !z +hrobb!nq fo yo d!ck t@ q0 !n d@+ $h!+,0 + Call of duty Modern Warfare 2(:,0 + lol wen iFirst made diz ish yew was lyke hi so im juz asking who diz?,0 + Is quizzes are quizzical what are tests?,0 + yes walks to raise money for cancer patients and I volunteer for adopt a highway! Gotta care about our mother earth :),0 + shutter island,0 + I dont think so :/,0 + oh dhatss watss up,0 + YEsH hahahahaha wouldn't you??,0 + oh sorry it was jack im not use to hime actually talking to me like im a human.,0 + u probally wouldnt fuck the others cause everyone loves shaun...... meh i dont.. but i think hes pretty cool tho :P,0 + sonic,0 + Don't make plans.,0 + What was the craziest dream you ever had about?,0 + Ohhh okay. I'll have to check it out then.,0 + tasha. instead of Tosha :),0 + Dirt.,0 + Camping!! :],0 + yep,0 + vomit.,0 + I know but i knew you would'nt be able to resist the urge to finish it :)),0 + Didnt i give you my myspace ?,0 + not really,0 + Camping with a ton of friends or hotel with a few friends?,0 + a week ago,0 + hahah your welcome.,0 + hahaha thanksssss kinnn,0 + I am off here for a bit. Gotta hang out w. Xentury. <3 Leave me things. Thank you.,0 + i would rape you..............this is kaylanot pheobe,0 + Any thoughts of Justin?,0 + what is your favorite thing to do on the weekends,0 + ummmm the begging of this year coz i had kayla in my class lol =] but there was nice ppl in my new now old class ha.,0 + people.,0 + how often do you go to spa?,0 + polly prince on a Along Came Polly.,0 + Nahhh not worth the blahhh bullcrap.,0 + they matter but they aren't the decision.,0 + about 900 lol i havent been on for a hot second,0 + either a family member or one of my guy friends that would come and protect me :D,0 + Nahh unless i wanted to talk to someone taken from me unexpectedly.,0 + uhm (:,0 + If you could wake up as anyone tomorrow who would it be?,0 + To live....Pluto still. It'd be like living in alaska haha,0 + on what? thanks (:,0 + nahhhh. you cant help your lungs are only as strong as god made them,0 + Your so pretttyyy. :),0 + ew i hate twilight,0 + favorite band,0 + a magazine,0 + haahar do u love taelin?,0 + 30 mins tops,0 + I was juuust saying hi :),0 + pretty gurrrl(:,0 + do iKno iKan go check out mi musik n listen to it bxtch lmao... myspace.com/pokemonboyz7,0 + Yes. Hmmm the little asian dude that has all the gadgets and thinks he can fix everything with his smarts and thoughts :) haha,0 + Do they bury people with their braces on?,0 + No and btw if this is the person i think it is please stop tlking to me lol =],0 + yes lots.,0 + What&;s your favourite comedy on the tv?,0 + Do you think Christmas is stressful?,0 + haha good me eitherrrrrr.,0 + Hello?,0 + spanish,0 + Do you like Dina?,0 + To never sin bhut will NEVER happen! See im already sinning Never say never!,0 + Who were the last people you ate with?,0 + Me&God eatin Chicken wings on His throne <3 ahaha,0 + American korean. So like half korean & half whitee :] But im so the whitest korean girl you'll ever talk to.,0 + What would be the first three words you would teach a parrot if you had one?,0 + Since you asked me so many questions I figured I&;d ask you one...Favorite song favorite movie favorite place to visit,0 + yay ur divorce!,0 + good im glad he does id be sad if my husband didnt like me we would have to get a divorce.r i'd be sad if any of my friends didnt like me.,0 + What does PU stand for (as in "PU that stinks!")?,0 + hahah okey dokey!..sweet thang(;,0 + Tell me about yourself :),0 + Do you regularly watch the news?,0 + Yooooo mate RinnaLovesJB here. heyhey ask me anything ! (:,0 + Do you ever think of crazy things in you&;re head that probably wont happen?,0 + Do you have any favorite YouTube star?,0 + yes,0 + what&;s yer bra sizee haha?,0 + pssh i dont know what that person is talking about you seem awesome to me!,0 + How did the first women ever to shave their legs know that the skin wouldn't just peel right off?,0 + yes :],0 + does your bedroom door have a lock on it?,0 + wtf bxtch clea it iNeva ben ta hiz house,0 + no matter how hard i try i cant seem to get my mind off of you :/ please text meh.,0 + Snow White or Ariel?,0 + teehee du yuu luh mee?!?!<3,0 + Thats all i can think of right now >.< Gimme ideas & I will ask more stuff :] <33333,0 + Do you wear a watch?,0 + what&;s your real name?,0 + A nice monster. I would wanna be the closet monster that hides in the closet but really im just nice and want a little kid friend to play with :],0 + I have my nipples pierced. ha,0 + :D i love you to<3,0 + For those who give a crap: I am nnot dead. I am alive. And recently found out I was pregnant. I will not be getting on here anymore. But please add me on Myspace. Links on my page.,0 + MUSE. I want to see them live real bad.,0 + yes,0 + MMMMHHHMMM i love chinese and mexican. haha,0 + kkkkk thanks for all your spam in a can.,0 + Idk. I wouldn't be able to talk to you!! :( hahha its taken me too long to catch up on here. I feel like its been forever. :0,0 + have you ever gotten into a fight?,0 + favorite? umm hip hop and r&b basically 102.7 kiis fm and 97.1 amp radio are the only stations i listen to :D,0 + Do you volunteer for anything?,0 + Yes. Its dumb. hahah,0 + How do you eat your cookie? (eat around edges break in half just eat it lol),0 + rollerblading painting doodling formspringing eating planting flowers smiling taking pictures reading drawing writing always. :],0 + haha okay.r we are friends.,0 + Have you locked yourself out of you house?,0 + my little brother had cancer when he was 2. thats what i can honestly say made me want to become a nurse. helping people. I feel its something I can do :] r And I like to talk and keep spirits up sooo it fits me i think..,0 + Who is your loudest friend?,0 + Have you ever walked away from someone who meant alot to you?,0 + lilgego1youngg@yahoo.com,0 + i still do!,0 + How do you think STD&;s came to be?,0 + Are you willing to travel for your dream job?,0 + What&;s your dream car?,0 + OKAY. i was kidding down there lol. but 2 the other ppl that are being serious..SCREW-YOUR-SELFS. shes sooo pretty and you dont need 2 be sittinghere being mean to my friend!! your just jealous ur not as pretty as her (: <3 you tabi!!,0 + lmao ya da one yew made,0 + mountains or beach?,0 + Are you one of those people that doesnu2019t like chocolate?,0 + If you could learn any magic trick which would you like to learn?,0 + (this one is bothering me a bit.) Why does it seem like most everyone wants to knwo if the world will end in 2012? Are we going to fear it till it&;s over like Y2K?,0 + close your eyes and count until 10 NOW. what went through your mind? be honest,0 + What&;s your favorite flavor of jello?,0 + Would you consider yourself to be spoiled?,0 + rude people,0 + what will you do f you found out that you are adopted?,0 + Doesn't expecting the unexpected make the unexpected become the expected?,0 + awhhh thank you jordy.. :),0 + not for a while. i havent' been on in a while.,0 + When does school start for you? Mine starts Aug. 19th "/,0 + idk,0 + fortpolk. a military base,0 + i dont no haha,0 + <3,0 + 10 things you want to do before you die,0 + A writer. I wanted to be a writer creative novelist so bad.,0 + How Many Siblings Do You Have?,0 + Denny's :DDD,0 + seriously me to it drives me crazy :(,0 + Turning into a dragonfly and flying around the world. r The sun coming out and shining sparkle onto everyones face.r The entire society except kindness and show it throughout.r All sugar turned to water.r Every little hair on my body wiggling around dancing to the funky chicken.,0 + Do you prefer to ask question or answer them? why do you think this is?,0 + haha [:,0 + serious? they are a good band :D,0 + are you studying or working?,0 + Have you ever hit one of your parents?,0 + luk like dhat boii tyga tyga,0 + HAHA NOPE IM NOT TAQUISHA EITHER....i TALK TO YOU ALOT ON TWITTER;) <3,0 + People say "I don&;t know" alot. Is that a real answer? (Personally I think not.),0 + in your opinion what is the best thing about being a nurse?,0 + What do you think Victoriau2019s secret is? ;p,0 + couple times. car accident that sent me across three lanes of traffic in heavy rain spinning. not one car hit me. it was crazy,0 + hahahahahah is this dakota? ill read you one soooon,0 + what time is it?,0 + What was the worst job you&;ve ever had?,0 + If you had the choice to see the future would you?,0 + Should I ask more serious questions?,0 + I LOVE Sudoku's :] Read Paint I think I would be just fine recovering :),0 + Do you like Care Bears?,0 + Do prison buses have emergency exits?,0 + Musicals: Cheesy or entertaining?,0 + never mindVVV,0 + Do you have any jewelery on?,0 + I know how to change a tire change my oil what most parts of the car and motor is. I can put all liquids in my motor :] and I soo have my own jumpers haha,0 + What would you do if your partner cheated on you?,0 + hi!!,0 + I nearly ran over a prostitute once with my car.(True story.) What&;s the craziest thing you&;ve nearly hit?,0 + What&;s your number then?,0 + One fluently. Spanish pequinta,0 + yes love one,0 + umm dont start school yet lol,0 + What trait do you love the most and least about yourself?,0 + Do you have your own bank account?:,0 + lmfao umhuhh flaw buddiee,0 + if you could live anywhere in the world where would you live,0 + If you were a monster what monster would you be?,0 + okayy,0 + What kind of glasses do you have?,0 + September 22nd<3,0 + What reality show do you wish you could be part of?,0 + who do u like???r r r cough justin??? cough,0 + Would you have sex with a fat guy?!?!,0 + I am off for right now. I feel sick. And personally I hate being sick. So leave me things to make me smile&questions. Thanks babes!<3,0 + Cheetos or Fritos?,0 + What do you think is your most attractive feature?,0 + Ah me. by griffen house :] idk why. It just makes me happy,0 + Omg all these Texans are so sensitive!,0 + If my questions bother you please let me know. Cause I am sick of "IDK" Answers. Seriously I am. Like badly.,0 + ?mm,0 + Do any of your close friends have children?,0 + foooooooooooooood! :D,0 + I Hate When Formspring Messes Up Don&;t You ? -_-,0 + Do you sleep with noise or in complete silence?,0 + its life I suppose.,0 + Do you think we will always find a reason to go to war?,0 + why thankyou =],0 + MMMag i love it!,0 + What was the most interesting place you&;ve traveled to?,0 + Hayyy :],0 + Are you frightened of spiders?,0 + YOU FRENDZZ Wiff MEH BestiE KRISSy>?! IT BE TOOTsiE!(=<454333 oh YEAHP I LUH HERM (:,0 + Dont you hate when they fucken yell at you for not texting back? lol i do!!!,0 + When was the first time that you had beer?,0 + Yes. And im sure there are tons that soo could.,0 + Do you ever think you smile too little?,0 + mhm diz shirt iHad 5 yearz ago,0 + For all the people who read my blog I&;ve changed it/Para tod@s l@s que leu00e9is el blog lo he cambiado (de aspecto nombre y link las historias son las mismas xD): http://perdidaentretuszapatos.blogspot.com/ (What do you think/u00bfQuu00e9 os parece?),0 + I guess. so,0 + control issues i guesss,0 + That wasn&;t me,0 + Fav Fantisey ?? Doesn&;t have to be Sexual do you want to rich or famous or just live on a deserted Island ?? Anything,0 + no thank you haha,0 + in making decisions you always end up following what your ______ says.. heart or brain?,0 + What time is your alarm clock set for?,0 + LOWKEYY;; hehe Don't even trip<$,0 + Name a bird with a long neck.,0 + Do you take your daily vitamins?,0 + Janet jackson. You ain't right. :],0 + okay ill check it out,0 + Do you feel that children should be sheltered from unhappiness?,0 + Have you ever peed in the woods?,0 + big booty whore.!!<3 omg i miss you soooo much): dontt go to north.!!):,0 + What did you do for your last birthday?,0 + i would have liked to have seen the solar eclipse that only happens every like 7 years..or whatever. it just happened this year. but i wish i would of gotten to see it in person.,0 + lol ohkay hi,0 + Would yu ever even think abou goin out wit hannah fish or donna james?,0 + ice cream :),0 + Have you ever played baseball?,0 + If you did come back as a ghost where would you haunt?,0 + How many languages can you fluently speak?,0 + oh EASYYY!!!!r ventrilaquist dummies you no with the to lines by the mouth and stuff and a ventrilaquist makes the talk i am deathly afriad.,0 + Yes. because they're awesome and I love suprises.,0 + a bunch im sure. white lies are the hardest to remember,0 + :D thankyou your soo nice :)!!,0 + lmfao im telling yew,0 + Do you think people are addicted to FS?,0 + have you seen the trailer for Lindsay Lohan&;s new movie "machete"? if so what do you think?,0 + Yes. With my sister. haha we went night swimming in our pool in our backyard. Just so we could answer this question. ;],0 + Thanksss :) who is this? :D,0 + Lady Gaga has recieved 13 nominations at the 2010 MTV Video Music Awards she has beaten Michael jacksons record of 11 nominations do you think she really deserves all those nominations?,0 + hahahaha ummm sorry?,0 + I yell back sometimes but i dont like to be yelled at,0 + sext me<3 ;),0 + Yes. and Yes. hahah Ive been answering questions forever and still have like 450 questions. I feel like im never going to get through them all. Im trying though!! Sorry I hadn't gotten on here for a couple weeks. Big mistake. I have like two other spammers that killed my inbox so im still trying to catch up. :],0 + R YUU STiLL WiT YO BF? (:,0 + what is something from your past that you wish you still did? that you are glad you stopped doing?,0 + I don't know really. You ask a lot of prostitue questions though I'll tell you that. haha i guess because they've prolly never grown up being told thats not how life should or has to be..,0 + I am off for right now. Leave me things? <3 Please&Thank you!!!,0 + look like? pretty.,0 + okaaaaayyy,0 + to not be insecure of me. what reason have i gave for you to feel this way? haha thats what i would say but idk if they would take it right or not.,0 + What&;s your favorite kind of sandwich?,0 + what&;s your favorite song? :D
,0 + JET!!(: Hate boats! Worst experience ever was on a boat! Never again!,0 + yes. my sister. all the time,0 + Type of music you like most?,0 + hahha i know!!,0 + Can you tie your shoes more than one way?,0 + yes. all the time.,0 + what do you think of guys who wear headbands/ponytails?,0 + Do u wanna get raped? ;) hehe,0 + i have more than 1 profile songg ;p,0 + i need to pee but im too lazy to get up. r i want some more mac and cheese.r i really need to get off fs!! haha,0 + Eagle.,0 + lmfao!!!,0 + bahahahahhaha ;p,0 + If you saw a serious crime take place and if you told you could possibly be killed would you tell?,0 + be true to others to hope others will be true to you,0 + not too bad usually,0 + who is this kayla she sounds like she like short stack,0 + How often do you check your voice mail?,0 + Can you daydream at night?,0 + high heels or rubber shoes?,0 + when my little brother was diagnosed with cancer and we all thought we were going to lose him :( it was a dark moment.,0 + Don&;t you just hate it when you can&;t find a decent working pen especially when you need to write something important? ^_^,0 + If you could bring one character to life from your favorite book who would it be?,0 + -woaahhhhhh! Likee dude i&;m in youhr backround!!! :D AWESOMEEEE! <3 ilybbyy(:,0 + What would you do if you found out the car you were in was stolen?,0 + About a month ago. For my yearly check up.,0 + Have you ever entered a contest and won?,0 + On a scale of 1-10 (10 being the highest obviously) how outgoing are you?,0 + Great question! Tithe Help people Shop!,0 + Now that you've slept with two different people in a row you seem to be having an excellent day because you just came across a hundred-dollar bill on the sidewalk. Holy shit a hundred bucks! How are you gonna spend it?,0 + i love being silly,0 + great went ta jamaca...Yew???,0 + chicken <3333,0 + cmon babe just tell me ur favorite position i want to get ot know you and i want to know what ur favorite position is,0 + Yea,0 + why did you choose nursing?,0 + Are you a private person or do you openly share your life with people around you?,0 + what is your opinion on those people who doesn&;t mind what others feel?,0 + toothpaste that you are using?,0 + Famous(: Bhut im ME 4 rite now!,0 + What have you come to like though you use to hate it?,0 + "iloveyoubaby" "iloveyoutoobabygirl" that ^ haha [x,0 + facebook and you tube :D,0 + It was a while ago but i said f on the phone when i was really upset and talking to my dad. i never cuss in front of my parents. so it was an ooopsie i guess haha,0 + Nope. Not a cat person.,0 + idk lol,0 + noo,0 + :),0 + ha i would lovee to but i heard that im "harassing" youu so its a big no can do. ;P but maybe if we did get to know eachother we could spend some quality time togetherr [; hahaha,0 + What was your favorite year?,0 + o i wonder........,0 + maybe :P,0 + huh?,0 + not at the time,0 + What is a act of kindness you have recently done?,0 + :D yay.,0 + greed.,0 + Do you eat any weird mixture of foods?,0 + Up-Justin Bieber,0 + cooool riddleee! :Dr did you gooogleeee it to find it or.....? :),0 + huh?,0 + You can select one person from history and ask them a question to which they must give a thruthful reply. Whom would you select and what question would you ask?,0 + thanksssssss :),0 + Do you wear flipu2013flops even when it&;s cold outside?,0 + Hello My name is Javeed. You seem really cool and I wanted to know if you wanted to have a coffee with me sometime so just reply at 1-800- Javeed :D LOLOL Just kidding :D This is MsUnderstoodxxx again! And I love Jello strawberry to :DDD It roxx!!!,0 + Yeah I agree. It's wrong.,0 + i like them. its sick though to think someone thought of all that stuff lol,0 + carrie underwood concert. it was awesome :],0 + Kissy kissy facee!(:,0 + What was the worst advice you&;ve ever received?,0 + :],0 + what are you waiting for atm?,0 + If laughter is the best medicine who's the idiot who said they 'died laughing'?,0 + What&;s your favorite drink?,0 + your opinion really helped ;> thanks ;>,0 + are you and lindsey talking?,0 + only in burgers.,0 + What is the wallpaper on your cellphone?,0 + I ment boyfriend u know like the kissing the hugging estera.....unless u do that with your best friend lol :D,0 + (:,0 + Stop! Leave Tabitha ALONE she&;s NOT those type of girls that you can just fuck with. She just wants someone to LOVE her and I for one aboustly love her,0 + Timothy,0 + what is your favorite season?,0 + Being an atheist means we dont need to believe. We choose to believe either because their is no proof or because god has done nothing for us. We may not believe in god but we do believe there is good reason to not believe he exists.,0 + What&;s one thing you&;d like to do but haven&;t done yet?,0 + deffinatly my old one :) the poeple at my new one is kinda stuck up and the school is to small for me,0 + whats the farthest youve been away from your hometown?,0 + hmm if i know you well enough its like 8 but if not then like a 4-5 ish haha,0 + The Miracle Worker,0 + idk lol,0 + What was your favorite book as a child?,0 + it was gov made i know it,0 + Do you have any scars on your body? If so how&;d you get them?,0 + it calms my mind in the world khaos of insanity.,0 + If you were a tree what tree would you be?,0 + What turns you on creatively spiritually or emotionally?,0 + Your traveling once again at night you notice someone has been following you what do you do?,0 + 6'0 <- lolz hmm im 5'1,0 + Last time you had butterflies in your stomach?,0 + How come ur pics r all over photobucket. And this girl name Cheyenne Lerner has a BUNCH of pictures of u! Like more than u have!,0 + uhmm idkk hahaha ALOTTTTT,0 + Cause they'll get more stale and soft. Duhhhhh?,0 + lmao i no hahahahahhahahahahahaha thats what im sayin,0 + Are you happy with your life right now?,0 + lmao hahahahahahahahaha.your my favorite ever unless your eric.,0 + why do u have a new "girlfriend" like every single month??,0 + Do you shrug it off or cry for hours?,0 + lol im ready for it,0 + yes.,0 + ii lovee yuuu moree:P,0 + lmfao iJuz notice dat lol,0 + yes,0 + i really am sorry you have to have this ishh on your page tho nico but im not just gonna sit here while people talk shit thats just not how i was raised. so im sorryy i dont mean to be freeaking out all on here i kinda cnt help it.,0 + yes YAY! you guessed it right ;) and i cant call you! :L,0 + bob,0 + Dat one name HottBoi MiKeY !!!,0 + How often do you flick people off?,0 + IloveyoumoreBABYGIRL<3 (;,0 + Justtt hit dha G spot so I can orgasm wit dhat bigg dikk Of yours. Im ova alix. Yuhh betta! ;),0 + Do you cry often or keep it inside?,0 + hahahahahahahahahahahahahahahahahahaha nopeee not at the moment. hahaha he was saying stuff like that earlyerr.,0 + Along came polly.,0 + You are walking down the street on your way to work. There is a dog drowning in the canal on the side of the street. Your boss has told you if you are late one more time you get fired. What do you do?,0 + he should have a right to speak his opinion,0 + do you sometimes ask God why things happen to you?,0 + yes,0 + Uhm. Fun Funny Athletic Outgoing Creative And awesome! (: Duhh lol,0 + Someday I&;m gonna marry a Giant with a tiny wiener!,0 + possibly whats it to you? RAPE IN A BASKET....yer thats wat i thought..... no i dont no about him.,0 + Have you been caught swearing by a teacher?,0 + :p,0 + Wait. Are you Cheyenne? I sent a request to you? Wait why is your name Tabitha?? R u fake????,0 + What cartoon character would you want to be?,0 + What was your last wish for?,0 + Do you over think or under think?,0 + u32e1What impossible things did you believe today before breakfast?,0 + Hi my name is Nico. Its a pleasure to meet you :),0 + What&;s your earliest memory?,0 + how many glasses of water do you drink a day?,0 + Dang. Peter Pan of course!,0 + mclaine idk.down the street,0 + Why is there a disclaimer on the Allstate Auto Insurance commericals that says "Not available in all states"?,0 + okayyyy,0 + A picture of me and timothy when we went on a Riverboat cruise and dinner. It was soo romantic :) I love that picture!,0 + What&;s usually colder your hands or your feet?,0 + zerooooo,0 + What do you question the most?,0 + do you think your photogenic?,0 + Are there any bruises on your body?,0 + Why?!?! D:,0 + Hmm we just had one but i cant remember what it was..haha oh well,0 + Love-Sweet November. r Comedy-Mr. Deeds :],0 + What do you grab to drink when you&;re hot sweaty and thirsty?,0 + Do you like predictive text?,0 + I saw yuh rote on alix formspring. Well bae yuh hawt. Will yuh wam fo me,0 + do you want a girlfriend?,0 + hhaahhaahahaha dont u just love people who do that lol,0 + Top 5 hottest men?,0 + l00k under yur bed...!,0 + cyrus?,0 + How old will you be turning on your next birthday?,0 + is there such thing as love at first sight,0 + Eyes? I guess...,0 + What is the second most unique thing?,0 + yes,0 + Do you know where your Dad was born?,0 + the most would have to be probs.... super mario? on nintendo something or whatever haha #oldschoolftw.,0 + If you were abducted by aliens would you tell anybody? Why or why not?,0 + sounds puuurty legit. :),0 + What do you like to do on hot days?,0 + What colour is your bedroom?,0 + Yes. :),0 + possibly,0 + yes. tims dad,0 + What is the craziest thing you want to do?,0 + hahahahahahahahahahahhahahahaha i recently read the weight of silence and its really a good book.r *lover buddies for life **,0 + Home alone yes.,0 + Can you cry under water?,0 + Ask your daddy (;,0 + nope. I love doggies,0 + h0w ya feel about mii????,0 + everything on my bucket list.r skydiver make babiesr grow oldr have a gardenr help someone drasticallyr ..,0 + i <3 blink.,0 + And why would you fight for her jst asken,0 + Umm. . . good question i have many bhut i guess 16 and pregnant would be 1 of my fav ones atm. ;D,0 + Thats for Taelin to know .,0 + lol wats happing "its ya lil boi mikey babi" lmao,0 + yeah good thing,0 +2,0 + Sikeeeee! that nigga's a lil headbanger :),0 + How old are you?,0 + covers by my favorite guy ever.,0 + Omgee i get super shy when i get a brazilian wax... Do you girls get shy too if you get one or your like w.e? Guys: Do you like your girls waxed down there or it dont matter?,0 + U hopped on one of dese twu,0 + I thought about how my mother fed me with a tiny spoon and fork so I wonder what Chinese mothers use? Toothpicks?,0 + You have a boyfriend?,0 + What is your general philosophy of life?,0 + What video game have you played the most?,0 + Michael Jacko and Subway! Doh!,0 + Ok d3n. ! Don+ m!be d0!nq @ll d@ vv0rk d3n,0 + .,0 + What colour is your bedroom painted?,0 + do you put on make up everyday?,0 + what is your ideal vacation?,0 + Yup sure is :),0 + Not really that i can think of.,0 + mmmmmmmmm idkkkkkk i cant choose. possible something from mayday parade or plug in stereo,0 + Favorite candy ? :D
,0 + THANKYOU! HAHA,0 + Yeah it definantly has a smell. Distinctly sex smell..haha,0 + would you ever hire a hitman?,0 + Speechless... that&;s all I got to say couldnt think of anything to say oh ya and you still need to read me your published poem that way when your famous I can say "ya I knew she was a good writer before she became famous" ;),0 + When Im sad I get quiet. More emotion is shown when Im angry than anything. Im pretty good with keeping my emotions concealed.,0 + Its overated.,0 + purple,0 + :) i lovwe you to :) we will meet haha me jo and you could go to grannys??????????????,0 + quality for sure,0 + its prolly not who you think it is.. i just wanted you to know what i thought :),0 + I love you tooo! :),0 + I forgot what we were talking about :p I love you twinsie<3,0 + bath and body for sure :),0 + =],0 + Love you baby ;),0 + Yes. Timothy. :] and my dad. I talked to him and my ma! haha wow didn't realize how many people ive said I love you to.,0 + I know they&;re amazing!! The singer Jeremy McKinnon is soooooo funny :) He loved giving me high fives. My shirt is so cool too. It&;s with a fat guy on it. lol. Do you know the band August Burns Red?,0 + oh well 2 baddddd,0 + What is your religion?,0 + How much are you going to release that information for? I would gladly pay to know that.,0 + (If it were to save a life) Would you ever give mouth to mouth to a person with Herpes?,0 + Have you ever taken dance lessons?,0 + Whatu2019s the best feeling in the world?,0 + the changing my color. I love that :],0 + What were you doing when you found out Michael Jackson was dead?,0 + OHIO in the states. hahahaha,0 + Hmmm..I know a lot. Umm I guess psychology. The brain. It interests me just because people are interesting and dumb and so confusing.. I'd like to know more about that. :),0 + nope,0 + Have you ever been to Jamaica?,0 + i have no idea. nothing else to do in life..,0 + yes i just cant spell it. lol r orangatang? hahahahha,0 + what is the most embarrassing thing you have every done?,0 + yea,0 + Skittle :],0 + sing to the radio,0 + whats the craziest thing you have EVER done?,0 + ummm wtf? i still might go to weatherford and who was i ever mean to other than when i was standing up for myself?,0 + Of course. We the people are the government :]r all people should vote.,0 + so i make you mad? well maybe you could find my histery book for me and cool off with some reading(:,0 + Watz gud,0 + coool photo;,0 + http://www.formspring.me/bornbadd <-- follow thee link !! lol,0 + Okayyyyyy.,0 + What do you think when you hear the name Cris?,0 + thats not a lot of age difference....come on you know you wanna fuck him :P...JOKES,0 + ATM Rue 21;D Or Forever21 <3,0 + do you like animals?,0 + bust their face.,0 + I swear! I could never lie to my fiancee! ;),0 + comes in a can?!?,0 + What is the most expensive thing you have on right now?,0 + what was the last gift you gave?,0 + haha i don&;t judge!,0 + damnit then im out my bad for asking :),0 + Loser !! <3,0 + how many people are you following right now,0 + do you think girls look better with makeup on or none?,0 + Whhenz yur birthdeyy.?,0 + when was the last time you were disgusted by somebody elses behaviour and what did they do?,0 + yes.,0 + nahh,0 + Is Tosha your real name?,0 + For shiz.,0 + Mermaid.,0 + haha definitely wont be sending this amywhere :] i dont need chain mail to tell me how good i look :] i already know! ;],0 + Do you have any health problems?,0 + lmfao i no right. gosh its making me mad. yes yes i do. haha i also like lemon drops XD,0 + do you have your twitter account?,0 + B muhh qirl babe cuhh I kan qive you thaa world <3,0 + hahaha yeah i no right.,0 + no iDidnt,0 + prolly not. but only because idk you and i have a bf so he's the only one i like to touch or smell my feet! sorry yo lol,0 + Sure! Like tell me wht u wnna know?! Like wht do you use?!,0 + idk and probably ours or a monkey or both hahah,0 + Heyy Marribbbiii!! lmao! iloveyuhhh muchooo moeee!!!;) are yuh goin tmrw?!,0 + Do you believe there&;s intelligent life on other planets?,0 + Well that&;s all for tonight. I&;ll ask more questions tomorrow night. Remember to drop me a message in my inbox if you don&;t want any further questions from me. Good night! =D,0 + Vaginaaaaaaaaa???,0 + alexis....i&;ve had the biggest crush on you for awhile! i don&;t go on here a lot. but please message me on www.findersingle.com under the username "wishfulthinker". please don&;t get all weird. =),0 + What are you tired of hearing about?,0 + Live it loving and being kind. Kindness is key to everything that brings happiness in life.,0 + Do you have a secret that no one knows but you?,0 + no.,0 + dude make her lyk u again..shes hawt as fuck! do sumthin charmin..thts wat i do 2 muh girl,0 + hmmm ...should i answer this question? ha. Hacker!! jk.,0 + a peanut butter and jelly sandwhich,0 + torture isn't realllly my thing. but anything jonas brothers would do im sure haha,0 + Like a gallon :] haha Thats all I drink all day.,0 + who wass yhur valentinee ??,0 + like 480 er something like that. but who really talks to that many people. haha i think i only talk to like 9 of them all the time hahahaha,0 + what,0 + your MIGHTY attractive <33 ;D,0 +7 1/2,0 + Do you have dreams about becoming famous?:,0 + yes! :),0 + How often do you wish you were a kid again?,0 + Florida :] always.r But i wanna see the grand canyon.,0 + things that you cant leave/live without?,0 + Idealist or realist?,0 + What is your favorite thing to eat with peanut butter?,0 + Would you be a pirate?,0 + haha yea huh i do !!!(: i told you just now . lolz ima go to your houseee <3,0 + If you could go to a planet which would it be?,0 + nahhhhhhhhhhhhhhhhh,0 + thanks!!!! who the eff is this cheyene chick they are talking about??,0 + Last time you saw your best friend?,0 + dnt worry iWill,0 + Oh snap!! I would actually hug him first off ahah and say "Nigga where my weed go?" Hahaha jkjkjk i love him!! He is doin a great job!,0 + Ehh everyone should know i love them both :p lol can't choose (:,0 + i love you to,0 + creative things.,0 + To make life a little less inconvient for the every day hot dog eater.,0 + The last song you listened to?,0 + huh,0 + the universal dance man,0 + Well dats so tight ur friends wit @truace . How does it feel 2 kno him. Since ur his friend u wud kno does he hav a gf?,0 + When&;s the last time you&;ve been sledding?,0 + What was the worst place you&;ve traveled to?,0 + i see you got a volleyball net.,0 + Do you get annoyed when other people display bad manners?,0 + while ago..,0 + yepppppppp,0 + Are your days full and fastu2013paced?,0 + Would you ever allow your spouse to go to a strip club?,0 + hahahahaaha the way you were them makes you appear that way.,0 + Do you get along better with the same or opposite sex?,0 + When people try to make you jealous does it make you mad?,0 + Hahaha Bitch i bring it lmao! Kinda i think lmao! I hve some black in me so yes haha,0 + what is the definition of a hate relationship? does it mean the hate is both ways cause im pretty sure i would smite you with righteous fury bra dont be hatin,0 + yah dont really need anybodi rite now,0 + nope but the second to last gilmore girl just died. did ya knwo that,0 + no i havent actually and im 21 lol,0 + If you get cheated by the Better Business Bureau who do you complain to?,0 + Myspace duhhh!!!,0 + the winter olympics in Vancouver. Supposed to be gorgeous :],0 + Are you involved romantically with anyone right now?:,0 + If you could have personally witnessed one event in history what would you want to have seen?,0 + because theyre priorities in life are to live and be happy with those around them. not what they have and their neighbor may have more than them....theres a lot more to life than material. plus they dont know any different to them that is life.,0 + strict. and fun :),0 + Are you a happy person?,0 + Would you ever want to swim with sharks?,0 + lmao. i take super long showers,0 + ! W@N+ YUh 2 T3@R M@ PU$$$Y UHP,0 + I like your mustcha,0 + hahahaha okay good i was like D: ahhh,0 + Mary?! lol hahahaha,0 + How many times have you had the hippups today? :D,0 + If you could be any celebrity for a day who would you be?,0 + I'm not wearing,0 + Why do you think people have unprotected sex?,0 + what is ur star sign,0 + Ive just been chillin.
,0 + lucky pringle pop,0 + i love you tabi and i already know you never want to talk to me again but just know ill still always be here for you. thank you for everything<3,0 + i have never riden on a plane. i know i need to!,0 + who doesnt miss me lol (; VVV ewwwe my innocent mind,0 + Nope. suree haven't.,0 + Are you healthy enough? The Formspring Team tries to be. We like: www.icareformybody.info,0 + didnt u used to date matt carona?,0 + idk,0 + Not really the second one so much. It had some good underlying morals and all but the movie itself drug on and on i thought.,0 + yep,0 + What is the silliest thing you have done?,0 + over think on whats not needed and i seem to underthink on what needs the most thinking.,0 + Fukk celtics! GOOO LAKERRSS!! :D,0 + emarosa. they have their own genre haha,0 + What&;s your favorite genre of music?,0 + Are you easily persuaded in an argument?,0 + Do you play any sports?,0 + them disagreeing with me,0 + this would take forever hahah!! but the perfect guy as short as i could make it would be r himself he wouldnt try to impress every one and he would care about everyone and not be very mean. he would be some sort of musician. or artist. super funny and great personality. i dont really care about looks. though its great if the guy could be cute.,0 + If you eat chicken nuggets what do you usually dip them in?,0 + interesting.,0 + It is possible actually. :],0 + looooooove them!,0 + Is using a inhaler a sign of weakness?,0 + I like to walk away from a situation yes. before it escalades and things are said and felt that aren't needed.,0 + yes =D,0 + oh wow ohkay,0 + brown,0 + lmfao datz a funi one but hello no,0 + okay. my page is not for you to be anonymous on :],0 + Do you like Alice in Wonderland? :),0 + r IF today is tommorrow and tommorrow is today what day is today?!?r 0_0,0 + not really,0 + wait sooo is there like a lot to tell me?,0 + you come home and find your parents talking with your school counselor and principal/headmaster ... whats your first thought?,0 + Comfortness.,0 + My face :/,0 + lol,0 + Because I want to ask you questions!!!! DONT DELETE your formspring!! :{,0 + nope,0 + hmmm..she knows a lot. she doesnt know....uhhh that ive smoked pot before. that i want to change the world more than what i just say out loud. how much i hate money.,0 + Are you afraid of snakes?,0 + Talking about pimples lol My friend once asked me can i pop your zit i was like wtf?? nasty!!! Has a friend ever asked you this before?,0 + What movie did you think was very pointless?,0 + lol thankz,0 + uhh im not in school anymore..must be april hahhaa,0 + Awee' your gonna hand it too mee? Lol,0 + nice friends .. oh wait :/ srrrry my b,0 + What&;s your favourite part of you on the outside and your favourite part on the inside?,0 + no im tabitha jai locascio. myspace.com/tabiisaninja i have a face book to ask for it. I HAVE NO CLUE WHO THIS CHEYENNE IS so please send a link so i can see for myself because i guess she might be using my pictures.,0 + youd fight for lindsey? im a gurl. id love to see it,0 + Would you like a massage?,0 + hahhaha yeahhh,0 + sometimes and only when needed ;],0 + hmmm i havent been shopping in forever but i like forever 21,0 + ur coooooool,0 + PINK&NEON GREEN!Yeahh buddie,0 + well im a really good listener im great at helping solve problems but im known to be a big talker,0 + how long have you dated your boyfriend for and where did you meet?,0 + No,0 + Yes i knoww! Silly i could really care less. :),0 + Do you know any mechanical stuff about cars?,0 + Lol about Chris,0 + Thank you :] who ever you are.,0 + Wayyyy tooooo easilyyyyyyy!,0 + yes,0 + When was your last plane ride?,0 + hahahahahahahahahahahahahahahahaha i s,0 + I love yoou too Remy<3 They arnt gonna do shit they won't even put their names . I don't care much for them they love me!(: No Bitchassness Allowed!!,0 + Los Angeles! <33,0 + ice cream!! haha,0 + Yes if there were another way other than relying souly on mankind.,0 + me.,0 + how can you love your enemy?,0 + Pink Roses!(:,0 + kewl lol,0 + The Hills! Chuz Lauren was thee whole point it was clld thee Hills and there is 2much drama! Bhut I still wtch it chuz i love 2 laugh at thee dumb shit! Spencer is a prick btw!;0,0 + cuter,0 + Formspring. itunes. and fb :],0 + I&;m not stalking you Tab but who is this rude person? They are making me mad at how they are talking to you. I know we don&;t get along alot but I love you and I don&;t like these idiots being little b words to you. Ssaam,0 + okay.,0 + Drina.!(: i knoo huh they juss love me<3,0 + Fear. Only because of the corruptness of it all.,0 + bahaha i doubt it,0 + yes i love ATL!! great place 2 live wish i lived there! ;D,0 + M3 @nd m@ d@d vv@$ 3@+!n d!nn3r @nd ! Qu!(kly luk3d @+ y0ur f0rm$pr!nq p!(+ur3 @nd d!d d@ b3$+ @nd d@ b!qq3$+ 0rq@$m y3+ @nd m@ p@ q0+ h0rny @nd d3n vv3 h@d $3x. !+ vv@$ unpr0+3(+3d. D0 y0u +h!nk !&;m pr3qn@n+ ??,0 + okayy.,0 + Most of the time. Sometimes I wish I could be more for others but At the time My hands are tied with money and trying to get ahead.,0 + four,0 + are you currently taken?,0 + a nursing degree already.r a lott of land to live off of.r some money i could just give away to those who work their entire life and can never get ahead.r & a dog. bullmastiff. purebreed. i love them.,0 + have you ever been so drunk you dont remember what happened?,0 + r u in love with someone anonymously?,0 + wow,0 + ! w@N+ yUh +0 $M@(K m3 & m@k3 dH@ SEx w!Ld n h0+,0 + what do you usually wear? like to school?,0 + my blunt attitude.,0 + would you date a girl with a pierced tongue or lip?,0 + :),0 + cry like a baby,0 + if i told you would u let me,0 + because if its who i think it is i asked if she wants a boyfriend and you can find out the rest from her if it is her,0 + Name a movie or movies you can watch over and over?,0 + Itss Deannaa..! Imyyy,0 + right now...rollerblading :),0 + Favorite board game?,0 + followed :],0 + how do you heal a broken heart?,0 + boyy dnt get hurt,0 + umm idk. i try not to cry in front of people but that sometimes doesnt work,0 + Do you believe honesty is the best policy?,0 + i dont get t,0 + Im gonna take pole dancing classes would that make me slutty?,0 + my and timothys anniversary. we went to boi na braza the brizillian steak house downtown cincinnati. its was super snazzy :),0 + What makes you think a person is creepy?,0 + 60 inches. :],0 + Does it bother you when people try to make you jealous?,0 + lmao idk wea its at....haha,0 + Do you know April?,0 + can you please sing a cover of any justin bieber song? :D,0 + headphones,0 + Would you marry Donald Trump for the money?,0 + Kinda...,0 + hmm..im currently listening to knock knock on wood . hahahhaha,0 + Who is the wind beneath your wings?,0 + Do you think that questioning things is healthy?,0 + Worst childhood memory?,0 + Yur really pretty no homo ((:,0 + If you saw a robbery would you report it?,0 + I jerk all day my nigg! :DDD,0 + He's not really one of my favorites. But i likes MASK.,0 + how do you stay so cute?,0 + hahahahahah thankyou i love you to :),0 + something special. my heart's desire.,0 + hmmm i dont remember to be honest,0 + Thanks. It was in Panama with 7 other chicks. Funn times.,0 + Uqhhh Iquess Yew Goht Hoess All Ova Youh.! Lmao,0 + YES!~!!!!,0 + kum on den,0 + how do you spend your Saturday nights?,0 + this years love-david gray/r sweet november/r destin beach in florida/,0 + WAT IS A DERO,0 + Think fast! Name one song that starts with the letter N!,0 + Do you think it&;s okay for parents to push their beliefs on their children?,0 + Do you fear something you honestly have no reason to fear?,0 + lol ima go deep,0 + Not at all!(:,0 + what was ur favorite song???,0 + ew,0 + Tabi&;s a ninja :D and I&;m a ninja star you spin me round and round. Lol being anonymous hides my shame for making that lame pickup line :),0 + dont you hate it when people are only dating for about 2 days and they put "i love (the persons name)" on there statuses and stuff? I do >.<,0 + not currently,0 + Hmmm perhaps?,0 + yes :/ hahah,0 + Elephants have very good memories. Who realised that and what other brain was it measured against?,0 + if you had to remove a part of your body bec. it has cancer cells.. what part of your body would you choose? why?,0 + idk,0 + Like a week.,0 + If you could have invented one thing what would it have been?,0 + Nope. I like games but i dont own any of my own. Usually don't have time for them,0 + About how many pairs of jeans do you own?,0 + yes,0 + volleyball,0 + who are your top three celebrity crushes?,0 + What message would you want to put in a fortune cookie?,0 + Haha! Staring at my doctor thru sunglasses while he was in my mouth! HAHAHA!!!,0 + I love you...? haha,0 + dirt poor,0 + Have you ever used a swear word the wrong way and made it sound completely stupid?,0 + so you wont? lol you forgot the ending. it goes like this "i would if i could but i cant so i wont" <3,0 + tell mi wat ya want mi tew do nd iWill work it out,0 + Say your driving down the road in the middle of the night and theres a kid on the side of the road screaming for help do you stop?,0 + If you could go on vacation for the next month with an unlimited budget where would you go?,0 + I love to draw. I took 3 years of Studio Art in HS and you had to turn in a portfolio to get in the class.. ;),0 + Painful? I had to tell my parents that I had gotten a dui and was going to jail for 15 days.,0 + Whats your favorite j. depp movie?,0 + what do u like most about me?,0 + What word describes you best?,0 + How many silly bands do you own? :],0 + If Jimmy cracks corn and no one cares why is there a stupid song about him?,0 + hahahahahhaha ikr. :) but D: im not even talking to him hahahahahaahahahaha,0 + SUPERMAN!!!((:,0 + What&;s the furthest you&;ve ever traveled?,0 + i like talking to jenny,0 + http://files.formspring.me/profile/20100511/4bea173ca6455_thumb.jpg,0 + What&;s the nicest thing someone&;s ever done for you?,0 + Not really but I do like animals. Just not to make love to them. ha,0 + Thankk youu(;,0 + Mall or Park?,0 + The Angel Of Death has descended upon you. Fortunately the Angel Of Death is pretty cool and in a good mood and it offers you a half-hour to do whatever you want before you bite it. Whatcha gonna do in that half-hour?,0 + ONLY english native people! How does Spanish sound to you?,0 + What would happen if you get scared half to death twice? Do you die?,0 + the one and only :],0 + marital arts haha,0 + Nahhhh they're kinda neat to watch.,0 + What was the last fight you got into?,0 + Would you rather be rich or famous?,0 + the chicken flies at midnight....don&;t tell anyone,0 +21,0 + prettttty,0 + Does anyone call you babe?,0 + Hmm..i had been sick all wk so Ive only been around Timothy. And well I texted chels. So i guess just them two. Oh and you :) your questions make me smile sometimes hahaha,0 + You asked didnt you? I was like 12 and you gotta do what you gotta do yo> haha,0 + Would you/have you ever kissed a female?,0 + not much. i used to go on 3 or 4 but anymore i get the recommended 8 hours hahaha,0 + who is your bestfriend???,0 + hmm probably Alejandro by lady gaga,0 + sure why not?,0 + Uhm.. Tilly's (:,0 + WHOS UR BESTFIEND?,0 + Ever come close to death?,0 + DOnt PULL ovER!!! Never do that. Just keep going until your somewhere public and really well lighted all around. and then maybe go there until they leave. idk that would be freaky,0 + Would you let me see you get freaky?(random) lol,0 + Who was the best teacher you&;ve ever had?,0 + mhm,0 + Not currently. Im on a waiting list and I really enjoyed microbiology :),0 + grape. still is :),0 + you electricute yourself lol,0 + Its a chicken finger :],0 + <3,0 + Have you ever used drugs?,0 + I know its you dina im not dumb.,0 + Who&;s the most talented person you know?,0 + I think it's no different than a woman to hit a man than a man to hit a woman first of all. But up foremost I believe that If a man is willing to hit a female whom is half the size half the strength half the fury then the man is half of what a real man is. He's gotta make up for something else if he feels the need to take advantage of a being thats smaller and weaker that themselves or thier own. r r Hence don't think im not a feminist like all other strong figured well headed a female can do anything a man can do but lets face reality and we can't. So when it comes down to it theres nooo reason a male should ever hit another female. Ever.,0 + heck yess.,0 + Do you believe in life after death?,0 + i wish u werre fake,0 + both :P,0 + I dont havee mineee D:,0 + Middle school? Well I've never been emo haha but I don't think Ive been any of those. I was really independent from the beginning. Sooo I was the girl that had glasses and wore the straight legged jeans till jr high but was really funny and everyone liked & was friends with anyways. Areopostale was instyle bigtime when I was in middle school so idk I was friends with everyone though. r And I didn't wear makeup till I was a Jr in HighSchool!! haha,0 + How many hours of sleep do you need to function?,0 + I havent seen it yet i really like his cd though.,0 + TABIAHHHH...,0 + its more like 5 mins :) and i was delayed by a train ;),0 + Name something that&;s better when it&;s in your hands?,0 + i used to think that but not anymore.,0 + They say the garden of Eden was in Iraq. Then where is Hades?,0 + nope. idk what i am haha,0 + favorite drink ?,0 + What are your plans for the weekend?,0 + baptist.,0 + Yes I do. :],0 + ever tought about going to the Moon or anouther Planet ??,0 + favorite dish,0 + I love cameras. Show your face yooo,0 + Nope. Ohio :],0 + comedy,0 + i may,0 + What&;s a word that rhymes with TEST?,0 + ! w@nn@ fuck y0u. @nd y0u d!d f0rq3+ @b0u+ d@+ h03 VvV,0 + every now and then,0 + Do you prefer Tupac the best singer in the WORLD i mean was he dead and who doesnt like lee,0 + i do <3,0 + God that was a fun night I want to relive it...we danced in wall mart to betoven bahahaha,0 + Tabi is real!!! i knew her when she lived in Idaho!-Kinly,0 + What was the first thing you thought when you woke up?,0 + NOT AT ALL,0 + it wass gudd,0 + Do you like your eggs scrambled or sunny side up?,0 + gay or lesbians?,0 + If the whole world were listening what would you say?,0 + if thats what he'd wanna do then im not doing something right. so no but that shouldnt be an issue,0 + A world without bees; good or bad?,0 + yeah idk either i honestly think its that person we were just talking about the one that annoys you,0 + If you had to give up one favorite food what would the most difficult?,0 + So who is it that you like?,0 + haha it was kayla that wrote that lol you thought it was phoebe i tricked you hahahahaahahahahah :D,0 + lol dnt worry iWill..Watz ya name?,0 + Will you b my valentine?,0 + im bout 5'9,0 + it makes conversation haha,0 + OMG!!!!! tell me!!!! ughh grrr rawrr bianca? LMAO! idkk TELL ME!,0 +1,0 + depends on what they're cooking. my dad makes amazing lasagna chili and veggie soup. but my ma makes awesome fried chicken and wedges and mashes taters and baked ham.oh my!!,0 + I like parks :],0 + If you saw your zipper was down and people had noticed what would you do?,0 + Would you rather take the picture or be in the picture?,0 + Ohhhhh I get it now.,0 + If you could ask Barack Obama one question what would it be?,0 + Have you ever played Bloody Mary?,0 + Are minors allowed to drink in your state?,0 + lol,0 + Call me tomorrow at 7:00 AM.,0 + idk........,0 + how did youu know ?,0 + You can cast any actor now alive to play you in a film about your life. Whom would you cast in the role?,0 + which year was your favoroute school year... i know its not this year cause you had taylor in your class!but it still could be this year...,0 + Idk what "love stoned" is.. so idk haha,0 + Its just the way this world works these days. haha,0 + Nicee!,0 + How many keys are on your keychain?,0 + sherbert. yes :),0 + are your parents on facebook?,0 + List 5 people you know. Then describe each of them in 5 words.,0 + Not yet ;] Sure hope so here soon!! :D,0 + Yes ma'am,0 + Have you told anybody you loved them today and meant it?,0 + tosha haejin goodin. real as it gets lol,0 + Have you ever been to South America or Africa?,0 + Hahaha(: ight,0 + spiderman.,0 + sometimes,0 + Haha awee' who is this?,0 + lolss dhat aiint gudd,0 + okayyy!,0 + not at all.,0 + Are the best things in life free?,0 + Yes I have actually.,0 + Hahahahaha thats funny. I wanna learn so I can read all the questions you answer in filipino...haha its not fair!!,0 + purple :P,0 + Why u so perfect!? ;),0 + I want my mom to _________.,0 + hahahahaha http://lmgtfy.com/?q=What+is+a+dero%3F,0 + Do you like your living arrangement?,0 + What do you think of my questions?,0 + If you could have been the author of any book what would it have been?,0 + your like wiked pretty im soo jealous :,0 + What&;s your favourite part to watch in Rent?,0 + If you&;re from Africa why are you white?,0 + wanting to help everyone but myself.,0 + hahahaahha i know myspace.com/tabiisaninja,0 + How long does it take you to get to work or school?,0 + hahahha i really love that hahaha :),0 + I think the mama song :) hahar It was really pretty and it was the first time I had heard it so live was awesome.,0 + dont watch talk shows.,0 + Does it annoy when people jock your shit?,0 + When was the last time you flipped someone the bird?,0 + Have you ever asked someone out on a date?,0 + really i heard u guys got together?,0 + What is the last film you saw?,0 + we dont currently have a dining room rightnow haha,0 + Hello there dear :) and your verrrryyy welcome.,0 + kkk,0 + ummm im not sure haha i dont find anything i do impressive,0 + ABCDEFGHIJKLMNOPQRSTUVWXYZ. Pick one...,0 + Beachhh !,0 + oooollllldddd,0 + If you had threee wishes what would they be,0 + i dont think so,0 + hahhaha I would probably die of laughter.,0 + 10ish,0 + Does your name make any interesting anagrams?,0 + When you were a kid what did you want to be when you grew up?,0 + How old is your inner child?,0 + tabi i think your the best but you push me away from being your friend because i did something wrong and i hate myself everyday and ive always regreted it happaneing i dont know if you know who i am but i want you too know i wish that never happened,0 + lmfao hell no iGet way better [[no offense]],0 + Y0u m@d3 d@ h03 0rq@$m @q@!n. F0r d@ dozenth t!m3,0 + dickkkkkkkkkkkkkk????,0 + because there is nothing else to do.,0 + good to know good to know ;),0 + used to be a whole hell of a lot but now not so much.,0 + people talk about something you know they have no clue about.,0 + How do you think the Obama administration is doing so far?,0 + what does teaachgee mean? do you know what emahsnouoy mean? :],0 + Have you ever eaten an entire pint or more ice cream by yourself?,0 + movies or music?,0 + i forgot her namee sorry D;,0 + whats ur fav tv showww? :D <3,0 + haha no im not lmao,0 + nm...just chillin,0 + summer sandals,0 + who&;s "jokes",0 + Yes bhut I think luck is blessing from God actually! in my opinioN!,0 + k,0 + lmao i thought he spelled it some way messed up way. but lmao and you like i'll have 8says order8 and thats jack j-a-c-k. then your mom-he knows how to spell jack. hahahahahaha,0 + Haha...when i turn 60 ish ask me this! lol,0 + Sometimes if your daydreaming but then your daydreaming so its not nothing..haha,0 + Do you prefer Scary movies or comedy movies?,0 + What gives you bliss?,0 + your mom just told your dad to go sleep on the couch what are they fighting over?,0 + hahahahah this is awesome i know how to send messages to all my friends,0 + Would you reather have your heart be broken or break someones heart?,0 + (girls)Can you belly dance?r (guys)can you break dance?,0 + What age would you liek to get married?,0 + haha. does that really work on people? i am gullible at times but really?,0 + do you listen to your mom??,0 + idk lol,0 + Hello(;,0 + hahahahahaha yess. :),0 + that everyone has a secret.,0 + :) HAHAHA AWHHHHHHHHHHHHHHHHHH <3,0 + so whats up,0 + i eat it like a normal person lol,0 + Whats your favourite song out at the minute?,0 + Have you ever cried yourself to sleep?,0 + as soon as you turned on your computer what website do you go to first?,0 + LEADER <3,0 + hmm..paris hilton,0 + timothy,0 + What&;s your favorite YouTube video?,0 + haha thanks (:,0 + Meowl?;D If thts a word haha<3,0 + how much should a bag of kettle korn be?,0 + Do you like ketchup but hate tomatoes?,0 + just checking if your like a chomo or something ha. good thing you said ew.,0 + tommy pickles. from rugrats,0 + How long does it take to get over a "bad" relationship? (bad does not imply violent),0 + H2o,0 + Is quality or quantity of friends more important?,0 + Are you wearing the p
,0 + MOst dEfinAntly. <3,0 + love it,0 + no,0 + do you want to switch places with a male?,0 + iLoveYou! Thanks alot! Bhut its alot 2 keep up wit! Wanna trade haha!,0 + Are you someone&;s best friend?,0 + yo ppl spread the word and ask me more questions =],0 + Twitter,0 + sure,0 + lolss yeahh yew aree,0 + Thee comp? or cellfonne! hehe,0 + yes. and its a little creepy,0 + dirt. God made dirt and dirt dont hurt!! :),0 + Have you ever wasted you&;re time on anybody?,0 + thank you.,0 + i dont do brands. i do the look. i like how it looks i buy it.,0 + im living it. i think nightmares are never worse. you can always find one scarier and more wrose.,0 + do you like skittles?,0 + mmmmmkayyyyy,0 + What color is your favorite hoodie?,0 + My bed is on the floor unfortuantly. I know I hate it too! We're moving though :0,0 + What is your favorite movie?,0 + lisha n jennie,0 + Bruno,0 + I need a haircut for some style but im trying to grow it out !! so we'll see how long this lasts. ive been doing good lateley,0 + If Fed Ex and UPS were to merge would they call it Fed UP?,0 + thats annoying,0 + mmm what?,0 + text me(:,0 + Any new and exciting news youu2019d like to share?,0 + lmfaoooooo. JEALOUS bitches make me sick!(; so nicoo ahaah what th fxck is up! :D,0 + Goooooood cause I want you too ;))) <3,0 + What&;s your favorite kind of fruit pie?,0 + I am the master at skippping rocks!,0 + What was your favorite toy to play with as a child?,0 + going to my grandma's,0 + why is it that another persons actions bother other people so badly?,0 + What do you value most in your friends?,0 + most of the time,0 + september 7th,0 + hahahaha :) I'd say it was a little bird but i think it was one smart cookie,0 + whats the worst thing to ever happen to you,0 + Have you ever blamed someone else after passing gas?,0 + :D hahahaha,0 + hahahahahahahha lmfao I HAVE A MY YEAR BOOK. that was probably mine i stopped useing it like forever ago.,0 + Have you ever been to those cyber cafes to use the internet? How much they charge per hour? I did a long time ago && its 3 dollar an hour!!!,0 + If you could ask George W. Bush one question what would it be?,0 + yeah... even though i really couldnt.,0 + What was the best concert you went to?,0 + I think the same with all substance abuse while mothers are pregnant. IT SHOULDN'T BE USED!!!!! Not drinking smoking cigs pot coke shooting up blahh tee blahh...its all the same. Dont do it. I think its very immature selfish and uncaring for the unborn. They have no choice but to rely on the mother. NO CHOICE. SO as a mother YOU should make the right choice for them.,0 + Are you gonna watch the world cup?,0 + Is there such thing in life as a selfless sacrafice?,0 + OMG ! ! I did 200 Q&;s yeay MEEEE ! !,0 + wid wat?,0 + well put...,0 + You silly girl :D,0 + ew no.,0 + Myself Bubbly Funny?,0 + What&;s your favorite kind of cookie?,0 + What was so great about jumping on the bed as a kid?,0 + VVV yes or no question!,0 + Do you put up Christmas lights at Christmas time?,0 + What&;s the nicest thing someone&;s ever done for you?,0 + Definantly not. One :],0 + Is there anyone who was in your life that it hurts you to think about?,0 + Who&;s your favorite superhero?,0 + Nope,0 + Nahh,0 + Alrightt,0 + *wear*,0 + What do people most often criticize about you? (If some of these are doules I am so sorry.),0 + yes. only because it's petty highschool crap thats annoying and not needed. haha,0 + D:,0 + piratee&;s or ninja&;s? Ahah,0 + What&;s yur fav color?,0 + How do you pronounce the word "sure"?,0 + Thnksss.!! Umm thass juss how I do it(:!,0 + whats your favorite out on myspace and facebook?,0 + What did you dream about last night?,0 + favorite song?,0 + ckuss yew forgot bout mhe,0 + damn. i hate shiiiit talkers on formspringgg. i thought it was just a random question site thing,0 + Last gift you received?,0 + -question-,0 + favorite song?,0 + me and scarletts,0 + What around you could be used as a weapon?,0 + Laptop Dogs Family Shoes bed clothes coffee maker oven washer&dryer refridgerator table&chairs pics camera bath tub! HAHAhAHAHAHHAHA!!!!,0 + Visit? Plz *-* http://www.e-castig.com/index.php?r=R1wwn,0 + What&;s the best gift you&;ve ever given?,0 + ammmmmbbaaaaaa,0 + Are your nippleSz pierced?,0 + Do you like the smell of weed?,0 + Is There Anyone You Wish You Never Met? -_-,0 + nahhh i just hang up,0 + you should come next week!,0 + What kind of music do you listen to?,0 + why do you do this to ashlee?,0 + both. hahaha aliens may not be these crazy green martians that have lasers for eyes and slime coming out of their heads..but just another form of being from another planet or galaxy. So i believe in aliens. yes. :) r as far as zombies. i believe it'll be not in my generation or kids generation hopefullly.. but it'll be a genetic mutation that takes over the brain-that is created by some idiot scientist that works for the government and wants to take out a country or some kind of blahh bullshit. and it'll become out of control. and take over. i believe this one day..somehow . somewhere. it'll start and its already slowly taking hold of society,0 + Do you listen to music depending on what mood you are in or does music make your mood?,0 + yesss,0 + Favorite female comedian?,0 + yes more than no. and because i roll with the punches. but like to think ahead at the same time haha,0 + Cheesecake or brownies? You can only pick one to have for the rest of your life.,0 + toss it in a dumpster :P,0 + Hitch hike babay haha,0 + Actually its cabbage!;D,0 + Do you believe in God?,0 + bash my head against the wall hahaha ;),0 + What website do you spend the most time on?,0 + 3 physical features you get complimented on a lot? Name your least favorite feature?,0 + and it was an interesting question that i asked to get that hobo statement lol,0 + yes i have before.,0 + unpredictable.,0 + what about 456?,0 + book :],0 + I have 2 actually! Justin Bieber (ofcourse) && Scipio Mondai!,0 + kkkk,0 + ummmm possibly a week haha i was cleaning myself haha im not a dirty person but like i had a broken arm anyways im sure it was less then that D:,0 + musta? :),0 + What is a question you have yet to be asked?,0 + Noo problem :] anytime.,0 + If you could eat dinner with any person dead or alive who would it be and where would you go?,0 + y ya wanna kno ??!,0 + hahahaha true lady goo goo,0 + WELL FOLKS THATS ALL FOR TONIGHT I HOPE YOU ENJOYED,0 + :) awhh,0 + are you loyal?,0 + :) hey i agree with her (V) you are really pretty!,0 + are you only acting nice to people now because you have to stay at brock?,0 + Ate it?,0 + really. travis?,0 + umm money money money and short stack haha. =] and jimmy machan and beau taplin my obsessions atm lol =D,0 + @y3 @l!X $3D yUh wUz j3rk!n oFf t@ q@y p0RN !n hIsz q@r@qe wi+ y0 d@d,0 + last year <3 7th grade,0 + pretty fast.,0 + What is the most exotic place you have ever been to?,0 + hope that it'll work? haha,0 + Who&;s the sexiest woman alive?,0 + Can you tell if someone is lying to you?,0 + Would you ever shave the side of your head?,0 + No school for me,0 + Who would make a better spy...a woman or a man?,0 + Person you talk on the phone with the most?,0 + What do you think about parwents who drink alcohol around their children?,0 + Pussy Cat dolls OR Paradiso Girls?,0 + make it big enough for my extended family and those who really arent "family" but treat them like they are to live in,0 + What&;s the best place near you to get a drink?,0 + What would you do if you were the first person on Earth?,0 + Hmm..sloth is what came to mind lol but its not really what I wanted. haha maybe dragon :],0 + Dayyym gurl u got it goin on! ;],0 + If I feel like I need to then yes.,0 + comedy or horror movies?,0 + kkkk. hope you feel better!,0 + What&;s the worst thing about where you live?,0 + Haha yepp,0 + Text me?,0 + damn yew just hurt my feelingss,0 + ahahaha!!!(: It wuzz funn!(: lmao<3,0 + Do you miss your past?,0 + Umm? Think wht chuu want babeyy(:,0 + not at all!!! I smile too much,0 + who was ur first kiss,0 + Do you know anyone in prison?,0 + hahahahahaahaha is this dakota silvey?,0 + have you ever wrote a love song?,0 + Do you believe honesty is the best policy?,0 + I loveeee youuuu alexissssssssssss vvvv mines better(: hehe<3333,0 + Does your school have dry erase board or chalk boards?,0 + Listener definitely chuz i get cut off alot so i just listen or ignore pplz!,0 + Has it ever been hard for you to say "I love you"?,0 + What's a saying you say a lot?,0 + hahahahahah every one keeps asking this! but nopppeeee.,0 + sing?,0 + if you could be with anygirl in the whole world who would that girl be?,0 + well if this is who i think it is you didnt ask to see my poems and i wrote some for you and i showed you and you didnt care much,0 + yes once,0 + That's my baby rightt thhere!(; haha but nah,0 + are you a party girl?,0 + thank you :),0 + no we talk up!,0 + hmm.r my husband.,0 + shan kinqst0n yo cuhz??? forrreal???,0 + Hahah!! ohhkayy?!?! lol Wht do you call a deer with no eyes? I have no ideer! haha Classic umm i suck at this haha,0 + yes! haha neat trait of mine.. i can plug my nose with my lips :],0 + You outta know by Alanis Morrissette ;],0 + False.,0 + Do you like the movie Chronicles of Narnia?,0 + siblings?,0 + Have you ever bid for something on ebay?,0 + in highschool maybe haha,0 + Well i thought that you were at first but I've realized that you're intentions are good and i wanna get your number ;))),0 + Favve Song ?,0 + Thnks :],0 + do you wear hats?,0 + What color is your toothbrush?,0 + funny background statement =>,0 + Nope,0 + I luhh u already! I dha grl dat wanna give u becky and sex,0 + Is love necessary in life?,0 + nahhh,0 + yea i don't like it when it's dirty,0 + Why do you press harder on the remote-control when you know the battery is dead?,0 + that was gonna be the first hint but i guess i knew it was too obvious,0 + Seriously leave Tabi alone. WTF VVVVV,0 + well would you believe that youve got me "Love Stoned"?,0 + What was the best advice you&;ve ever received?,0 + nope.,0 + with nail grooming tools? file clippers no biting people! thats so gross and unsanitary.,0 + do you think you&;re a good friend?,0 + What food are you burnt out on?,0 + dhatt wass me ! lol,0 + Have you bought any new clothing items this week?,0 + They're okay. i haven't seen them in a long time :/,0 + not really when i first meet them,0 + Lykee OhhEmmGee ! Hiii Mikey !,0 + Are you picky about spelling and grammar?,0 + popcorn!!! twizzlers. and some mike and ikes.,0 + Ohhh well i didnt know you were doing that you know since the questions come backwards to you..hahhaa sorry about all the show your face comments. hahha,0 + Do you wish someone was with you right now?,0 + kohl's actually.,0 + yes. but we end up warped in the end either way..,0 + Entertainingly cheesy :],0 + Do you think you're hot and/or sexy?,0 + repeat.,0 + I cannot listen to that Heavy metal! I like me some rock(oldies) bhut not that scary shit ;D,0 + DO U NO ALIX&;S SISTER HAS A CRUCH ON YOU,0 + repeat,0 + hey who diz?,0 + I aint da one dat said da tampon thang. But i added yo myspace.,0 + How many languages do you speak?,0 + lol no iDnt iGuess bih,0 + sometimes. i did that a lot when i was sick this past wk,0 + You'll neverr know (:,0 + hold im confused,0 + i wouldnt catch one.,0 + Haha nahh ive just fractured some thumbs bhut itz all good lol,0 + did we have any classes together this year?,0 + I Havent Gotten 2 that part!! haha,0 + I dont. But what is complaining about it going to do?,0 + Bahah yeah i&;m totally just gonna&; get pissed at you for talking to you. Mhm thats just how i am! ;D r Ha noooot so muchh.,0 + hahahahaha >:) im evil mwahahahahahahahahaha,0 + What&;s something unique about Ohio? :),0 + Who is the biggest gossiper you know?,0 From 6bf520e28e5e27b32e27b860d7e84c9cbb7e46b0 Mon Sep 17 00:00:00 2001 From: Utkarsh Trivedi <104593332+UtkarshTrivedi2934@users.noreply.github.com> Date: Wed, 10 Jan 2024 00:05:51 +0530 Subject: [PATCH 2/3] Delete Classification of Cyber Bulling using NLP/README.md.txt --- .../README.md.txt | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 Classification of Cyber Bulling using NLP/README.md.txt diff --git a/Classification of Cyber Bulling using NLP/README.md.txt b/Classification of Cyber Bulling using NLP/README.md.txt deleted file mode 100644 index 54212b60d..000000000 --- a/Classification of Cyber Bulling using NLP/README.md.txt +++ /dev/null @@ -1,15 +0,0 @@ -Cyberbullying, a form of online harassment, has become a pervasive issue in today's digital age. Natural Language Processing (NLP) offers a powerful toolset for addressing and classifying instances of cyberbullying, enhancing our ability to detect and mitigate this harmful behavior. - -Key features: - -Text Analysis: NLP techniques enable the analysis of textual content in various online platforms such as social media, chat rooms, and forums. By examining the language used in these interactions, NLP algorithms can identify patterns associated with cyberbullying, including offensive language, threats, and personal attacks. - -Sentiment Analysis: Sentiment analysis, a subset of NLP, aids in discerning the emotional tone of messages. Cyberbullying often involves negative sentiments, and sentiment analysis can help classify messages as potentially harmful. Identifying aggressive or harmful sentiment is crucial in flagging instances of cyberbullying. - -Keyword Extraction: NLP models can extract keywords related to cyberbullying, including derogatory terms, slurs, and threatening language. Keyword extraction facilitates the identification of potentially harmful content, contributing to the classification process. - -Contextual Understanding: Understanding the context of a message is crucial for accurate classification. NLP models can be trained to consider contextual nuances, distinguishing between playful banter and genuine threats. This contextual understanding enhances the precision of cyberbullying classification. - -Machine Learning Models: Utilizing machine learning algorithms within the NLP framework allows for the development of robust classification models. By training on labeled datasets that include examples of cyberbullying, these models can learn to recognize and classify new instances of such behavior. - -Conclusion: In conclusion, the application of NLP in the classification of cyberbullying represents a significant step forward in addressing the challenges posed by online harassment. By leveraging the capabilities of NLP, we can develop more sophisticated and adaptive tools to create safer digital spaces. \ No newline at end of file From 506e357a0a8385cfcaf7438da48c2305b55fef3a Mon Sep 17 00:00:00 2001 From: Utkarsh Trivedi <104593332+UtkarshTrivedi2934@users.noreply.github.com> Date: Wed, 10 Jan 2024 00:06:15 +0530 Subject: [PATCH 3/3] Create README.md --- .../README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Classification of Cyber Bulling using NLP/README.md diff --git a/Classification of Cyber Bulling using NLP/README.md b/Classification of Cyber Bulling using NLP/README.md new file mode 100644 index 000000000..5a20e3d8e --- /dev/null +++ b/Classification of Cyber Bulling using NLP/README.md @@ -0,0 +1,15 @@ +Cyberbullying, a form of online harassment, has become a pervasive issue in today's digital age. Natural Language Processing (NLP) offers a powerful toolset for addressing and classifying instances of cyberbullying, enhancing our ability to detect and mitigate this harmful behavior. + +Key features: + +Text Analysis: NLP techniques enable the analysis of textual content in various online platforms such as social media, chat rooms, and forums. By examining the language used in these interactions, NLP algorithms can identify patterns associated with cyberbullying, including offensive language, threats, and personal attacks. + +Sentiment Analysis: Sentiment analysis, a subset of NLP, aids in discerning the emotional tone of messages. Cyberbullying often involves negative sentiments, and sentiment analysis can help classify messages as potentially harmful. Identifying aggressive or harmful sentiment is crucial in flagging instances of cyberbullying. + +Keyword Extraction: NLP models can extract keywords related to cyberbullying, including derogatory terms, slurs, and threatening language. Keyword extraction facilitates the identification of potentially harmful content, contributing to the classification process. + +Contextual Understanding: Understanding the context of a message is crucial for accurate classification. NLP models can be trained to consider contextual nuances, distinguishing between playful banter and genuine threats. This contextual understanding enhances the precision of cyberbullying classification. + +Machine Learning Models: Utilizing machine learning algorithms within the NLP framework allows for the development of robust classification models. By training on labeled datasets that include examples of cyberbullying, these models can learn to recognize and classify new instances of such behavior. + +Conclusion: In conclusion, the application of NLP in the classification of cyberbullying represents a significant step forward in addressing the challenges posed by online harassment. By leveraging the capabilities of NLP, we can develop more sophisticated and adaptive tools to create safer digital spaces.