Puyush commited on
Commit
81635ef
1 Parent(s): 345d654

Upload 7 files

Browse files
.gitattributes CHANGED
@@ -33,3 +33,6 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ glove.twitter.27B.100d.txt filter=lfs diff=lfs merge=lfs -text
37
+ Twitter_Review.csv filter=lfs diff=lfs merge=lfs -text
38
+ twitter_sentiment.keras filter=lfs diff=lfs merge=lfs -text
Project_Twitter_Analysis.ipynb ADDED
The diff for this file is too large to render. See raw diff
 
Twitter_Review.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:08cba6317a49528fcd074f9043aafcd5ad6c6be45ede159c4e36cec33af24afe
3
+ size 238803811
app.py ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import keras
2
+ import pickle
3
+ import tempfile
4
+ import numpy as np
5
+ import gradio as gr
6
+ import tensorflow as tf
7
+ from tensorflow.keras.layers import Layer
8
+ from tensorflow.keras import backend as K
9
+ from tensorflow.keras.preprocessing.sequence import pad_sequences
10
+
11
+
12
+ class Attention(Layer):
13
+
14
+ def __init__(self, return_sequences=True, **kwargs):
15
+ self.return_sequences = return_sequences
16
+ super(Attention, self).__init__(**kwargs)
17
+
18
+ def build(self, input_shape):
19
+
20
+ self.W=self.add_weight(name="att_weight", shape=(input_shape[-1],1),
21
+ initializer="normal")
22
+ self.b=self.add_weight(name="att_bias", shape=(input_shape[1],1),
23
+ initializer="zeros")
24
+
25
+ super(Attention,self).build(input_shape)
26
+
27
+ def call(self, x):
28
+
29
+ e = K.tanh(K.dot(x,self.W)+self.b)
30
+ a = K.softmax(e, axis=1)
31
+ output = x*a
32
+
33
+ if self.return_sequences:
34
+ return output
35
+
36
+ return K.sum(output, axis=1)
37
+
38
+
39
+
40
+ def load_tokenizer(path):
41
+ with open(path, 'rb') as f:
42
+ tokenizer = pickle.load(f)
43
+ return tokenizer
44
+
45
+
46
+ def label_tweet(test_review):
47
+ test_review = test_review.lower().strip()
48
+ token_list = tokenizer.texts_to_sequences([test_review])[0]
49
+ token_list = pad_sequences([token_list], maxlen=44, padding='post')
50
+ predicted = model.predict(token_list, verbose=0)
51
+ if predicted >= 0.5:
52
+ return 1
53
+ else:
54
+ return 0
55
+
56
+
57
+ def analyze_text(comment):
58
+
59
+ result = label_tweet(comment)
60
+ if result == 0:
61
+ text = "Negative"
62
+ else:
63
+ text = "Positive"
64
+ return text
65
+
66
+
67
+ # It can be used to reconstruct the model identically.
68
+ model = keras.models.load_model("twitter_sentiment.keras",
69
+ custom_objects={'Attention': Attention})
70
+
71
+ # Load tokenizer
72
+ tokenizer = load_tokenizer('tokenizer.pkl')
73
+
74
+ interface = gr.Interface(fn=analyze_text, inputs=gr.inputs.Textbox(lines=2, placeholder='Enter a positive or negative tweet here...'),
75
+ outputs='text',title='Twitter Sentimental Analysis', theme='darkhuggingface')
76
+ interface.launch(inline=False)
glove.twitter.27B.100d.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dc4cf7b54eae01fa483be0ba51e3d74ecfd880e0a2fbc67f3277bc128d7352cd
3
+ size 1021669379
slangs_translation.csv ADDED
@@ -0,0 +1,3358 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ acronym,expansion
2
+ 2day,today
3
+ 2m2h,too much too handle
4
+ 2moro,tomorrow
5
+ 2nite,tonight
6
+ 4eae,for ever and ever
7
+ aaf,as a friend
8
+ aar,at any rate
9
+ aayf,as always your friend
10
+ abd,already been done
11
+ ack,acknowledge
12
+ adih,another day in hell
13
+ adn,any day now
14
+ adr,address
15
+ aeap,as early as possible
16
+ afaic,as far as i am concerned
17
+ afaik,as far as i know
18
+ aka,also known as
19
+ ama,ask me anything
20
+ ambw,all my best wishes
21
+ aml,all my love
22
+ aota,all of the above
23
+ asap,as soon as possible
24
+ atb,all the best
25
+ ateotd,at the end of the day
26
+ atm,at the moment
27
+ awol,absent without leave
28
+ aydy,are you done yet
29
+ ayec,at your earliest convenience
30
+ ayor,at your own risk
31
+ ays,are you serious
32
+ aysos,are you stupid or something
33
+ ayt,are you there
34
+ b/c,because
35
+ b4,before
36
+ b4n,bye for now
37
+ bau,business as usual
38
+ bbiaf,be back in a few
39
+ bbiam,be back in a minute
40
+ bbias,be back in a sec
41
+ bbs,be back soon
42
+ bbt,be back tomorrow
43
+ bcnu,be seeing you
44
+ bcoy,big crush on you
45
+ bd,big deal
46
+ bf,boy friend
47
+ bfaw,best friend at work
48
+ bfd,big freaking deal
49
+ bff,best friends forever
50
+ bffn,best friend for now
51
+ bfn,bye for now
52
+ bg,big grin
53
+ bgwm,be gentle with me
54
+ bhl8,be home late
55
+ bib,boss is back
56
+ bn,bad news
57
+ bol,be on later
58
+ bot,back on topic
59
+ boyf,boyfriend
60
+ brb,be right back
61
+ brh,be right here
62
+ bro,brother
63
+ brt,be right there
64
+ bt,but
65
+ btw,by the way
66
+ byoc,bring your own computer
67
+ cmb,call me back
68
+ cmiiw,correct me if i am wrong
69
+ cob,close of business
70
+ csl,cannot stop laughing
71
+ cu,see you
72
+ cua,see you around
73
+ cul,see you later
74
+ cwyl,chat with you later
75
+ cya,cover your ass
76
+ cye,check your e mail
77
+ cyo,see you online
78
+ dkdc,do not know do not care
79
+ dm,direct message
80
+ dts,do not think so
81
+ dur,do you remember
82
+ dwbh,do not worry be happy
83
+ e1,everyone
84
+ ef4t,effort
85
+ eod,end of discussion
86
+ f2f,face to face
87
+ ftf,face to face
88
+ faq,frequently asked questions
89
+ fb,facebook
90
+ ff,follow friday
91
+ fish,first in still here
92
+ fitb,fill in the blank
93
+ ftbomh,from the bottom of my heart
94
+ ftl,for the loss
95
+ ftw,for the win
96
+ fwb,friend with benefits
97
+ fwiw,for what it is worth
98
+ fyeo,for your eyes only
99
+ fyi,for your information
100
+ g4c,going for coffee
101
+ ga,go ahead
102
+ gac,get a clue
103
+ gas,greetings and salutations
104
+ gb,goodbye
105
+ gbu,god bless you
106
+ gf,girl friend
107
+ gfn,gone for now
108
+ glhf,good luck have fun
109
+ gmta,great minds think alike
110
+ gnite,good night
111
+ gr8,great
112
+ gratz,congratulations
113
+ grl,girl
114
+ gtsy,good to see you
115
+ h&k,hugs and kisses
116
+ h2cus,hope to see you soon
117
+ h8,hate
118
+ hag1,have a good one
119
+ hagn,have a good night
120
+ hand,have a nice day
121
+ hawt,have a wonderful day
122
+ hmb,hit be back
123
+ hmu,hit me up
124
+ hoas,hold on a second
125
+ hru,how are you
126
+ ht,hat tip or heard through
127
+ hth,hope this helps
128
+ hw,homework
129
+ iac,in any case
130
+ iae,in any event
131
+ ianal,i am not a lawyer
132
+ iao,i am out
133
+ ic,i see
134
+ icymi,in case you missed it
135
+ idc,i do not care
136
+ ihni,i have no idea
137
+ iirc,if i remember correctly
138
+ ikr,i know right
139
+ ily,i love you
140
+ im,instant message
141
+ imho,in my humble opinion
142
+ imo,in my opinion
143
+ ims,i am sorry
144
+ irl,in real life
145
+ isly,i still love you
146
+ iso,in search of
147
+ iu2u,it is up to you
148
+ iykwim,if you know what i mean
149
+ j/k,just kidding
150
+ j4f,just for fun
151
+ jff,just for fun
152
+ jic,just in case
153
+ jlmk,just let me know
154
+ jmo,just my opinion
155
+ jsyk,just so you know
156
+ jw,just wondering
157
+ k,okay
158
+ kk,okay
159
+ kiss,keep it simple stupid
160
+ kit,keep in touch
161
+ l8,late
162
+ l8r,later
163
+ lho,laughing head off
164
+ lmao,laughing my ass off
165
+ lmbo,laughing my butt off
166
+ lmk,let me know
167
+ lol,lots of love
168
+ lol,laughing out loud
169
+ loti,laughing on the inside
170
+ ltns,long time no see
171
+ lylas,love you like a sister
172
+ lysm,love you so much
173
+ mc,merry christmas
174
+ mgmt,management
175
+ mm,music monday
176
+ msm,mainstream media
177
+ mu,miss you
178
+ myob,mind your own business
179
+ nagi,not a good idea
180
+ nfm,not for me
181
+ nfs,not for sale
182
+ nm,nothing much
183
+ nm,not much
184
+ noyb,none of your business
185
+ np,no problem
186
+ nsfl,not safe for life
187
+ nsfw,not safe for work
188
+ nts,note to self
189
+ nvm,never mind
190
+ oh,overheard
191
+ oic,oh i see
192
+ omg,oh my god
193
+ omw,on my way
194
+ orly,oh really
195
+ ot,off topic
196
+ otb,off to bed
197
+ otoh,on the other hand
198
+ otp,on the phone
199
+ ott,over the top
200
+ paw,parents are watching
201
+ pcm,please call me
202
+ pls,please
203
+ pov,point of view
204
+ ppl,people
205
+ ptb,please text back
206
+ ptmm,please tell me more
207
+ qq,crying
208
+ rak,random act of kindness
209
+ rbtl,read between the lines
210
+ rip,rest in peace
211
+ rl,real life
212
+ rofl,rolling on the floor laughing
213
+ rt ,real time
214
+ rtm,read the manual
215
+ rys,are you single
216
+ sby,somebody
217
+ sfaik,so far as i know
218
+ sh,shit happens
219
+ simyc,sorry i missed your call
220
+ sis,sister
221
+ sitd,still in the dark
222
+ smh,shaking my head
223
+ sol,sooner or later
224
+ srsly,seriously
225
+ sry,sorry
226
+ ssdd,same stuff different day
227
+ stby,sucks to be you
228
+ swak,sealed with a kiss
229
+ swyp,so what is your problem
230
+ tafn,that is all for now
231
+ tba,to be announced
232
+ tbc,to be continued
233
+ tbh,to be honest
234
+ tbl,text back later
235
+ tcb,take care of business
236
+ tfh,thread from hell
237
+ tfs,thanks for sharing
238
+ tfti,thanks for the invitation
239
+ tgif,thank god it is friday
240
+ thx,thanks
241
+ tia,thanks in advance
242
+ tiad,tomorrow is another day
243
+ time,tears in my eyes
244
+ tlc,tender loving care
245
+ tlk2ul8r,talk to you later
246
+ tmi,too much information
247
+ tmrw,tomorrow
248
+ ttyl,talk to you later
249
+ ttys,talk to you soon
250
+ tyfyc,thank you for your comment
251
+ tyvm,thank you very much
252
+ u4e,you forever
253
+ ur,your
254
+ vat,value added tax
255
+ vbg,very big grin
256
+ vsf,very sad face
257
+ wam,wait a minute
258
+ wb,welcome back
259
+ wc,who cares
260
+ we,whatever
261
+ weg,wicked evil grin
262
+ witp,what is the point
263
+ wknd,weekend
264
+ wtf,what the fuck
265
+ wth,what the heck
266
+ wtpa,where the party at
267
+ wuf,where are you from
268
+ wycm,will you call me
269
+ wywh,wish you were here
270
+ xlnt,excellent
271
+ xoxo,hugs and kisses
272
+ ycmu,you crack me up
273
+ ygm,you have got mail
274
+ ymmv,your mileage may vary
275
+ yolo,you only live once
276
+ ytb,you are the best
277
+ yw,you are welcome
278
+ ywsyls,you win some you lose some
279
+ aab,average at best
280
+ aac,apple audio compression
281
+ aaf,always and forever
282
+ aak,alive and kicking
283
+ aamof,as a matter of fact
284
+ aap,always a pleasure
285
+ aar,at any rate
286
+ aarp,american association of retired persons
287
+ aat,and another thing at all times
288
+ aawy,and also with you
289
+ aayf,as always your friend
290
+ abc,american born chinese
291
+ abd,already been done
292
+ abdc,americas best dance crew
293
+ abf,all but face
294
+ abfab,absolutely fabulous
295
+ abg,asian baby girl
296
+ abh,actual bodily harm
297
+ abp,already been posted
298
+ abu,anyone but united
299
+ ac,air conditioning alternating current
300
+ aclu,american civil liberties union
301
+ acme,a company that makes everything
302
+ acp,automatic colt pistol
303
+ acta,anti counterfeiting trade agreement
304
+ acu,army combat uniform
305
+ ad,anno domini
306
+ adad,another day another dollar
307
+ add,attention deficit disorder
308
+ aded,all day every day
309
+ adgth,all dogs go to heaven
310
+ adhd,attention deficit hyperactivity disorder
311
+ adl,all day long
312
+ adn,any day now
313
+ adr,all due respect
314
+ ads,aim down sights
315
+ adsl,asymmetric digital subscriber line
316
+ adtr,a day to remember
317
+ ae,american eagle
318
+ aeae,and ever and ever
319
+ aeap,as early as possible
320
+ afaia,as far as i am aware
321
+ afaiaa,as far as i am aware
322
+ afaiac,as far as i am concerned
323
+ afaic,as far as i am concerned
324
+ afaics,as far as i can see
325
+ afaict,as far as i can tell
326
+ afaik,as far as i know
327
+ afair,as far as i remember
328
+ afap,as far as possible
329
+ afc,away from computer
330
+ affa,angels forever forever angels
331
+ afi,a fire inside
332
+ afk,away from keyboard
333
+ afl,australian football league
334
+ afn,all for now
335
+ afp,away from phone
336
+ afrl,away from real life
337
+ afs,always forever and seriously
338
+ agc,automatic gain control
339
+ agh,are not going to happen
340
+ agm,annual general meeting
341
+ agp,accelerated graphics port
342
+ agt,americas got talent
343
+ agw,all going well
344
+ ai,artificial intelligence as if
345
+ aib,am i boverd
346
+ aids,acquired immune deficiency syndrome
347
+ aigf,all in good fun
348
+ aiic,as if i care
349
+ aikrn,all i know right now
350
+ aimh,always in my heart
351
+ ainec,and it is not even close
352
+ aio,all in one
353
+ aisb,as i said before
354
+ aisi,as i see it
355
+ aitr,adult in the room
356
+ aityd,and i think you do
357
+ aiui,as i understand it
358
+ aiyc,as if you care
359
+ aj,apple juice
360
+ aktf,always keep the faith
361
+ alf,animal liberation front
362
+ alg,are not life grand
363
+ alihal,at least i have a life
364
+ alkqn,almighty latin king and queen nation
365
+ alol,actually laughing out loud
366
+ alotbsol,always look on the bright side of life
367
+ alu,arithmetic logic unit
368
+ alwp,actual laughter was produced
369
+ am,ante meridiem amplitude modulation
370
+ ama,ask me anything against medical advice
371
+ amaa,ask me almost anything
372
+ amap,as much as possible
373
+ amc,american motors corportation
374
+ amd,advanced micro devices
375
+ amg,ah my god
376
+ aml,all my love
377
+ amn,any minute now
378
+ amof,as a matter of fact
379
+ amog,alpha male of group
380
+ amt,alpha methyltryptamine
381
+ amv,anime music video
382
+ amw,americas most wanted
383
+ an,authors note
384
+ anc,african national congress
385
+ anfawfos,and now for a word from our sponsor
386
+ anfscd,and now for something completely different
387
+ ansi,american national standards institute
388
+ antm,americas next top model
389
+ anzac,australian and new zealand army corps
390
+ ao,adults only
391
+ aob,any other business
392
+ aod,all of day
393
+ aoe,area of effect
394
+ aok,age of kings all ok
395
+ aom,age of mythology
396
+ aon,all or nothing as of now
397
+ aos,ahead of schedule
398
+ aot,as opposed to among other things
399
+ aota,all of the above
400
+ aots,attack of the show
401
+ aow,all out war
402
+ aoyp,angel on your pillow
403
+ ap,associated press
404
+ apb,all points bulletin
405
+ apc,armoured personnel carrier
406
+ api,application programming interface
407
+ apm,actions per minute
408
+ apn,as per normal
409
+ apo,authorized personnel only
410
+ apu,as per usual
411
+ apyr,as per your request
412
+ aq,adventure quest
413
+ aqap,as quickly as possible
414
+ aqf,ay que funny
415
+ ar,assault rifle
416
+ ark,act of random kindness
417
+ arpa,advanced research projects agency
418
+ arpanet,advanced research projects agency network
419
+ arpu,average revenue per user
420
+ asaic,as soon as i can
421
+ asaik,as soon as i know
422
+ asap,as soon as possible
423
+ asas,as soon as sensible
424
+ asat,as simple as that
425
+ asayc,as soon as you can
426
+ asbo,anti social behaviour order
427
+ ascii,american standard code for information interchange
428
+ aspca,american society for the prevention of cruelty to animals
429
+ at&t,american telephone and telegraph
430
+ ata,ait to air actual time of arrival
431
+ atap,any time any place
432
+ atb,all the best
433
+ atc,air traffic control
434
+ atd,attention to detail
435
+ ateotd,at the end of the day
436
+ atf,all time favorite
437
+ atgatt,all the gear all the time
438
+ ath,all time high
439
+ atm,at the moment automated teller machine
440
+ atmo,according to my opinion
441
+ atn,any time now
442
+ atoy,always thinking of you
443
+ atq,answer the question
444
+ atst,at the same time
445
+ att,at this time all the time
446
+ attt,are not that the truth
447
+ atv,all terrain vehicle
448
+ atvb,all the very best
449
+ atw,all the way
450
+ atwa,air trees water animals all the way alive
451
+ bac,back at computer blood alcohol content by any chance
452
+ bacs,bankers automated clearing system
453
+ bagl,bust a gut laughing
454
+ bah,bored as hell
455
+ bb,big brother be back
456
+ bb4n,bye bye for now
457
+ bbam,be back after meal
458
+ bbb,bugging beyond belief
459
+ bbbw,big beautiful black woman
460
+ bbc,british broadcasting corporation
461
+ bbeg,big bad evil guy
462
+ bbfl,best buds for life
463
+ bbfn,bye bye for now
464
+ bbg,best be going
465
+ bbiab,be back in a bit
466
+ bbiaf,be back in a few
467
+ bbiam,be back in a minute
468
+ bbias,be back in a sec
469
+ bbiaw,be back in a while
470
+ bbk,boy better know
471
+ bbl,be back later
472
+ bbm,blackberry messaging
473
+ bbml,be back much later
474
+ bbn,be back never
475
+ bbo,being bored online
476
+ bbq,barbecue better be quick
477
+ bbr,blonde brunette redhead
478
+ bbs,be back soon bulletin board system
479
+ bbt,be back tomorrow
480
+ bbv,brags beats and variance
481
+ bbw,big beautiful woman
482
+ bbwl,be back way later
483
+ bc,before christ
484
+ bcbw,bow chica bow wow
485
+ bcc,blind carbon copy
486
+ bcd,behind closed doors
487
+ bce,before common era
488
+ bcf,best cousin forever
489
+ bcg,birth control glasses
490
+ bcs,bowl championship series
491
+ bd,big deal
492
+ bdn,busy doing nothing
493
+ bdoml,best day of my life
494
+ bdu,brain dead user battle dress uniform
495
+ bfa,best friends always
496
+ bfab,born from a boombox back for a bit
497
+ bfam,brother from another mother
498
+ bfb,better from behind
499
+ bff,best friends forever
500
+ bffae,best friends forever and ever best friends for all eternity
501
+ bffl,best friend for life
502
+ bffle,best friends for like ever
503
+ bffltddup,best friends for life till death do us part
504
+ bffn,best friend for now
505
+ bffwb,best friend forever with benefits
506
+ bfitw,best friend in the world
507
+ bfk,big fat kiss
508
+ bfmv,bullet for my valentine
509
+ bfn,bye for now
510
+ bfp,bad for pics big fat positive ie pregnant
511
+ bftp,blast from the past
512
+ bfut,best friends until tomorrow
513
+ bfwb,best friend with benefits
514
+ bg,bad game baby gangster
515
+ bgd,black gangster disciples
516
+ bgf,best girl friend
517
+ bgl,big game license likes fat people
518
+ bgm,background music
519
+ bgt,britains got talent
520
+ bh,be happy bloody hell big head
521
+ bhd,bad hair day
522
+ bhh,bless her heart
523
+ bhl8,be home late
524
+ bhm,big handsome man
525
+ bho,barak hussein obama
526
+ bhs,be home soon
527
+ biab,back in a bit
528
+ bic,believe it comrade
529
+ bicbw,but i could be wrong
530
+ bieh,best i ever had
531
+ biffl,best internet friend for life
532
+ bing,but it is not google
533
+ bm,bowel movement black man bmw
534
+ bm4l,best mates for life
535
+ bmak,blow me a kiss
536
+ bmb,bebo me back
537
+ bmbo,blow my brains out
538
+ bme,body modification ezine
539
+ bmfe,best mates forever
540
+ bmfl,best mates for life
541
+ bmg,be my guest
542
+ bmi,body mass index
543
+ bml,bless my life
544
+ bmoc,big man on campus
545
+ bms,bitchy men syndrome
546
+ bmt,before my time basic military training
547
+ bmth,bring me the horizon
548
+ bmttve,best mates til the very end
549
+ bmus,beam me up scotty
550
+ bmv,be my valentine
551
+ bmw,bavarian motor works
552
+ bmx,bicycle motocross
553
+ bnb,bad news bears bed n breakfast bread n butter
554
+ bnf,big name fan
555
+ bni,batteries not included
556
+ bnib,brand new in box
557
+ bnoc,big name on campus
558
+ bnp,british national party
559
+ bnr,but not really
560
+ bnwot,brand new without tags
561
+ bnwt,brand new with tags
562
+ bo,body odour
563
+ boat,bust out another thousand
564
+ bobfoc,body off baywatch face off crimewatch
565
+ boed,book of exalted deeds
566
+ bogo,buy one get one
567
+ bogof,buy one get one free
568
+ bogsat,bunch of guys sitting around talking
569
+ cc,credit card carbon copy crowd control country code
570
+ ccc,coricidin cough and cold
571
+ ccg,collectible card game
572
+ ccie,cisco certified internetwork expert
573
+ ccl,could not care less
574
+ ccna,cisco certified network associate
575
+ ccr,creedence clearwater revival
576
+ cctv,closed circuit television
577
+ ccw,counterclockwise carrying a concealed weapon
578
+ cd,compact disc cross dresser
579
+ cdc,cult of the dead cow crudely drawn cock
580
+ cdma,code division multiple access
581
+ cd rw,compact disk rewritable
582
+ clwy,cannot live without you
583
+ cm,call me
584
+ cmar,cry me a river
585
+ cmb,call me back
586
+ cme,close my eyes
587
+ cmeo,crying my eyes out
588
+ cmh,cross my heart
589
+ cmho,cry my heart out
590
+ cmi,count me in
591
+ cmiiw,correct me if i am wrong
592
+ cmiyc,catch me if you can
593
+ cml,call me later
594
+ cmn,call me now
595
+ cmos,complementary metal oxide semiconductor
596
+ cms,content management system
597
+ cmu,cracks me up
598
+ cmyk,cyan magenta yellow key
599
+ cnn,cable news network
600
+ cny,chinese new year
601
+ co,commanding officer corrections officer company counter offer
602
+ coa,certificate of authenticity
603
+ cod,cash on delivery call of duty
604
+ col,crying out loud
605
+ crb,criminal records bureau
606
+ crbt,crying real big tears
607
+ cwtsy,cannot wait to see you
608
+ cwyl,chat with you later
609
+ cyb,count your blessings
610
+ cybi,can you believe it
611
+ cydi,can you dig it
612
+ cydm,check your direct messages
613
+ cye,check your email
614
+ cyf,cross your fingers
615
+ cyl,catch you later
616
+ cym,check your mail
617
+ dln,do not look now
618
+ dls,dirty little secret
619
+ dltbbb,do not let the bed bugs bite
620
+ dltbgyd,do not let the bastards grind you down
621
+ dltm,do not lie to me
622
+ dlv,demonstration of lower value
623
+ dm,do not mind does not matter direct message
624
+ dmaf,do not make a fuss
625
+ dmal,drop me a line
626
+ dmb,dave matthews band
627
+ dmc,deep meaningful conversation
628
+ dmca,digital millennium copyright act
629
+ dmi,do not mention it
630
+ dmiid,do not mind if i do
631
+ dmm,do not mind me
632
+ dmml,do not make me laugh
633
+ dms,dirty money syndicate
634
+ dmt,di methyl tryptamine
635
+ dmta,dirty minds think alike
636
+ dmv,department of motor vehicles
637
+ dmw,dead man walking
638
+ dmx,dark man x
639
+ dmy,do not mess yourself
640
+ dmz,de militarized zone
641
+ dn,doing nothing
642
+ dna,deoxyribonucleic acid did not attend does not apply
643
+ dnc,democratic national committee
644
+ dnd,do not disturb
645
+ dndc,do not know do not care
646
+ dne,do not erase does not exist
647
+ dnf,did not finish
648
+ dnftt,do not feed the troll
649
+ dnk,do not know
650
+ dnm,does not matter deep and meaningful
651
+ dnp,do not post
652
+ dnr,do not resuscitate
653
+ dns,domain name service did not start
654
+ dntk,do not need to know
655
+ dnw,do not want
656
+ doa,dead on arrival deteriorate on approach
657
+ dob,date of birth
658
+ doc,doctor drug of choice
659
+ dod,day of defeat
660
+ doe,depends on experience
661
+ dof,depth of field
662
+ dofl,dying on floor laughing
663
+ drt,dead right there
664
+ ds,darling son
665
+ dsd,do some damage
666
+ dsl,digital subscriber line
667
+ dslr,digital single lens reflex
668
+ dsp,digital signal processing
669
+ dss,department of social services
670
+ dst,daylight saving time
671
+ dt,down town
672
+ dta,do not trust anyone
673
+ dtam,death to all men
674
+ dtb,do not text back
675
+ dtc,down to cuddle
676
+ dtd,drunk till dawn drunk till death
677
+ dte,down to earth
678
+ dth,down to hang
679
+ dtl,does the look
680
+ dtm,doing too much dead to me
681
+ dtms,does that make sense
682
+ dtmwtd,do not tell me what to do
683
+ dtp,disturbing the peace
684
+ dtr,define the relationship
685
+ dtrt,do the right thing
686
+ dts,down the shore down to snuggle
687
+ dtt,do not touch that
688
+ dttc,do not text the cell
689
+ dttm,do not talk to me
690
+ dtyt,do not take your time
691
+ ebm,electronic body music
692
+ ebt,electronic benefits transfer
693
+ elol,evil laugh out loud
694
+ eob,end of business
695
+ eoc,end of conversion
696
+ eod,end of discussion
697
+ eoe,equal opportunity employer
698
+ eof,end of file
699
+ eog,end of grade
700
+ eol,end of lecture
701
+ eom,end of message
702
+ eor,end of rant
703
+ eos,end of show
704
+ eot,end of thread
705
+ eotd,end of the day
706
+ eotw,end of the world
707
+ eotwawki,end of the world as we know it
708
+ eow,end of watch
709
+ epos,electronic point of sale
710
+ eprom,electronically programmable rom
711
+ erp,erotic role play
712
+ esa,european space agency
713
+ esb,empire stikes back
714
+ esd,electro static discharge
715
+ esl,english as second language
716
+ esol,english for speakers of other languages
717
+ esp,extra sensory perception
718
+ espn,entertainment and sports programming network
719
+ esrb,entertainment software rating board
720
+ est,eastern standard time established
721
+ estd,easier said than done
722
+ et,extra terrestrial
723
+ eta,estimated time of arrival edited to add
724
+ etc,et cetera
725
+ etd,estimated time of departure
726
+ etf,escape the fate
727
+ etid,everytime i die
728
+ etw,enjoy the weekend
729
+ eu,european union
730
+ eua,end user agreement
731
+ euc,excellent used condition
732
+ eula,end user license agreement
733
+ ev,expected value
734
+ fya,for your amusement
735
+ fyc,for your convenience for your consideration
736
+ fye,for your entertainment
737
+ fyeo,for your eyes only
738
+ fyi,for your information
739
+ fyk,for your knowledge
740
+ fym,free your mind
741
+ fyp,fixed your post
742
+ fyr,for your review for your records
743
+ fyt,for your time
744
+ g o a t,greatest of all time
745
+ ga,go ahead
746
+ gac,guilty as charged get a clue
747
+ gafia,get away from it all
748
+ gafm,get away from me
749
+ gb,great britain gigabyte
750
+ gba,god bless america
751
+ gbfn,goodbye for now
752
+ gbh,grievous bodily harm
753
+ gbml,good bye my love
754
+ gbnf,gone but not forgotten
755
+ gbp,great british pounds
756
+ gbtm,get back to me
757
+ gbtw,get back to work
758
+ gbu,god bless you
759
+ gbwy,god be with you
760
+ gby,god bless you
761
+ gc,good contition
762
+ gcf,good clean fun
763
+ gcmg,god calls me god
764
+ gcse,general certificate of secondary education
765
+ gcwok,gay couple without kids
766
+ gd,gangsta disciple
767
+ gdfr,going down for real
768
+ gdi,god damn it
769
+ gdp,gross domestic product
770
+ ge,good evening
771
+ ged,general educational development
772
+ gfa,grenade free america
773
+ gfak,go fly a kite
774
+ gfc,global financial crisis
775
+ gfete,grinning from ear to ear
776
+ gff,grenade free foundation
777
+ gfi,go for it
778
+ gfn,gone for now
779
+ gfp,good for pics
780
+ gftw,go for the win
781
+ gfu,good for you
782
+ gfwl,games for windows live
783
+ gfy,good for you
784
+ gg,good game
785
+ gga,good game all
786
+ ggbb,good game bye bye
787
+ ggg,good giving and game
788
+ ggn,got to go now
789
+ ggnore,good game no rematch
790
+ ggoh,got to get outta here
791
+ gh,guitar hero
792
+ ghb,gamma hydroxybutyrate
793
+ ghd,good hair day
794
+ giwist,gee i wish i would said that
795
+ giy,google it yourself
796
+ giyf,google is your friend
797
+ gj,good job
798
+ gjoac,go jump off a cliff
799
+ gjwhf,girls just want to have fun
800
+ gk,good kid
801
+ gky,go kill yourself
802
+ gl,good luck good looking
803
+ gl hf,good luck have fun
804
+ gla,good luck all
805
+ glag,giggling like a girl
806
+ glotr,good luck on the rebuild
807
+ glta,good luck to all
808
+ glty,good luck to you
809
+ glu,girls like us
810
+ glws,good luck with sale
811
+ glwt,good luck with that
812
+ gm,general motors good morning genetically modified good move
813
+ gma,good morning america
814
+ gmab,give me a break
815
+ gmt,greenwich mean time
816
+ gmta,great minds think alike
817
+ gmv,got my vote
818
+ gmy,good man yourself
819
+ gn,good night
820
+ gnd,girl next door
821
+ gne,good night and everything
822
+ gnfb,good night facebook
823
+ gnsd,good night sweet dreams
824
+ goat,greatest of all time
825
+ gomer,get out of my emergency room unwelcome patient
826
+ gomf,get outta my face
827
+ goml,get on my level
828
+ goomf,get out of my face
829
+ gooml,get out of my life
830
+ gop,grand old party
831
+ gp,general principle
832
+ gpa,grade point average
833
+ gpc,generic pack of cigarettes
834
+ gpl,general public license
835
+ gpoy,gratuitous picture of yourself
836
+ gpoyw,gratuitous picture of yourself wednesday
837
+ gprs,general packet radio services
838
+ gps,global positioning system
839
+ gpu,graphics processing unit
840
+ gr,got to run
841
+ gsd,getting stuff done
842
+ gsm,global system for mobile communications
843
+ gsoh,good sense of humor
844
+ gsr,gun shot residue
845
+ gstq,god save the queen
846
+ gsw,gun shot wound
847
+ gtb,go to bed
848
+ gtbb,good to be back
849
+ gtbosh,glad to be of some help
850
+ gtd,getting things done
851
+ gtg,got to go
852
+ gtgg,got to get going
853
+ gth,go to hell
854
+ gthba,good times had by all
855
+ gtho,get the hell out
856
+ gtk,good to know
857
+ gtm,giggling to myself
858
+ gto,gran turismo omologato
859
+ gtrm,going to read mail
860
+ gtsy,good to see you
861
+ gtts,got the t shirt
862
+ gtw,got to work
863
+ gu,grow up
864
+ guti,get used to it
865
+ gw,good work
866
+ gwas,game was a success
867
+ gwc,guy with camera
868
+ gwg,girl with glasses
869
+ gwi,get with it
870
+ gwk,game winning kill
871
+ gwp,gift with purchase
872
+ gwr,guinness world records
873
+ gws,get well soon
874
+ gwtf,go with the flow
875
+ gwtp,get with the program
876
+ gyaldem,group of girls
877
+ gyc,get your coat
878
+ gyfs,get your facts straight
879
+ gyo,get your own
880
+ gyt,get yourself tested
881
+ hagd,have a good day
882
+ hage,have a good evening
883
+ hagl,have a good life
884
+ hagn,have a good night
885
+ hago,have a good one
886
+ hags,have a great summer
887
+ hagt,have a great time
888
+ haistk,how am i supposed to know
889
+ hand,have a nice day
890
+ hawt,hot having a wonderful time
891
+ hay,how are you
892
+ hayd,how are you doing
893
+ hayt,how are you today
894
+ hbd,happy birthday
895
+ hbk,heart break kid
896
+ hbn,how about now
897
+ hbo,home box office
898
+ hbp,half blood prince
899
+ hbt,how bout that
900
+ hbtu,happy birthday to you
901
+ hbty,happy birthday to you
902
+ hby,how about you
903
+ hc,holy cow
904
+ hcdajfu,he could do a job for us
905
+ hcit,how cool is that
906
+ hd,high definition
907
+ hdd,hard disk drive
908
+ hdmi,high definition multimedia interface
909
+ hdth,how did that happen
910
+ hdtv,high definition television
911
+ hdy,how dare you
912
+ hdyd,how do you do
913
+ hdydt,how did you do that
914
+ hdyk,how do you know
915
+ he,happy ending high explosives
916
+ hea,happily ever after
917
+ henry,high earner not rich yet
918
+ hf,have fun
919
+ hffa,hot from far away
920
+ hfgl,have fun good luck
921
+ hfy,here for you happy for you
922
+ hg,holy grail
923
+ hgh,haters going to hate
924
+ hgi,how goes it
925
+ hgl,happy go lucky
926
+ hgtv,home and garden television
927
+ hgv,heavy goods vehicle
928
+ hh,holding hands
929
+ hhis,hanging head in shame
930
+ hhoj,ha ha only joking
931
+ hhok,ha ha only kidding
932
+ hhvf,ha ha very funny
933
+ hhww,holding hands while walking
934
+ hig,how is it going
935
+ hiik,hell if i know
936
+ himym,how i met your mother
937
+ hiv,human immunodeficiency virus
938
+ hiwth,hate it when that happens
939
+ hjntiy,he is just not that into you
940
+ hk,hong kong hostile kids
941
+ hl,half life
942
+ hlas,hook line and sinker
943
+ hmb,hit me back
944
+ hmi,human machine interface
945
+ hmihy,how may i help you
946
+ hml,hate my life
947
+ hmp,help me please
948
+ hms,her majestys ship
949
+ hmu,hit me up
950
+ hmul,hit me up later
951
+ hmv,his masters voice
952
+ hng,horny net geek
953
+ hnos,home network operating system
954
+ hnr,hit n run
955
+ hny,happy new year
956
+ ho,hold on head office
957
+ hoa,home owners association
958
+ hoas,hold on a second
959
+ hoay,how old are you
960
+ hof,hall of fame heavy on flag
961
+ hog,harley owner group
962
+ hoh,head over heels hard of hearing
963
+ holland,hope our love lasts and never dies
964
+ hov,high occupancy vehicle
965
+ howdy,how do you do
966
+ hp,harry potter
967
+ hq,high quality
968
+ hr,human resources
969
+ hrc,human rights campaign
970
+ hrh,her royal highness
971
+ hsbc,hong kong and shanghai banking corporation
972
+ hsh,home sweet home
973
+ hsik,how should i know
974
+ hsit,how sad is that
975
+ hsl,hue saturation lightness
976
+ hsm,high school musical
977
+ hsp,highly sensitive person
978
+ hspda,high speed packet data access
979
+ hst,high speed train
980
+ hsv2,herpes simplex virus 2
981
+ ht,hat tip home time handheld transceiver
982
+ htbt,had to be there
983
+ htc,hit the cell
984
+ hte,hard to explain
985
+ htg,hard to get
986
+ hth,hope that helps how the hell
987
+ hthfys,hope to hear from you soon
988
+ htm,hand to mouth
989
+ html,hypertext markup language
990
+ htsys,hope to see you soon
991
+ http,hyper text transfer protocol
992
+ https,hyper text transfer protocol secure
993
+ httr,hail to the redskins
994
+ hu,hollywood undead
995
+ hua,heard understood acknowledged
996
+ hvac,heating ventilating air conditioning
997
+ hvd,happy valentines day
998
+ hwb,hottie with body
999
+ hwga,here we go again
1000
+ hwp,height weight proportional
1001
+ hwsnbn,he who shall not be named
1002
+ hwu,hey what is up
1003
+ hwyd,how was your day
1004
+ hyb,how you been
1005
+ hyd,how ya doing
1006
+ hyfb,hope you feel better
1007
+ hyg,here you go
1008
+ hyh,have you heard hold your horses
1009
+ hyip,high yield investment program
1010
+ hyp,harvard yale princeton
1011
+ hys,have your say
1012
+ hyu,hit you up
1013
+ ia,i agree
1014
+ iab,i am bored
1015
+ iabw,in a bad way
1016
+ iac,in any case
1017
+ iad,it all depends
1018
+ iae,in any event
1019
+ iag,it is all good
1020
+ iak,i already know
1021
+ ial,i are not laughing i actually laughed
1022
+ ialto,i always love that one
1023
+ iama,i am mildly amused
1024
+ ianad,i am not a doctor
1025
+ ianal,i am not a lawyer
1026
+ ias,in a second
1027
+ iau,i adore you
1028
+ iaw,in accordance with i agree with
1029
+ iawtc,i agree with that comment
1030
+ iawtcsm,i agree with this comment so much
1031
+ iawtp,i agree with this post
1032
+ iay,i adore you
1033
+ ib,i am back
1034
+ ib2d,i beg to differ
1035
+ ib4tl,in before the lock
1036
+ iban,international bank account number
1037
+ ibb,i will be back
1038
+ ibk,idiot behind keyboard
1039
+ ibl,in before lock
1040
+ ibm,international business machines
1041
+ ibmts,i have been meaning to say
1042
+ ibs,irritable bowel syndrome
1043
+ ibtd,in before the delete i beg to differ
1044
+ ibtl,in before the lock
1045
+ ibuwu,i am breaking up with you
1046
+ ibw,i will be waiting
1047
+ ibyp,i beg your pardon
1048
+ icam,i could not agree more
1049
+ icay,i care about you
1050
+ icb,i cannot believe
1051
+ icbb,i cannot be bothered
1052
+ icbi,i cannot believe it
1053
+ icbinb,i cannot believe it is not butter
1054
+ icbm,intercontinental ballistic missile
1055
+ icbsst,i cannot believe she said that
1056
+ icbw,it could be worse
1057
+ icc,ice crown citadel
1058
+ iccl,i could not care less
1059
+ icr,i cannot remember
1060
+ icsl,i could not stop laughing
1061
+ icstay,i cannot stop thinking about you
1062
+ ict,information and communication technology
1063
+ icu,intensive care unit i see you
1064
+ icw,in connection with i cannot wait
1065
+ icydk,in case you did not know
1066
+ icymi,in case you missed it
1067
+ idbi,i do not believe it
1068
+ idby,i do not believe you
1069
+ idc,i do not care
1070
+ ide,integrated development environment integrated device electronics
1071
+ idec,i do not even care
1072
+ idek,i do not even know
1073
+ ideky,i do not even know you
1074
+ idewtk,i do not even want to know
1075
+ idfg,i do not feel good
1076
+ idfli,i do not feel like it
1077
+ idgad,i do not give a damn
1078
+ idghp,i do not get hashtag phrases i do not get his or her point i do not generally hate people
1079
+ idgi,i do not get it
1080
+ idhac,i do not have a clue
1081
+ idhtt,i do not have the time
1082
+ idi,i doubt it
1083
+ idj,i do not judge
1084
+ idk,i do not know
1085
+ idke,i do not know either
1086
+ idkw,i do not know why
1087
+ idkwtd,i do not know what to do
1088
+ idkwym,i do not know what you mean
1089
+ idky,i do not know why
1090
+ idl,i do not like
1091
+ idli,i do not like it
1092
+ idlt,i do not like that
1093
+ idly,i do not like you
1094
+ idm,it does not matter intelligent dance music
1095
+ idk,i do not know
1096
+ idnk,i do not know
1097
+ idr,i do not remember
1098
+ idrc,i do not really care
1099
+ idrk,i do not really know
1100
+ idst,if destroyed still true
1101
+ idt,i do not think
1102
+ idts,i do not think so
1103
+ idu,i do not understand
1104
+ idunno,i do not know
1105
+ idw,i do not want
1106
+ idwk,i do not want to know
1107
+ idwt,i do not want to
1108
+ idwtai,i do not want to talk about it
1109
+ idwtk,i do not want to know
1110
+ ie,id est internet explorer
1111
+ ied,improvised explosive device
1112
+ ieee,institute of electrical and electronics engineers
1113
+ iep,individualized education program
1114
+ ifm,in fond memory
1115
+ igi,i get it
1116
+ igm,i got mine
1117
+ igmc,i will get my coat
1118
+ ign,in game name
1119
+ ignb,i am going now bye
1120
+ ignts,i have got nothing to say
1121
+ igs,i guess so
1122
+ igtg,i got to go
1123
+ igu,i give up
1124
+ igwt,in god we trust
1125
+ igy,i get you
1126
+ igyb,i have got your back
1127
+ ih8u,i hate you
1128
+ ihac,i have a customer
1129
+ ihdk,i honestly do not know
1130
+ ihm,i hate mondays
1131
+ ihml,i hate my life
1132
+ ihnc,i have no clue
1133
+ ihni,i have no idea
1134
+ iho,in honor of
1135
+ ihop,international house of pancakes
1136
+ ihp,i hate people
1137
+ ihs,i hope so
1138
+ iht,i hate this
1139
+ ihy,i hate you
1140
+ ihydm,i hope you do not mind
1141
+ ihysm,i hate you so much
1142
+ iib,ignorance is bliss
1143
+ iifym,if it fits your macros
1144
+ iih,if i am honest
1145
+ iil,i am in love
1146
+ iinm,if i am not mistaken
1147
+ iir,idiot in room
1148
+ iirc,if i remember correctly
1149
+ iis,internet information services
1150
+ iituwutmas,if i tell you will you tell me a secret
1151
+ iitwi,in it to win it
1152
+ iitywimiwhtky,if i tell you what it means i will have to kill you
1153
+ iitywtmwybmad,if i tell you what this means will you buy me a drink
1154
+ iitywtmwykm,if i tell you what this means will you kiss me
1155
+ iitywybmad,if i tell you will you buy me a drink
1156
+ iiuc,if i understand correctly
1157
+ iiwii,it is what it is
1158
+ iiwy,if i were you
1159
+ ij,i am joking
1160
+ ijaf,it is just a fact
1161
+ ijdk,i just do not know
1162
+ ijg,i just giggled
1163
+ ijk,i am just kidding
1164
+ ijl,i just laughed
1165
+ ijs,i am just saying
1166
+ ijwtk,i just want to know
1167
+ ijwts,i just want to say
1168
+ ik,i know
1169
+ ikh,i know huh
1170
+ ikhyf,i know how you feel
1171
+ ikly,i kind of like you
1172
+ ikm,i know man
1173
+ ikmty,i know more than you
1174
+ ikn,i know not
1175
+ ikr,i know right
1176
+ ikt,i knew that
1177
+ iktf,i know the feeling
1178
+ iktr,i know that is right
1179
+ ikwum,i know what you mean
1180
+ ikwydls,i know what you did last summer
1181
+ ikwyl,i know where you live
1182
+ ikwym,i know what you mean
1183
+ iky,i know you
1184
+ ikyp,i will keep you posted
1185
+ il,in love
1186
+ ild,ich liebe dich
1187
+ ilh,i love him or her
1188
+ ili,i love it
1189
+ ilm,i lige m
1190
+ ilml,i love my life
1191
+ ilmo,in loving memory of
1192
+ ilny,i love new york
1193
+ ils,inflated lat syndrome
1194
+ ilt,i like that
1195
+ ily,i love you
1196
+ ily2,i love you too
1197
+ ilya,i love you all
1198
+ ilyaaf,i love you as a friend
1199
+ ilyam,i love you as a mate
1200
+ ilyb,i love you both
1201
+ ilyf,i will love you forever
1202
+ ilyg,i love you guys or girls
1203
+ ilyk,i will let you know
1204
+ ilyl,i love you lots
1205
+ ilylas,i love you like a sister
1206
+ ilylt,i love you long time
1207
+ ilym,i love you more
1208
+ ilysdm,i love you so damn much
1209
+ ilysm,i love you so much
1210
+ ilysmb,i love you so much baby
1211
+ ilysmm,i love you so much more
1212
+ ilyt,i love you too
1213
+ ilytb,i love you to bits
1214
+ ilyvm,i love you very much
1215
+ ilywamh,i love you with all my heart
1216
+ im,instant message
1217
+ imaho,in my absolutely honest opinion
1218
+ imao,in my arrogant opinion
1219
+ imap,internet message access protocol
1220
+ imbo,in my biased opinion
1221
+ imco,in my considered opinion
1222
+ imd,in my defence
1223
+ imdb,internet movie database
1224
+ ime,in my experience
1225
+ imeo,in my educated opinion
1226
+ imf,international monetary fund
1227
+ imh,in my head
1228
+ imho,in my humble opinion
1229
+ imk,in my knowledge
1230
+ immao,in my most arrogant opinion
1231
+ immd,it made my day
1232
+ imml,it made me laugh
1233
+ imnsho,in my not so humble opinion
1234
+ imo,in my opinion
1235
+ imoo,in my own opinion
1236
+ imp,it is my pleasure
1237
+ impo,in my personal opinion
1238
+ imr,i mean really
1239
+ ims,irritable male syndrome
1240
+ imsmr,if memory serves me right
1241
+ imu,i miss you
1242
+ imusm,i miss you so much
1243
+ imvu,instant messaging virtual universe
1244
+ imwtk,inquiring minds want to know
1245
+ imy,i miss you
1246
+ imya,i miss you already
1247
+ imym,i miss you more
1248
+ imysm,i miss you so much
1249
+ imyt,i miss you too
1250
+ inah,i need a hug
1251
+ inb,i am not bothered
1252
+ inbd,it is no big deal
1253
+ incydk,in case you did not know
1254
+ inpo,in no particular order
1255
+ inrs,it is not rocket science
1256
+ ins,i am not sure
1257
+ intk,i need to know
1258
+ intp,introverted intuitive thinking perceiving
1259
+ invu,i envy you
1260
+ inwly,i never want to lose you
1261
+ iny,i need you
1262
+ ioab,i am on a boat
1263
+ ioc,international olympic committee
1264
+ ioh,i am outta here
1265
+ ioi,indication of interest i am over it
1266
+ ioic,if only i could
1267
+ iokiyar,it is okay if you are a republican
1268
+ iom,isle of man
1269
+ iomw,i am on my way
1270
+ ion,in other news
1271
+ iou,i owe you
1272
+ iow,in other words
1273
+ ioyk,if only you knew
1274
+ ip,internet protocol intellectual property
1275
+ ipa,india pale ale internet protocol address
1276
+ ipc,ignore post count
1277
+ ipo,initial public offering
1278
+ iq,intelligence quotient
1279
+ ir,infrared injured reserve
1280
+ ira,irish republican army
1281
+ irah,insert relevant acronym here
1282
+ irc,internet relay chat
1283
+ irdc,i really do not care
1284
+ irdk,i really do not know
1285
+ irl,in real life
1286
+ irly,i really like you
1287
+ irmc,i rest my case
1288
+ irs,internal revenue service
1289
+ isb,i am so bored
1290
+ isbn,international standard book number
1291
+ isdk,i simply do not know
1292
+ isdn,integrated services digital network
1293
+ ishk,i should have known
1294
+ isly,i still love you
1295
+ iso,in search of
1296
+ isp,internet service provider
1297
+ iss,international space station i am so sorry
1298
+ issn,international standard serial number
1299
+ istatoy,i saw this and thought of you
1300
+ istg,i swear to god
1301
+ istm,it seems to me
1302
+ istr,i seem to recall
1303
+ iswydt,i see what you did there
1304
+ iswym,i see what you mean
1305
+ it,information technology
1306
+ ita,i totally agree
1307
+ itai,i will think about it
1308
+ italy,i trust and love you
1309
+ itc,in this channel in that case
1310
+ itf,in the future
1311
+ itg,in the groove
1312
+ itiailwy,i think i am in love with you
1313
+ itiky,i think i know you
1314
+ itilu,i think i love you
1315
+ itily,i think i love you
1316
+ itk,in the know
1317
+ itm,in the mouth
1318
+ itma,it is that man again
1319
+ itn,i think not
1320
+ ito,in terms of
1321
+ itoy,i am thinking of you
1322
+ itp,inside the perimeter
1323
+ its,i think or thought so
1324
+ itso,in the style of
1325
+ itt,in this thread
1326
+ ittet,in these tough economic times
1327
+ itv,independent tv
1328
+ itwym,is that what you mean
1329
+ ityf,i think you will find
1330
+ ityl,i will tell you later
1331
+ itym,i think you mean
1332
+ itys,i told you so
1333
+ ivf,in vitro fertilization
1334
+ iwaly,i will always love you
1335
+ iwbb,i will be back
1336
+ iwc,internet wrestling community
1337
+ iwhi,i would hit it
1338
+ iwid,it is what i do
1339
+ iwik,i wish i knew
1340
+ iwiwt,i wish i were there
1341
+ iwm,it was not me
1342
+ iwoot,i want one of those
1343
+ iwtd,i want to die
1344
+ iwy,i want you
1345
+ iyam,if you ask me
1346
+ iybtyba,if you believe that you will believe anything
1347
+ iyd,in your dreams
1348
+ iydk,if you did not know
1349
+ iydm,if you do not mind
1350
+ iyf,in your face
1351
+ iygm,if you get me
1352
+ iyh,in your head
1353
+ iykwim,if you know what i mean
1354
+ iyl,if you are lucky it is your life
1355
+ iyo,in your opinion
1356
+ iyss,if you say so
1357
+ iyswim,if you see what i mean
1358
+ iytt,if you think that
1359
+ iyw,if you want or will
1360
+ iyww,if you were wondering
1361
+ j,joking
1362
+ jaf,just a friend
1363
+ jafa,just another fucking aucklander
1364
+ japan,just always pray at night
1365
+ jas,just a second
1366
+ jat,just a thought
1367
+ jatq,just answer the question
1368
+ jb,jail bait jonas brothers
1369
+ jbh,just being honest
1370
+ jbt,jack booted thug
1371
+ jbu,just between us
1372
+ jby,just be yourself
1373
+ jc,jesus christ just curious just chilling
1374
+ jcb,j c bamford
1375
+ jd,jack daniels
1376
+ jdi,just do it
1377
+ jdlr,just does not look right
1378
+ jdm,japanese domestic market
1379
+ jff,just for fun
1380
+ jfk,john fitzgerald kennedy new york airport just for kicks
1381
+ jfn,just for now
1382
+ jft,just for today
1383
+ jftr,just for the record
1384
+ jfy,just for you
1385
+ jfyi,just for your information
1386
+ jg,juicy gossip
1387
+ jgb,just got back
1388
+ jgh,just got home
1389
+ jgi,just google it
1390
+ jgl,just get lost
1391
+ jhc,jesus h christ
1392
+ jhp,jacketed hollow point
1393
+ jic,just in case
1394
+ jicydk,just in case you did not know
1395
+ jj,just joking
1396
+ jk,just kidding
1397
+ jkd,jeet kune do
1398
+ jlmk,just let me know
1399
+ jls,jack the lad swing
1400
+ jlt,just like that
1401
+ jluk,just letting you know
1402
+ jly,jesus loves you
1403
+ jlyk,just letting you know
1404
+ jm,just messing
1405
+ jma,just messing around
1406
+ jmho,just my humble opinion
1407
+ jml,just my luck
1408
+ jmo,just my opinion
1409
+ jms,just making sure
1410
+ jmt,just my thoughts
1411
+ jn,just now
1412
+ jooc,just out of curiosity
1413
+ jp,just playin
1414
+ jpa,just playing around
1415
+ jpeg,joint photographic experts group image file format
1416
+ jrotc,junior reserve officer training corps
1417
+ jrpg,japanese role playing game
1418
+ js,just saying
1419
+ jsmn,just shoot me now
1420
+ jsp,java server pages
1421
+ jsu,just shut up
1422
+ jsyk,just so you know
1423
+ jtb,just too bad
1424
+ jtc,join the club
1425
+ jtlyk,just to let you know
1426
+ jtol,just thinking out loud
1427
+ jtoy,just thinking of you
1428
+ jtty,just to tell you
1429
+ jtusk,just thought you should know
1430
+ juad,jumping up and down
1431
+ jv,junior varsity amateur
1432
+ jw,just wondering
1433
+ jwas,just wait and see
1434
+ jwd,job well done
1435
+ jwg,just a wild guess
1436
+ jwtk,just wanted to know
1437
+ jwtlyk,just wanted to let you know
1438
+ jwu,just woke up
1439
+ jww,just was wondering
1440
+ kafm,keep away from me
1441
+ kcaco,keep calm and carry on
1442
+ kcco,keep calm and chive on
1443
+ kd,kraft dinner
1444
+ kdr,kill or death ratio
1445
+ kf,kind of funny
1446
+ kfc,kentucky fried chicken
1447
+ kgb,russian secret police
1448
+ kh,kingdom hearts
1449
+ khyf,know how you feel
1450
+ kia,killed in action know it all
1451
+ kicks,shoes thrills
1452
+ kig,keep it gangsta
1453
+ kim,keep it moving
1454
+ kio,knock it off
1455
+ kip,sleep bed
1456
+ kir,keepin it real
1457
+ kirf,keeping it real fake
1458
+ kis,keep it simple
1459
+ kisa,knight in shining armour
1460
+ kiss,keep it simple stupid
1461
+ kit,keep in touch
1462
+ kiu,keep it up
1463
+ kiv,keep in view
1464
+ kkk,ku klux klan
1465
+ kkkk,korean lol
1466
+ km,keep mum
1467
+ kmfc,keeping my fingers crossed
1468
+ kml,killing myself laughing
1469
+ kmn,kill me now
1470
+ kmp,keep me posted
1471
+ kmt,kiss my teeth
1472
+ kmu,keep me updated
1473
+ kod,kiss of death
1474
+ kos,kill on sight
1475
+ kotc,kiss on the cheek
1476
+ koth,king of the hill
1477
+ kotl,kiss on the lips
1478
+ kotor,knights of the old republic
1479
+ kp,korean pride
1480
+ kpc,keep parents clueless
1481
+ kpg,keep the party going
1482
+ kpi,key performance indicator
1483
+ kr,kind regards
1484
+ kro,keep right on
1485
+ ks,kill steal
1486
+ ktbffh,keep the blue flag flying high
1487
+ ktbspa,keep the backstreet pride alive
1488
+ ktf,keep the faith
1489
+ kwim,know what i mean
1490
+ kwis,know what i am saying
1491
+ kyfc,keep your fingers crossed
1492
+ kyo,knock yourself out
1493
+ kyp,keep you posted
1494
+ lafs,love at first sight
1495
+ lak,love and kisses
1496
+ lal,laughing a lot or little
1497
+ lalb,laughing a little bit
1498
+ lam,leave a message run
1499
+ lamn,look at me now
1500
+ lan,local area network
1501
+ lapd,los angeles police department
1502
+ larp,live action role play
1503
+ lart,luser attitude readjustment tool
1504
+ laser,light amplification by stimulated emission of radiation
1505
+ lat,living apart together
1506
+ latm,laughing at the moment
1507
+ lbc,long beach california
1508
+ lbd,little black dress
1509
+ lbdn,look busy doing nothing
1510
+ lbh,let us be honest loser back home
1511
+ lbm,little big man
1512
+ lbnl,last but not least
1513
+ lbr,loser beyond repair
1514
+ lbrs,lower blackrock spire
1515
+ lbvs,laughing but very serious
1516
+ lbw,leg before wicket
1517
+ lc,lower case
1518
+ lcd,liquid crystal display
1519
+ lcts,let us change the subject
1520
+ ld,link dead
1521
+ lda,long distance affair
1522
+ ldh,long distance hug
1523
+ ldi,let us do it
1524
+ ldl,long distance lover
1525
+ ldo,like duh obviously
1526
+ ldr,long distance relationship
1527
+ lds,latter day saint
1528
+ le,limited edition law enforcement
1529
+ lec,local exchange carrier
1530
+ led,light emiting diode
1531
+ leo,law enforcement officer
1532
+ lev,low emission vehicle
1533
+ lf,looking for
1534
+ lf1m,looking for one more
1535
+ lfdy,live fast die young
1536
+ lfg,looking for group
1537
+ lfm,looking for more
1538
+ lfmf,learn from my fail
1539
+ lfp,looking for party
1540
+ lfti,looking forward to it
1541
+ lftsu,look forward to seeing you
1542
+ lfw,looking for work
1543
+ lg,little girl
1544
+ lgbtq,lesbian gay bisexual trans questioning
1545
+ lgd,let us get drunk
1546
+ lgfb,looks good from behind
1547
+ lgmh,love gives me hope
1548
+ lgo,life goes on
1549
+ lgt,link goes to
1550
+ lgtm,looks good to me
1551
+ lh,living hell
1552
+ lhh,laughing hella hard
1553
+ lhk,love hugs and kisses
1554
+ lhm,lord have mercy lord help me
1555
+ lhyw,like hell you will
1556
+ li,laughing inside
1557
+ lifo,last in first out
1558
+ lig,let it go
1559
+ lih,laugh in head
1560
+ lihop,let it happen on purpose
1561
+ liita,love is in the air
1562
+ lilaboc,life is like a box of chocolates
1563
+ limb,laughing in my brain
1564
+ limh,laughing in my head
1565
+ limm,laughing in my mind
1566
+ lirl,laughing in real life
1567
+ lis,laughing in silence
1568
+ lits,life is too short
1569
+ liu,look it up
1570
+ ljbf,let us just be friends
1571
+ ll,laugh loudly lol
1572
+ llap,live long and prosper
1573
+ llc,limited liability company laughing like crazy
1574
+ llh,laughing like hell
1575
+ lll,loony liberal left
1576
+ llttf,living life to the fullest
1577
+ lm,loud mouth
1578
+ lma,leave me alone
1579
+ lmad,let us make a deal
1580
+ lmam,leave me a message
1581
+ lmap,leave me alone please
1582
+ lmc,let me check
1583
+ lmco,laughing my cats off
1584
+ lmg,light machine gun
1585
+ lmgtfy,let me google that for you
1586
+ lmho,laughing my head off
1587
+ lmirl,let us meet in real life
1588
+ lmk,let me know
1589
+ lml,love my life
1590
+ lmpo,laughing my pants off
1591
+ lmr,last minute resistance
1592
+ lms,like my status last man standing
1593
+ lmso,laughing my socks off
1594
+ lmt,let me think
1595
+ lmtal,let me take a look
1596
+ lnf,lifes not fair
1597
+ lnib,like new in box
1598
+ lnt,leave no trace
1599
+ loa,leave of absence
1600
+ lol,laughing out loud
1601
+ lolak,lots of love and kisses
1602
+ loll,laugh out loud literally
1603
+ lolol,lots of laughing out loud
1604
+ lolv,lots of love
1605
+ lomb,lying on my bed
1606
+ loml,love of my life
1607
+ lomo,lights out missionary only
1608
+ lool,laughing outlandishly out loud
1609
+ loq,laugh out quietly
1610
+ lorl,laugh out really loud
1611
+ los,line of site
1612
+ lotd,link of the day
1613
+ loti,laughing on the inside
1614
+ lotr,lord of the rings
1615
+ lotro,lord of the rings online
1616
+ lovl,laughing out very loud
1617
+ loyol,live out your own life
1618
+ loz,legend of zelda
1619
+ lp,long play
1620
+ lpg,liquefied petroleum gas
1621
+ lpt,life pro tip
1622
+ lqi,laughing quietly inside
1623
+ lql,laughing quite loudly
1624
+ lqtm,laughing quietly to myself
1625
+ lqtms,laughing quietly to myself
1626
+ lqty,laughing quietly to yourself
1627
+ lrf,low resolution fox
1628
+ lrg,lifted research group
1629
+ lrl,laughing really loud
1630
+ lsat,law school admission test
1631
+ lse,london school of economics low self esteem
1632
+ lsh,laughing so hard
1633
+ lshic,laughing so hard i am crying
1634
+ lshidmt,laughing so hard i drop my taco
1635
+ lshmbh,laughing so hard my belly hurts
1636
+ lsi,limited social interaction
1637
+ lsmft,lucky strike means fine tobacco
1638
+ lsmih,laughing so much it hurts
1639
+ lsp,love sick puppy
1640
+ lss,last song syndrome
1641
+ lstm,laughing silently to myself
1642
+ lta,love to all
1643
+ ltb,looking to buy
1644
+ ltd,live or living the dream
1645
+ ltg,learn to google
1646
+ lth,love truth honor
1647
+ ltic,laugh til i cry
1648
+ ltl,living the life
1649
+ ltm,laughing to myself
1650
+ ltma,less talk more action
1651
+ ltmq,laughing to myself quietly
1652
+ ltms,laughing to myself
1653
+ ltnc,long time no chat
1654
+ ltns,long time no see
1655
+ ltnt,long time no talk
1656
+ ltp,lost the plot
1657
+ ltr,long term relationship
1658
+ lts,laugh to self
1659
+ lty,laugh to yourself
1660
+ lui,living under the infuence
1661
+ lul,lame uncomfortable laugh
1662
+ lulab,love you like a brother
1663
+ lulas,love you like a sister
1664
+ lv,louis vuitton las vegas level
1665
+ lw,lucky win
1666
+ lwicd,look what i can do
1667
+ lwkm,laugh wan kill me
1668
+ lwkmd,laugh wan kill me die
1669
+ lwm,laugh with me
1670
+ lwp,laughing with passion
1671
+ lwt,look who is talking
1672
+ lwwy,live while we are young
1673
+ ly,love you
1674
+ lya,love you always
1675
+ lyaaf,love you as a friend love you always and forever
1676
+ lyb,love you bye
1677
+ lyf,love you forever
1678
+ lyk,let you know
1679
+ lyl,love you lots
1680
+ lylab,love you like a brother
1681
+ lylaf,love you like a friend
1682
+ lylas,love you like a sister
1683
+ lylc,love you like crazy
1684
+ lylmb,love you like my brother
1685
+ lylt,love you long time
1686
+ lym,love you more
1687
+ lymi,love you mean it
1688
+ lymy,love you miss you
1689
+ lymywy,love you miss you want you
1690
+ lyr,love you really
1691
+ lysm,love you so much
1692
+ lyt,love you too
1693
+ lytd,love you to death
1694
+ lz,landing zone
1695
+ ma,mom alert master of arts
1696
+ maab,male assigned at birth
1697
+ mac,media access control macintosh
1698
+ madd,mothers against drunk driving
1699
+ mapoti,most annoying people on the internet
1700
+ mas,mildly amused smirk
1701
+ maw,might as well
1702
+ mawoy,may angels watch over you
1703
+ mba,masters of business association married but available
1704
+ mbd,my bad dudes
1705
+ mbf,my best friend
1706
+ mbfam,my brother from another mother
1707
+ mbm,married black male
1708
+ mbn,must be nice
1709
+ mbo,must be off management buy out
1710
+ mbps,megabits or bytes per second
1711
+ mbr,master boot record
1712
+ mbt,masai barefoot technology
1713
+ mbw,married black woman
1714
+ mc,master of ceremonies
1715
+ mcl,much clown love
1716
+ mcm,man crush monday
1717
+ mcp,male chauvanist pig
1718
+ mcr,my chemical romance
1719
+ mcw,man crush wednesday
1720
+ mdf,medium density fiberboard
1721
+ mdk,murder death kill
1722
+ mdr,mort de rire
1723
+ mdw,memorial day weekend
1724
+ mego,my eyes glazed over
1725
+ mfc,mildly fat chick microsoft foundation classes
1726
+ mfeo,made for each other
1727
+ mfg,mit freundlichen gruessen
1728
+ mfl,marked for later
1729
+ mfw,my face when
1730
+ mgby,may god bless you
1731
+ mgd,miller genuine draft
1732
+ mgk,machine gun kelly
1733
+ mgm,male genital mutilation
1734
+ mgmt,the management
1735
+ mgo,metal gear online
1736
+ mgs,metal gear solid
1737
+ mh,map hack
1738
+ mhbfy,my heart bleeds for you
1739
+ mho,my honest opinion
1740
+ mhoty,my hats off to you
1741
+ mhr,many happy returns
1742
+ mi6,military intelligence service 6
1743
+ mia,missing in action
1744
+ mib,men in black mint in box
1745
+ midi,musical instrument digital interface
1746
+ miga,make it go away
1747
+ mih,make it happen
1748
+ mihop,made it happen on purpose
1749
+ mil,mother in law
1750
+ mimo,multiple input multiple output
1751
+ mip,minor in possession
1752
+ mips,million instructions per second
1753
+ mirl,meet in real life
1754
+ misb,mint in sealed box
1755
+ miso,my internet shut off
1756
+ mj,michael jackson michael jordan marijuana
1757
+ mlas,my lips are sealed
1758
+ mlb,major league baseball
1759
+ mlg,major league gaming
1760
+ mlia,my life is average
1761
+ mlib,my life is bro
1762
+ mlig,my life is great or good
1763
+ mlim,my life is magic
1764
+ mlm,multi level marketing middle finger
1765
+ mlp,my little pony
1766
+ mls,my life sucks
1767
+ mltr,multiple long term relationships
1768
+ mlyp,much like your post
1769
+ mm,married man
1770
+ mm2,message mode 2
1771
+ mma,meet me at
1772
+ mmamp,meet me at my place
1773
+ mmao,make me an offer
1774
+ mmc,multimedia card
1775
+ mmd,make my day
1776
+ mmh,meet me halfway
1777
+ mmi,me myself and i
1778
+ mml,made me laugh
1779
+ mmofps,massively multiplayer online first person shooter
1780
+ mmorpg,massively multiplayer online role playing game
1781
+ mms,multimedia messaging service
1782
+ mmt,makes me think
1783
+ mmv,mileage may vary
1784
+ mnc,mobile network code
1785
+ mnf,monday night football
1786
+ mnt,maybe next time
1787
+ mo,modus operandi
1788
+ moab,mother of all bombs massive ordnance air blast
1789
+ moam,man on a mission
1790
+ moas,mother of all secrets
1791
+ moba,multiplayer online battle arena
1792
+ moc,marriage of convenience my own creation
1793
+ moh,my other half
1794
+ mol,more or less
1795
+ moo,matter of opinion my own opinion
1796
+ mopo,master of the painfully obvious
1797
+ moq,minimum order quantity
1798
+ mos,mom over shoulder
1799
+ mot,ministry of transport test for car safety
1800
+ motb,mother of the bride
1801
+ motd,message of the day match of the day
1802
+ motku,master of the known universe
1803
+ moto,master of the obvious
1804
+ motwyw,make of that what you will
1805
+ mou,memorandum of understanding
1806
+ mp,military police member of parliament
1807
+ mpa,music publishers association
1808
+ mpaa,motion picture assosciation of america
1809
+ mpe,my point exactly
1810
+ mpeg,moving picture experts group audio or visual file format
1811
+ mpg,miles per gallon
1812
+ mph,miles per hour
1813
+ mpo,my personal opinion
1814
+ mpog,multiplayer online game
1815
+ mpua,master pick up artist
1816
+ mpv,multi purpose vehicle
1817
+ mr,mentally retarded
1818
+ mre,meal ready to eat
1819
+ mri,magnetic resonance imaging
1820
+ mrp,manufacturers recommended price
1821
+ mrw,my reaction when
1822
+ msdn,microsoft developer network
1823
+ msdos,microsoft disk operating system
1824
+ ms dos,microsoft disk operating system
1825
+ msf,male seeking female
1826
+ msfam,my sister from another mister
1827
+ msg,message monosodium glutamate
1828
+ msi,mindless self indulgence
1829
+ msm,mainstream media
1830
+ msrp,manufacturers suggested retail price
1831
+ mst,mystery science theater
1832
+ mta,more than anything
1833
+ mtbf,mean time between failures
1834
+ mtbmw,may the best man win
1835
+ mtc,more to come
1836
+ mtd,month to date
1837
+ mte,my thoughts exactly
1838
+ mtf,male to female
1839
+ mtfbwy,may the force be with you
1840
+ mtg,magic the gathering
1841
+ mtlbwy,may the lord be with you
1842
+ mto,media take out
1843
+ mtuk,more than you know
1844
+ mtv,music television
1845
+ mtw,mums the word
1846
+ mtyk,more than you know
1847
+ mu,multi user
1848
+ mua,make up alley
1849
+ mud,multi user dungeon
1850
+ mung,mash until no good
1851
+ mva,motor vehicle accident
1852
+ mvp,most valuable player
1853
+ mw2,modern warfare 2
1854
+ mw3,modern warfare 3
1855
+ mwc,married with children
1856
+ mwf,married white female
1857
+ mwi,mad with it
1858
+ mwm,married white male
1859
+ mwpp,moony wormtail padfoot and prongs
1860
+ my,miss you
1861
+ myb,mind your business
1862
+ mych,maybe you can help
1863
+ myf,miss your face
1864
+ myggwy,may your god go with you
1865
+ myl,miss you loads
1866
+ mymp,make your mama proud
1867
+ myob,mind your own business
1868
+ myodb,mind your own damn business
1869
+ mysm,miss you so much
1870
+ myt,meet you there
1871
+ na,not available not applicable not announced
1872
+ naa,not at all
1873
+ naacp,national association for the advancement of colored people
1874
+ nabd,not a big deal
1875
+ nac,not a chance not a chain
1876
+ nagl,not a good look
1877
+ nak,nursing at keyboard
1878
+ nal,need a life
1879
+ nalgas,buttocks
1880
+ nalgo,not a lot going on
1881
+ nalopkt,not a lot of people know that
1882
+ nambla,north american man or boy love association
1883
+ nap,not a problem
1884
+ narp,non athletic regular person
1885
+ naru,not a registered user
1886
+ nas,network attached storage
1887
+ nasa,national aeronautics and space administration
1888
+ nascar,national association for stock car auto racing
1889
+ nasdaq,national association of securities dealers automated quotation
1890
+ nasl,name age sex location
1891
+ natm,not at the moment
1892
+ nato,north atlantic treaty organization no action talk only
1893
+ natty,natural light beer smart good cool
1894
+ nb,not bad nota bene
1895
+ nba,national basketball association
1896
+ nbb,never been better
1897
+ nbc,national broadcasting company
1898
+ nbd,no big deal
1899
+ nbf,new best friend
1900
+ nbg,nasty but good
1901
+ nbif,no basis in fact
1902
+ nbk,natural born killers never been kissed
1903
+ nbm,nil by mouth not before midnight
1904
+ nbsb,no boyfriend since birth
1905
+ nbt,nothing but trouble
1906
+ nbtd,nothing better to do
1907
+ nbtw,now back to work
1908
+ nc,no comment no choice
1909
+ nc 17,no children under 17
1910
+ ncaa,national collegiate athletic association
1911
+ ncb,never coming back
1912
+ ncis,naval criminal investigative service
1913
+ ncmo,non committal make out
1914
+ ncnr,non cancelable non returnable
1915
+ ncns,no call no show
1916
+ nco,non commissioned officer
1917
+ nda,non disclosure agreement
1918
+ nde,near death experience
1919
+ ndi,neither do i
1920
+ ndp,new democratic party
1921
+ ndr,non delivery report or receipt
1922
+ nds,nintendo ds
1923
+ nea,national education association
1924
+ ned,non educated delinquent
1925
+ nedm,not even doom music
1926
+ neet,not in education employment or training
1927
+ negl,not even going to lie
1928
+ negu,never ever give up
1929
+ nei,not enough information
1930
+ ner,non existent relationship
1931
+ nf,not funny
1932
+ nfa,no further action
1933
+ nfaa,not funny at all
1934
+ nfi,no freakin idea
1935
+ nfl,national football league
1936
+ nfm,no further message
1937
+ nfn,normal for norfolk
1938
+ nfs,not for sale
1939
+ nfsw,not for showing wife
1940
+ nft,no further text
1941
+ nfy,not fixed yet
1942
+ nfz,no fly zone
1943
+ ng,no good
1944
+ ngh,not going to happen
1945
+ ngl,not going to lie
1946
+ ngo,non governmental organization
1947
+ ngu,never give up
1948
+ nguns,never give up never surrender
1949
+ nh,nice hand
1950
+ nhb,no holding back no holds barred
1951
+ nhd,no harm done
1952
+ nhf,no hard feelings
1953
+ nhft,not here for that
1954
+ nhl,national hockey league
1955
+ nhn,not here now
1956
+ nhoi,never heard of it
1957
+ nhs,national health service
1958
+ nhtb,never heard that before
1959
+ ni,no idea
1960
+ niamy,never in a million years
1961
+ nib,new in box
1962
+ nic,network interface card
1963
+ nice,national institute of clinical excellence
1964
+ nicu,neonatal intensive care unit
1965
+ nid,never in doubt
1966
+ nik,now i know
1967
+ nimby,not in my back yard
1968
+ niml,never in my life not in my lifetime
1969
+ nin,nine inch nails
1970
+ nism,need i say more
1971
+ nitm,not in the mood
1972
+ nitw,not in that way
1973
+ nj,not joking nice job
1974
+ njpw,new japan pro wrestling
1975
+ nk,no kidding not known
1976
+ nka,no known allergies
1977
+ nkotb,new kid on the block
1978
+ nkz,no kill zone
1979
+ nla,no longer available
1980
+ nli,not logged in
1981
+ nlm,no laughing matter
1982
+ nlt,no later than
1983
+ nlyg,never let you go
1984
+ nm,never mind nothing much no message
1985
+ nme,new musical express
1986
+ nmf,not my fault
1987
+ nmg,no mames guey
1988
+ nmh,nodding my head
1989
+ nmhjc,not much happening just chilling
1990
+ nmi,need more info
1991
+ nmj,not my job
1992
+ nmjc,not much just chat
1993
+ nmjcu,not much just chillin you
1994
+ nmn,no middle name
1995
+ nmo,not my opinion
1996
+ nmp,not my problem
1997
+ nmr,not my responsibility
1998
+ nms,not my style
1999
+ nmt,not my type
2000
+ nmu,not much you
2001
+ nmw,no matter what
2002
+ nmwh,no matter what happens
2003
+ nmy,nice meeting you
2004
+ nn,night night no need not nice
2005
+ nnito,not necessarily in that order
2006
+ nnto,no need to open
2007
+ nntp,network news transfer protocol
2008
+ nntr,no need to reply
2009
+ noc,no one cares
2010
+ noi,no offense intended
2011
+ nok,not okay no one knows
2012
+ nokd,not our kind dear
2013
+ noly,no one likes you
2014
+ nom,no offence meant
2015
+ nomb,none of my business
2016
+ nos,new old stock
2017
+ nota,none of the above
2018
+ notb,none of their business
2019
+ notw,not of this world
2020
+ noyb,none of your business
2021
+ noydb,none of your damn business
2022
+ np,no problem
2023
+ npaa,no problem at all
2024
+ npc,non player character
2025
+ npi,no pun intended
2026
+ npnt,no picture no talk
2027
+ npo,never pull out
2028
+ npr,national public radio no purchase required
2029
+ npw,no problem whatsoever
2030
+ npz,no problems
2031
+ nqat,no question about that
2032
+ nqr,not quite right
2033
+ nr,no reply no reserve
2034
+ nra,national rifle association
2035
+ nre,new relationship energy
2036
+ nrfb,never removed from box
2037
+ nri,non resident indian non repairable item
2038
+ nrl,national rugby league
2039
+ nrn,no reply necessary
2040
+ nsa,no strings attached
2041
+ nsaw,not saying a word
2042
+ nsd,never say die
2043
+ nsf,not sufficient funds not so fast
2044
+ nsfa,not safe for anyone
2045
+ nsfl,not safe for life
2046
+ nsftbc,not sorry for the broadcast
2047
+ nsfv,not safe for viewing or vegetarians or vegans
2048
+ nsfw,not safe for work
2049
+ nsm,not so much
2050
+ nsn,not so nice
2051
+ nspcc,national society for prevention of cruelty to children
2052
+ nsw,new south wales
2053
+ nt,no thanks
2054
+ ntb,not that bothered not too bad
2055
+ ntbcw,not to be confused with
2056
+ ntd,nothing to do
2057
+ ntfs,new technology file system
2058
+ ntk,need to know
2059
+ ntl,nevertheless
2060
+ ntm,not too much nothing much
2061
+ ntmy,nice to meet you
2062
+ ntn,no thanks needed
2063
+ ntr,nothing to report
2064
+ nts,nothing to say note to self
2065
+ ntsc,national television system committee video standard
2066
+ ntsh,nothing to see here
2067
+ ntt,name that tune not touching that
2068
+ nttawwt,not that there is anything wrong with that
2069
+ nttu,not talking to you
2070
+ ntw,not to worry
2071
+ ntwf,neopian times writers forum
2072
+ nty,no thank you
2073
+ nus,national union of students
2074
+ nvms,no visible means of support
2075
+ nvn,not very nice
2076
+ nvng,nothing ventured nothing gained
2077
+ nw,no way
2078
+ nwih,no way in hell
2079
+ nwim,not what i mean
2080
+ nwj,no way jose
2081
+ nwly,never want to lose you
2082
+ nwm,no worries mate
2083
+ nwnc,no woman no cry
2084
+ nwo,new world order
2085
+ nwot,new without tags
2086
+ nws,not work safe for messages or sites containing adult content
2087
+ nwt,new with tags
2088
+ ny,new york
2089
+ nyb,not your business
2090
+ nyc,new york city
2091
+ nyd,new years day
2092
+ nye,new years eve
2093
+ nyf,not your fault
2094
+ nyi,not yet implemented
2095
+ nyk,not yet known now you know
2096
+ nyob,not your own business
2097
+ nyp,not your problem
2098
+ nypd,new york police department
2099
+ nyse,new york stock exchange
2100
+ nyt,not your type new york times
2101
+ nyu,new york university
2102
+ oa,over acting over achiever
2103
+ oan,on another note
2104
+ oao,over and out
2105
+ oap,old age pensioner
2106
+ oatus,on a totally unrelated subject
2107
+ oaus,on an unrelated subject
2108
+ ob,oh brother
2109
+ obby,oh baby
2110
+ obe,overcome by events out of body experience order of the british empire
2111
+ obhwf,one big happy weasely family
2112
+ obo,or best offer
2113
+ obq,oh be quiet
2114
+ obtw,oh by the way
2115
+ obx,outer banks north carolina
2116
+ oc,of course original character orange county
2117
+ ocd,obsessive compulsive disorder
2118
+ ocn,of course not
2119
+ oco,oh come on
2120
+ ocr,optical character recognition
2121
+ oct,on company time
2122
+ odaat,one day at a time
2123
+ odf,own damn fault
2124
+ odg,oh dear god
2125
+ odl,oh dear lord
2126
+ odst,orbital drop shock trooper
2127
+ odt,on dis ting
2128
+ oe,outlook express operator error
2129
+ oed,oxford english dictionary
2130
+ oem,original equipment manufacurer
2131
+ ofay,offensive term for a white person
2132
+ ofgs,oh for gods sake
2133
+ ofh,old folks home
2134
+ ofoc,overwhelming feelings of concern
2135
+ ofwgkta,odd future wolf gang kill them all
2136
+ og,original gangster old git
2137
+ ogim,oh god it is monday
2138
+ ogk,only god knows
2139
+ ogn,online gaming network
2140
+ oh,other half
2141
+ ohac,own house and car
2142
+ ohim,oh hell it is monday
2143
+ ohko,one hit knock out
2144
+ ohn,oh hell no
2145
+ ohs,operator head space
2146
+ oht,one handed typing
2147
+ ohw,one hit wonder
2148
+ oj,only joking
2149
+ ojd,obsessive jonas disorder
2150
+ ojt,on job training
2151
+ oled,organic light emitting diode
2152
+ ollg,one less lonely girl
2153
+ oloy,only losers obey yolo
2154
+ oltl,one life to live
2155
+ om,old man
2156
+ oma,oh my allah
2157
+ omb,on my break
2158
+ omd,oh my days
2159
+ omdb,over my dead body
2160
+ omfsm,oh my flying spaghetti monster
2161
+ omfug,other music found underground
2162
+ omg,oh my god
2163
+ omga,oh my giddy aunt
2164
+ omgd,oh my god dude
2165
+ omgna,oh my gosh not again
2166
+ omj,oh my jonas
2167
+ omjc,oh my jesus christ
2168
+ oml,oh my lord
2169
+ oms,oh my science
2170
+ omsj,oh my sweet jesus
2171
+ omt,one more thing
2172
+ omw,on my way
2173
+ omwh,on my way home
2174
+ omz,oh my zeus
2175
+ onm,oh never mind
2176
+ onna,oh no not again
2177
+ onnta,oh no not this again
2178
+ ono,or nearest offer
2179
+ ons,one night stand
2180
+ ontd,oh no they did not
2181
+ onyd,oh no you did not
2182
+ ooa,out of ammo
2183
+ ooak,one of a kind
2184
+ oobe,out of body experience
2185
+ ooc,out of control or character or context
2186
+ oof,out of office
2187
+ ooh,out of here
2188
+ ooi,out of interest
2189
+ oom,out of mana
2190
+ oomf,one of my friends or followers
2191
+ ooml,out of my league
2192
+ oomm,out of my mind
2193
+ ooo,out of office
2194
+ oop,out of place
2195
+ oos,out of style
2196
+ oosoom,out of sight out of mind
2197
+ oot,out of town
2198
+ ootb,out of the box
2199
+ ootc,obligatory on topic comment
2200
+ ootd,offer of the day outfit of the day
2201
+ ooto,out of the office
2202
+ ootw,out of this world
2203
+ ooyl,out of your league
2204
+ ooym,out of your mind
2205
+ op,original poster
2206
+ opb,other peoples business
2207
+ opk,other peoples kids
2208
+ opm,other peoples money
2209
+ opps,misspelling of oops
2210
+ osfa,one size fits all
2211
+ oslt,or something like that
2212
+ oso,other significant other
2213
+ oss,open source software
2214
+ ost,original sound track
2215
+ ot,off topic
2216
+ ota,over the air
2217
+ otb,off the boat
2218
+ otc,over the counter
2219
+ otd,on the dot out the door
2220
+ ote,over the edge
2221
+ otf,off topic forum
2222
+ otfl,on the floor laughing
2223
+ otg,on the go off the ground
2224
+ oth,off the hook
2225
+ otk,over the knee
2226
+ otlta,one thing led to another
2227
+ otm,of the moment one track mind
2228
+ otn,on that note
2229
+ oto,one time only
2230
+ otoh,on the other hand
2231
+ otooh,on the other other hand
2232
+ otp,one true pairing
2233
+ otr,on the run
2234
+ ots,on the side
2235
+ ott,over the top
2236
+ otth,on the third hand
2237
+ ottomh,off the top of my head
2238
+ otw,on the way
2239
+ otw,on the whole
2240
+ oty,over to you
2241
+ ou,open university
2242
+ ouat,once upon a time
2243
+ ouo,official use only
2244
+ ova,original video animation
2245
+ ovno,or very near offer
2246
+ owk,other world kingdom
2247
+ ownm,oh well never mind
2248
+ owoa,one way or another
2249
+ ows,occupy wall street
2250
+ owtte,or words to that effect
2251
+ oy,oh yeah
2252
+ oyb,on your bike
2253
+ oyg,oh your god
2254
+ oyo,on your own
2255
+ pa,personal assistant
2256
+ pabx,private automatic branch exchange
2257
+ pan,personal area network
2258
+ patd,panic at the disco
2259
+ patt,party all the time
2260
+ paye,pay as you earn
2261
+ payg,pay as you go
2262
+ pb,personal best
2263
+ pbb,pirate bulletin board
2264
+ pbj,peanut butter and jelly
2265
+ pbn,paintball nation
2266
+ pbp,please be patient
2267
+ pbq,please be quiet
2268
+ pbr,pabst blue ribbon
2269
+ pbs,public broadcasting service
2270
+ pbuh,peace be upon him
2271
+ pbwy,peace be with you
2272
+ pc,politically correct personal computer
2273
+ pcb,printed circuit board please come back
2274
+ pci,peripheral component interconnect
2275
+ pcm,please call me
2276
+ pcmcia,personal computer memory card international association
2277
+ pcmia,personal computer manufacturer interface adaptor
2278
+ pcmr,pc master race
2279
+ pd,public domain
2280
+ pda,personal digital assistant
2281
+ pdbaz,please do not be a zombie
2282
+ pdea,public display of elderly affection
2283
+ pdf,portable document format
2284
+ pdg,pretty damn good
2285
+ pdoa,public display of affection
2286
+ pdp,pretty darn precious
2287
+ pdq,pretty damn quick
2288
+ pdt,pacific daylight time
2289
+ pe,physical education
2290
+ pebcac,problem exists between chair and computer
2291
+ pebcak,problem exists between chair and keyboard
2292
+ pebkac,problem exists between keyboard and chair
2293
+ pemdas,parenthesis exponents multiply divide add subtract
2294
+ pews,post election withdrawal syndrome
2295
+ pfa,please find attached
2296
+ pfb,please find below
2297
+ pfc,private first class
2298
+ pfp,picture for proof
2299
+ pg,parental guidance
2300
+ pga,professional golfers association
2301
+ pgda,pretty goddamn awesome
2302
+ pgp,pretty good privacy
2303
+ phat,pretty hot and tempting
2304
+ phb,pointy haired boss
2305
+ pibe,play it by ear
2306
+ pic,picture partner in crime
2307
+ picnic,problem in chair not in computer
2308
+ pimpl,pee in my pants laughing
2309
+ pin,personal identification number
2310
+ pipa,protect ip act
2311
+ piq,person in question
2312
+ pir,parent in room
2313
+ pitme,peace in the middle east
2314
+ pitr,parent in the room
2315
+ piu,pump it up
2316
+ pk,player kill
2317
+ pkb,pot kettle black
2318
+ pki,public key infrastructure
2319
+ pkit,please keep in touch
2320
+ pla,peoples liberation army
2321
+ plc,public limited company
2322
+ pld,poor life decision
2323
+ plh,peace love and happiness
2324
+ pli,potential love interest
2325
+ pll,pretty little liar
2326
+ plma,please leave me alone
2327
+ plmk,please let me know
2328
+ plos,parents looking over shoulder
2329
+ plp,people lazily procrastinating
2330
+ plr,private label rights
2331
+ plrn,please leave right now
2332
+ plu,people like us
2333
+ plur,peace love unity and respect
2334
+ pm,private message post meridiem
2335
+ pma,positive mental attitude
2336
+ pmb,private message box
2337
+ pmc,post meal cigarette
2338
+ pmd,put me down
2339
+ pmf,pardon my french
2340
+ pmfji,pardon me for jumping in
2341
+ pmigbom,put mind in gear before opening mouth
2342
+ pmji,pardon my jumping in
2343
+ pmt,pre menstrual tension
2344
+ pmymhmmfswgad,pardon me you must have mistaken me for someone who gives a damn
2345
+ pnc,point and click partner in crime
2346
+ pnl,peace and love
2347
+ pnp,party and play
2348
+ pnr,passenger name record
2349
+ pnw,pacific north west
2350
+ poa,plan of action
2351
+ pod,passed out drunk
2352
+ pof,plenty of fish
2353
+ poi,point of interest
2354
+ poidh,pics or it did not happen
2355
+ pomo,permanent open market operations post modern a group of native american people in california
2356
+ ponr,point of no return
2357
+ potc,pirates of the carribean
2358
+ potd,post of the day
2359
+ poto,phantom of the opera
2360
+ pots,parents over the shoulder
2361
+ potus,president of the united states
2362
+ potw,patient of the week
2363
+ poty,post of the year
2364
+ pov,point of view
2365
+ pow,prisioner of war
2366
+ ppb,parts per billion
2367
+ ppc,pay per click
2368
+ ppd,post potter depression
2369
+ ppm,parts per million
2370
+ pppw,per person per week
2371
+ pps,post post script
2372
+ ppu,please pick up
2373
+ ppv,pay per view
2374
+ pq,party quest
2375
+ pr,public relations
2376
+ prc,peoples republic of china
2377
+ ps,photoshop play station post script
2378
+ ps&qs,pints and quarts please and thank yous
2379
+ ps2,playstation 2
2380
+ ps3,playstation 3
2381
+ ps4,playstation 4
2382
+ psa,publice service announcement
2383
+ psb,please see below
2384
+ psh,dismissive expression
2385
+ psi,pounds per square inch greek letter
2386
+ psm,personal short message
2387
+ psn,playstation network
2388
+ psp,playstation portable
2389
+ psr,pretty standard really
2390
+ pst,please send tell pacific standard time
2391
+ pstn,public switched telephone network
2392
+ psu,power supply unit
2393
+ pt,phantasy tour physical training
2394
+ ptb,powers that be pass the buck please text back
2395
+ ptc,popping the collar
2396
+ pti,pardon the interruption
2397
+ ptl,praise the lord
2398
+ ptm,please tell me
2399
+ pto,paid time off
2400
+ ptp,pay to play peer to peer
2401
+ ptsd,post traumatic stress disorder
2402
+ ptt,push to talk
2403
+ ptw,play to win professional time waster
2404
+ ptz,pan tilt zoom
2405
+ pua,pick up artist
2406
+ pug,pick up group
2407
+ puv,public utility vehicle
2408
+ pv,promotional video
2409
+ pvc,polyvinyl chloride vinyl
2410
+ pve,player versus environment
2411
+ pvm,player versus monster
2412
+ pvp,player v player
2413
+ pvr,personal video recorder
2414
+ pwor,proceeding with orders recieved
2415
+ pwos,parents watching over shoulder
2416
+ pwt,poor white trash
2417
+ px,post exchange part exchange
2418
+ pyp,play your position
2419
+ pyt,pretty young thing
2420
+ qa,quality assurance question and answer
2421
+ qantas,queensland and northern territory aerial service
2422
+ qap,quick as possible quickly as possible
2423
+ qb,quarter back
2424
+ qc,quality control
2425
+ qed,quod erat demonstrandum
2426
+ qfe,quoted for emphasis
2427
+ qfmt,quoted for more truth
2428
+ qfp,quoted for posterity
2429
+ qft,quoted for truth
2430
+ qi,quite interesting
2431
+ ql,quite laughing
2432
+ qno,quiet night out
2433
+ qol,quality of life
2434
+ qos,quantam of solace
2435
+ qotd,quote of the day
2436
+ qotsa,queens of the stone age
2437
+ qp,quarter pound
2438
+ qq4u,quick question for you
2439
+ qs,quick scope
2440
+ qvc,quality value convenience
2441
+ r5,region 5
2442
+ ra,resident advisor resident assistant
2443
+ rac,rock against communism
2444
+ rak,random act of kindness
2445
+ ram,random access memory
2446
+ raok,random act of kindness
2447
+ ras,remote access server
2448
+ ratm,rage against the machine
2449
+ rawl,roll around while laughing
2450
+ rawr,right answer wrong reason
2451
+ rbay,right back at you
2452
+ rbg,revolutionary but gangsta
2453
+ rbtl,read between the lines
2454
+ rbv,red bull and vodka
2455
+ rc,random chat radio controlled
2456
+ rct,roller coster tycoon
2457
+ rd,real deal
2458
+ rdc,really do not care
2459
+ rdh,rate date hate
2460
+ rdj,robert downey jr
2461
+ rdm,random death match
2462
+ rdo,regular day off
2463
+ rdr,red dead redemption
2464
+ rfc,request for comment
2465
+ rfi,request for information
2466
+ rfid,radio frequency identification
2467
+ rfp,request for proposal
2468
+ rfq,request for quotation
2469
+ rft,right first time
2470
+ rfts,reach for the stars
2471
+ rfyl,run for your life
2472
+ rgb,red green blue
2473
+ rhcp,red hot chili peppers
2474
+ rhd,right hand drive
2475
+ rhi,rumour has it
2476
+ rhip,rank has its privileges
2477
+ rhs,right hand side
2478
+ rino,republican in name only
2479
+ riyl,recommended if you like
2480
+ rl,real life
2481
+ rlab,roll like a buffalo
2482
+ rlf,real life friend
2483
+ rltw,rangers lead the way
2484
+ rma,return merchandise authorization
2485
+ rme,rolling my eyes
2486
+ rml,read my lips
2487
+ rmt,real money trading
2488
+ rmv,results may vary
2489
+ rn,right now registered nurse
2490
+ rna,ribonucleic acid
2491
+ rnb,rhythm and blues
2492
+ rng,random number generator
2493
+ rnr,rock n roll
2494
+ ro,ragnarok online
2495
+ roar,right of admission reserved
2496
+ rofc,rolling on floor crying
2497
+ rofl,rolling on floor laughing
2498
+ roflmfao,rolling on floor laughing my fucking ass off
2499
+ roflol,rolling on floor laughing out loud
2500
+ rog,really old git
2501
+ roh,ring of honor
2502
+ roi,return on investment
2503
+ rolf,rolling on laughing floor
2504
+ ror,raughing out roud
2505
+ ros,right on schedule
2506
+ rotc,reserve officer training corps
2507
+ rotf,rolling on the floor
2508
+ rotffnar,rolling on the floor for no apparent reason
2509
+ rotfl,rolling on the floor laughing
2510
+ rotflol,rolling on the floor laughing out loud
2511
+ rotgl,rolling on the ground laughing
2512
+ rotk,return of the king
2513
+ rotm,run of the mill
2514
+ rov,remotely operated vehicle
2515
+ row,rest of the world
2516
+ roy,relative of yours
2517
+ rpc,role playing chat
2518
+ rpf,real person fiction
2519
+ rpg,rocket propelled grenade role playing game
2520
+ rpm,revolutions per minute
2521
+ rps,rock paper scissors
2522
+ rq,random questions
2523
+ rsi,repetitive strain injury
2524
+ rsn,real soon now
2525
+ rspb,royal society for the protection of birds
2526
+ rspca,royal society for the prevention of cruelty to animals
2527
+ rss,rich site summary really simple syndication
2528
+ rsvp,repondez sil vous plait
2529
+ rt,retweet real time
2530
+ rta,road traffic accident
2531
+ rtb,return to base
2532
+ rtd,ready to drink
2533
+ rtf,return the favour
2534
+ rtfaq,read the faq
2535
+ rtfd,read the fucking description
2536
+ rtfi,read the flipping instructions
2537
+ rtfm,read the flipping manual
2538
+ rtft,read the fucking thread read the fucking topic
2539
+ rtg,ready to go
2540
+ rtm,read the manual
2541
+ rto,radio telephone operator
2542
+ rtr,roll tide roll
2543
+ rts,real time strategy
2544
+ rtv,rock the vote
2545
+ rtw,ready to wear round the world
2546
+ rv,recreational vehicle
2547
+ rvb,red versus blue
2548
+ rvr,realm versus realm
2549
+ rw,read write
2550
+ rwd,rear wheel drive
2551
+ rwl,roaring with laughter
2552
+ rwnj,right wing nut job
2553
+ rwp,random wall post
2554
+ rwys,reap what you sow
2555
+ ryc,regarding your comment
2556
+ ryn,read your note regarding your note
2557
+ ryo,roll your own
2558
+ sa,sibling alert
2559
+ sab,smoking a blunt
2560
+ sae,stamped or self addressed envelope
2561
+ saf,single asian female
2562
+ safm,stay away from me
2563
+ sahd,stay at home dad
2564
+ sahm,stay at home mom
2565
+ sahw,stay at home wife
2566
+ salts,smiled a little then stopped
2567
+ sam,stop annoying me
2568
+ sap,sad and pathetic fool
2569
+ sase,self addressed stamped envelope
2570
+ sat,scholastic assessment test
2571
+ sata,serial advanced technology attachment
2572
+ satc,sex and the city
2573
+ sats,standard attainment tests
2574
+ sbd,silent but deadly
2575
+ sbf,single black female
2576
+ sbi,surrounded by incompetence
2577
+ sbj,sweet baby jesus
2578
+ sbm,single black male
2579
+ sbs,step by step
2580
+ sbsp,spongebob squarepants
2581
+ sbt,sorry bout that
2582
+ scnr,sorry could not resist
2583
+ scotus,supreme court of the united states
2584
+ scsi,small computer system interface
2585
+ scuba,self contained underwater breathing apparatus
2586
+ sd,sweet dreams secure digital so drunk
2587
+ sda,seventh day adventist
2588
+ sdk,software development kit
2589
+ sdmf,strength determination merciless forever society dwelling mother fucker
2590
+ sdram,synchronous dynamic random access memory
2591
+ seo,search engine optimization
2592
+ sep,somebody elses problem
2593
+ serp,search engine results page
2594
+ sf,science fiction san francisco
2595
+ sfam,sister from another mister
2596
+ sflr,sorry for late reply
2597
+ sfo,san francisco international airport
2598
+ sfp,sorry for partying
2599
+ sfr,smiling for real
2600
+ sfsg,so far so good
2601
+ sftbc,sorry for the broadcast
2602
+ sfw,safe for work
2603
+ sgtm,sounds good to me
2604
+ sh,same here
2605
+ shu,secure housing unit
2606
+ siwoti,someone is wrong on the internet
2607
+ slol,seriously laughing out loud
2608
+ slr,single lens reflex
2609
+ smao,study my ass off
2610
+ smdh,shaking my damn head
2611
+ smdhe,some mothers do have them
2612
+ sme,small or medium enterprises
2613
+ smgdh,shaking my god damn head
2614
+ smh,shaking my head
2615
+ smhid,shaking my head in despair
2616
+ smhl,shaking my head laughing
2617
+ smib,southern maryland inbred
2618
+ smidsy,sorry mate i did not see you
2619
+ sml,screw my life story of my life
2620
+ smn,shoot me now
2621
+ smog,sweet mother of god
2622
+ smop,simple matter of programming
2623
+ sms,short message service
2624
+ smt,sucking my teeth
2625
+ smtp,simple mail transfer protocol
2626
+ snafu,situation normal all fouled up
2627
+ snag,sensitive new age guy sausage
2628
+ snc,social network check
2629
+ snd,search and destroy
2630
+ snes,super nintendo entertainment system
2631
+ snf,so not funny
2632
+ snm,say no more
2633
+ snr,signal to noise ratio
2634
+ snyk,so now you know
2635
+ so,significant other shout out
2636
+ soa,state of alert
2637
+ soad,system of a down
2638
+ soag,son of a gun
2639
+ sog,sea of green
2640
+ soh,sense of humor
2641
+ sohf,sense of humor failure
2642
+ soi,statement of intent
2643
+ soidh,screenshot or it did not happen
2644
+ somd,shit on my dick
2645
+ soml,story of my life
2646
+ somsw,someone over my shoulder watching
2647
+ sooc,straight out of camera
2648
+ sood,cool
2649
+ sootb,straight out of the box
2650
+ sop,standard operating procedure
2651
+ sopa,stop online piracy act
2652
+ sorn,statutory off road notification
2653
+ sos,save our souls
2654
+ sota,state of the art
2655
+ srh,supporting radical habits
2656
+ srm,stark raving mad
2657
+ sro,standing room only
2658
+ srt,street and racing technology
2659
+ ss,screen shot
2660
+ ssa,subject says all
2661
+ ssbb,super smash brothers brawl
2662
+ ssbhm,super sized
2663
+ ssc,safe sane consensual
2664
+ ssd,solid state drive
2665
+ ssdd,same stuff different day
2666
+ ssh,secure she will
2667
+ ssid,service set identifier
2668
+ ssl,secure socket layer see subject line
2669
+ ssts,snickering softly to self
2670
+ sswa,so say we all
2671
+ stw,search the web
2672
+ sty,same to you
2673
+ styl,speak to you later
2674
+ su,shut up
2675
+ suad,shut up and drive
2676
+ sul,see you later
2677
+ sula,sweaty upper lip alert
2678
+ tb,text back
2679
+ tba,to be announced
2680
+ tbbh,to be brutally honest
2681
+ tbbt,the big bang theory
2682
+ tbc,to be continued
2683
+ tbch,to be completely honest
2684
+ tbd,to be decided
2685
+ tbe,to be edited
2686
+ tbf,to be fair
2687
+ tbfu,too bad for you
2688
+ tbh,to be honest
2689
+ tbm,tactical boyfriend mention
2690
+ tbms,to be more specific
2691
+ tbnt,thanks but no thanks
2692
+ tbph,to be perfectly honest
2693
+ tbqf,to be quite frank
2694
+ tbqfh,to be quite fucking honest
2695
+ tbqh,to be quite honest
2696
+ tbr,to be real
2697
+ tbs,tablespoon to be specified
2698
+ tbss,too bad so sad
2699
+ tbt,truth be told
2700
+ tbtf,too big to fail
2701
+ tbtg,thanks be to god
2702
+ tbth,to be totally honest
2703
+ tbtp,that is beside the point
2704
+ tbu,to be updated
2705
+ tbys,think before you speak
2706
+ tc,take care
2707
+ tcb,taking care of business
2708
+ tcby,the countrys best yogurt
2709
+ tccic,take care because i care
2710
+ tcfc,too close for comfort
2711
+ tcfn,take care for now
2712
+ tcfs,too cool for school
2713
+ tcg,trading card game
2714
+ tcgb,take care god bless
2715
+ tck,third culture kid
2716
+ tcl,tool command language
2717
+ tcob,taking care of buisness
2718
+ tcoy,take care of yourself
2719
+ tcp,transmission control protocol
2720
+ tcp or ip,transmission control protocol or internet protocol
2721
+ tctc,to close to call
2722
+ td,touchdown
2723
+ tddup,til death do us part
2724
+ tddwp,til death do we part
2725
+ tdf,to die for
2726
+ tdg,too damn good three days grace
2727
+ tdh,tall dark and handsome
2728
+ tdi,turbo direct injection turbo diesel injection
2729
+ tdl,to do list
2730
+ tdm,team deathmatch
2731
+ tds,technical dificulties
2732
+ tdtf,too drunk to function
2733
+ tdwp,the devil wears prada
2734
+ tdy,temporarily deployed for a year
2735
+ teotwawki,the end of the world as we know it
2736
+ tfa,thanks for asking
2737
+ tfc,team fortress classic
2738
+ tfcd,time for compact disc
2739
+ tffw,too funny for words
2740
+ tfi,thanks for the information
2741
+ tfios,the fault in our stars
2742
+ tfl,tip for life transport for london
2743
+ tflmk,thanks for letting me know
2744
+ tflms,thanks for letting me share
2745
+ tfln,texts from last night
2746
+ tfm,total frat move
2747
+ tfmtk,that is for me to know
2748
+ tfp,thanks for playing
2749
+ tfrm,thanks for reminding me
2750
+ tfs,thanks for sharing
2751
+ tft,the frozen throne thin film transistor
2752
+ tfta,thanks for the add
2753
+ tftc,thanks for the cache
2754
+ tftd,thought for the day
2755
+ tfti,thanks for the info
2756
+ tftl,thanks for the link
2757
+ tg,thank god transgender too good
2758
+ tgal,think globally act locally
2759
+ tge,misspelling of the
2760
+ tgfg,thank god for google
2761
+ tgfi,thank god for the internet
2762
+ tgfl,thank god for life
2763
+ tgft,thank god for that
2764
+ tgi,thank god it is
2765
+ tgia,thank god i am alive
2766
+ tgiaf,thank god it is almost friday
2767
+ tgif,thank god it is friday
2768
+ tgim,thank god it is monday
2769
+ tgio,thank god it is over
2770
+ tgit,thank god it is thursday
2771
+ tgod,taylor gang or die
2772
+ tgp,thumbnail gallery post
2773
+ tgtbt,too good to be true
2774
+ thabto,two heads are better than one
2775
+ thwu,to hell with you
2776
+ tiic,the idiots in charge
2777
+ tinag,this is not a game
2778
+ tinalo,this is not a legal opinion
2779
+ tinar,this is not a recommendation
2780
+ tinstafl,there is no such thing as free lunch
2781
+ tla,three letter acronym
2782
+ tlc,tender loving care
2783
+ tld,top level domain
2784
+ tldnr,too long did not read
2785
+ tldr,too long did not read
2786
+ tldw,too long did not watch
2787
+ tlgo,the list goes on
2788
+ tli,too little information
2789
+ tlnd,true love never dies
2790
+ tlol,truly laughing out loud
2791
+ tltr,too long to read
2792
+ tlyk,to let you know
2793
+ tm,text message text me trademark
2794
+ tma,take my advice
2795
+ tmai,tell me about it
2796
+ tmb,text me back
2797
+ tmbg,they might be giants
2798
+ tmbi,tell me bout it
2799
+ tme,too much effort
2800
+ tmf,too much forehead
2801
+ tmh,touch my hand
2802
+ tmi,too much information
2803
+ tmk,to my knowledge
2804
+ tml,thank me later text me later
2805
+ tmlt,to my last tweet
2806
+ tmm,tell me more
2807
+ tmms,that made me smile
2808
+ tmn,touch me not
2809
+ tmnt,teenage mutant ninja turtles
2810
+ tmp,tactical machine pistol
2811
+ tmr,tomorrow
2812
+ tmrw,tomorrow
2813
+ tms,too much swag
2814
+ tmsidk,tell me something i do not know
2815
+ tmt,too much tuna
2816
+ tmtc,too many to count
2817
+ tmth,too much to handle
2818
+ tmtowtdi,there is more than one way to do it
2819
+ tmts,too much too soon
2820
+ tmtt,too much to text
2821
+ tmy,tell me why
2822
+ tmz,thirty mile zone
2823
+ tna,total nonstop action
2824
+ tnb,there is nothing better
2825
+ tnbm,true norwegian black metal
2826
+ tnf,that is not funny
2827
+ tng,the next generation
2828
+ tnl,to next level
2829
+ tnln,took nothing left nothing
2830
+ tno,trust no one
2831
+ tnop,totally not our problem
2832
+ tnot,take note of that
2833
+ tnsl,took nothing signed logbook
2834
+ tnstaafl,there is no such thing as a free lunch
2835
+ tnt,til next time
2836
+ tntm,that is news to me
2837
+ to,time out
2838
+ toc,table of contents
2839
+ tod,time of death time of day
2840
+ toefl,test of english as a foreign language
2841
+ toeic,test of english for international communication
2842
+ toft,take one for the team
2843
+ toftt,take one for the team
2844
+ toh,the other half
2845
+ tol,thinking out loud thinking of laughing
2846
+ tom,time of month
2847
+ totb,think outside the box
2848
+ totd,tip of the day tweet of the day
2849
+ totga,the one that got away
2850
+ totm,time of the month
2851
+ totus,teleprompter of the united states
2852
+ toy,thinking of you
2853
+ tp,toilet paper town portal
2854
+ tpam,the person above me
2855
+ tpb,the pirate bay
2856
+ tpe,total power exchange
2857
+ tpk,total party kill
2858
+ tpo,time place occasion
2859
+ tps,totally pointless stuff
2860
+ tpt,trailer park trash
2861
+ tptb,the powers that be
2862
+ tr,triple rainbow
2863
+ traw,thick rich and white
2864
+ trdmc,tears running down my cheeks
2865
+ trdmf,tears running down my face
2866
+ trg,tiny rascal gang
2867
+ ttfw,too tacky for words
2868
+ ttg,time to go
2869
+ ttgg,time to go girl
2870
+ tth,trying too hard
2871
+ ttiuwp,this thread is useless without pictures
2872
+ ttiwwp,this thread is worthless without pictures
2873
+ ttjasi,take this job and shove it
2874
+ ttl,thank the lord time to live
2875
+ ttm,talk to me
2876
+ ttmab,to the moon and back
2877
+ ttml,talk to me later
2878
+ tto,time to own
2879
+ ttotm,that time of the month
2880
+ ttp,to the point
2881
+ ttr,time to relax
2882
+ ttt,third tier toilet
2883
+ ttte,thomas the tank engine
2884
+ ttth,talk to the hand
2885
+ tttt,these things take time
2886
+ tttty,time to talk to you
2887
+ ttul,talk to you later
2888
+ ttus,talk to you soon
2889
+ ttut,talk to you tomorrow
2890
+ ttutt,to tell you the truth
2891
+ tty,talk to you
2892
+ ttyf,talk to you forever
2893
+ ttyiab,talk to you in a bit
2894
+ ttyitm,talk to you in the morning
2895
+ ttyl,talk to you later
2896
+ ttym,talk to you ma
2897
+ ttyn,talk to you never
2898
+ ttyrs,talk to you real soon
2899
+ ttys,talk to you soon
2900
+ ttyt,talk to you tomorrow
2901
+ ttytt,to tell you the truth
2902
+ ttyvs,talk to you very soon
2903
+ tul,tell you later text you later
2904
+ tvm,thanks very much
2905
+ tw,trigger warning
2906
+ twain,technology without an interesting name
2907
+ twloha,to write love on her arms
2908
+ twoc,taken without owners consent
2909
+ twtmc,to whom this may concern
2910
+ twu,that is what is up
2911
+ twyl,talk with you later
2912
+ twyms,that is what your mom said
2913
+ ty,thank you
2914
+ tyb,try your best
2915
+ tybg,thank you based god
2916
+ tyfays,thank you for all your support
2917
+ tyfe,thank you for everything
2918
+ tyfyt,thank you for your time
2919
+ tyg,there you go
2920
+ tyj,thank you jesus
2921
+ tyl,text you later
2922
+ tylj,thank you lord jesus
2923
+ tym,thank you much
2924
+ tymbi,thought you might be interested
2925
+ tys,thank you sir
2926
+ tysm,thank you so much
2927
+ tysvm,thank you so very much
2928
+ tyt,take your time
2929
+ tyvm,thank you very much
2930
+ uri,uniform resource indicator url
2931
+ url,uniform resource locator internet address
2932
+ us,united states
2933
+ usa,united states of america
2934
+ usaf,united states air force
2935
+ usb,universal serial bus
2936
+ usbm,united states black metal
2937
+ usc,university of southern california
2938
+ uscg,united states coast guard
2939
+ usd,united states dollar
2940
+ usmc,united states marine corps
2941
+ usp,unique selling point
2942
+ usps,united states postal service
2943
+ uss,united states ship
2944
+ ussr,union of soviet socialist republics
2945
+ usw,und so weiter
2946
+ ut,unreal tournament
2947
+ utc,coordinated universal time under the counter
2948
+ utd,up to date
2949
+ ute,utility vehicle pickup truck
2950
+ utf,unicode transformation format
2951
+ utfl,use the force luke
2952
+ uth,up the hoods
2953
+ uti,urinary tract infection
2954
+ uto,unable to obtain
2955
+ utp,up town projects
2956
+ utr,under the radar
2957
+ uts,under the skin
2958
+ utt,under the table
2959
+ uv,unpleasant visual
2960
+ uw,you are welcome
2961
+ uws,upper west side
2962
+ ue,user experience
2963
+ uy,up yours
2964
+ va,various artists
2965
+ vbd,very big deal
2966
+ vbg,very big grin
2967
+ vbl,visible bra line
2968
+ vbr,variable bit rate
2969
+ vbs,very big smile
2970
+ vc,voice chat
2971
+ vcard,virtual business card
2972
+ vcd,video compact disc
2973
+ vcr,video cassette recorder
2974
+ vdu,visual display unit
2975
+ vfm,value for money
2976
+ vg,video game very good
2977
+ vga,video graphics array or adaptor
2978
+ vgc,very good condition
2979
+ vgg,very good game
2980
+ vgl,very good looking
2981
+ vgm,video game music
2982
+ vh1,video hits one
2983
+ vhf,very high frequency
2984
+ vhs,video home system
2985
+ vibe,atmosphere ambience
2986
+ vid,video
2987
+ vig,interest paid on a loan
2988
+ vin,vehicle identification number
2989
+ vip,very important person
2990
+ viz,adult comic namely
2991
+ vj,video jockey
2992
+ vlan,virtual local area network
2993
+ vlsi,very large scale integration
2994
+ vm,voice mail
2995
+ vma,video music awards
2996
+ vmi,virginia military institute
2997
+ vn,very nice
2998
+ vnc,virtual network computing
2999
+ vnds,very near dead stock
3000
+ vnh,very nice hand
3001
+ vns,very nice shot
3002
+ voa,voice of america
3003
+ vod,video on demand
3004
+ voip,voice over internet telephony
3005
+ vp,vice president
3006
+ vpl,visible panty line
3007
+ vpn,virtual private network
3008
+ vr,virtual reality
3009
+ vs,versus against
3010
+ vt,video tape
3011
+ vtl,visible thong line
3012
+ vtpr,view to permanent relationship
3013
+ vtr,video tape recorder
3014
+ vv,very very
3015
+ vvn,very very nice
3016
+ vwp,very well played very well put
3017
+ wafwot,what a fucking waste of time
3018
+ waj,what a joke
3019
+ wak,weird awful
3020
+ wal,what a loser
3021
+ wam,wait a minute what a mess
3022
+ wamh,with all my heart
3023
+ wamhas,with all my heart and soul
3024
+ waml,with all my love
3025
+ wap,wireless access point
3026
+ wapce,women are pure concentrated evil
3027
+ warez,cracked or pirate software
3028
+ was,wait and see
3029
+ way,where are you
3030
+ wayd,what are you doing
3031
+ waydrn,what are you doing right now
3032
+ waylt,what are you listening to
3033
+ wayoa,what are you on about
3034
+ wayta,what are you talking about
3035
+ waywo,what are you working on
3036
+ wbb,will be back
3037
+ wbm,want to be moderator
3038
+ wbn,would be nice
3039
+ wbr,with best regards
3040
+ wbs,write back soon
3041
+ wbt,will be there
3042
+ wbu,what about you
3043
+ wbw,white boy wasted
3044
+ wby,what bout you
3045
+ wcb,will call back
3046
+ wcg,world cyber games
3047
+ wcis,what can i say
3048
+ wcs,worst case scenario
3049
+ wcw,world championship wrestling
3050
+ wcyd,what can you do
3051
+ wd,well done
3052
+ wde,worst day ever
3053
+ wdfd,whoop dee fucking doo
3054
+ wdh,what da hell
3055
+ wdib,why do i bother
3056
+ wdic,what do i care
3057
+ wdim,what does it mean
3058
+ wditot,why did not i think of that
3059
+ wdmb,will do my best
3060
+ wdoml,worst day of my life
3061
+ wdtm,what does that mean
3062
+ wdud,what do you do
3063
+ wdum,what do you mean
3064
+ wdut,what do you think
3065
+ wdw,who dares wins
3066
+ wdy,why do not you
3067
+ wdyd,what did you do
3068
+ wdydt,why did you do that what did you do today
3069
+ wdye,what did you expect
3070
+ wdyg,where did you go
3071
+ wdym,what do you mean
3072
+ wdymbt,what do you mean by that
3073
+ wdys,what did you say
3074
+ wdyt,what do you think
3075
+ wdyw,what do you want
3076
+ wdywfm,what do you want from me
3077
+ wdywt,what did you wear today
3078
+ wdywtta,what do you want to talk about
3079
+ wef,with effect from
3080
+ wep,wireless encryption protocol
3081
+ wfyb,whatever floats your boat
3082
+ whyb,where have you been
3083
+ whyd,what have you done
3084
+ wia,wounded in action
3085
+ wip,work in progress
3086
+ wir,when it is ready
3087
+ with,where in the hell
3088
+ witw,what in the world
3089
+ wiuwy,what is up with you
3090
+ wiwt,what i wore today wish i was there
3091
+ wiwwu,wish i was with you
3092
+ wiwwy,what is wrong with you
3093
+ wiyp,what is your problem
3094
+ wjd,what jesus did
3095
+ wk,white knight
3096
+ wks,well kept secret
3097
+ wkyp,will keep you posted
3098
+ wlm,windows live messenger
3099
+ wltm,would like to meet
3100
+ wlyb,who loves you baby
3101
+ wlyk,will let you know
3102
+ wm,woman marine
3103
+ wma,windows media audio
3104
+ wmd,weapons of mass destruction
3105
+ wmf,wagging my finger
3106
+ wmg,warner music group
3107
+ wml,wish me luck
3108
+ wmmows,wash my mouth out with soap
3109
+ wmp,windows media player with much pleasure
3110
+ wmv,windows media video
3111
+ wmyb,what makes you beautiful
3112
+ wn,why not what is new
3113
+ wnditwb,we never did it this way before
3114
+ wnl,within normal limits
3115
+ wnohgb,where no one has gone before
3116
+ wntt,we need to talk
3117
+ wnwy,what is new with you
3118
+ woat,worst of all time
3119
+ wob,waste of bandwith
3120
+ woc,women of color
3121
+ woe,what on earth
3122
+ wof,while on fire
3123
+ wog,offensive term for a black person a foreigner
3124
+ wom,women over mates
3125
+ wombat,waste of money brains and time
3126
+ wos,waste of space wife over shoulder
3127
+ wotam,waste of time and money
3128
+ wotcher,what are you up to
3129
+ wotd,word of the day
3130
+ wotlk,wrath of the lich king
3131
+ wots,word on the street
3132
+ wp,wrong person well played
3133
+ wpa,wi fi protected access
3134
+ wpm,words per minute
3135
+ wpww,white pride world wide
3136
+ wr,warm regards
3137
+ wrt,with regard to
3138
+ wru,where are you
3139
+ wrud,what are you doing
3140
+ wruta,what are you talking about
3141
+ wryd,what are you doing
3142
+ wryta,what are you talking about
3143
+ wsic,why should i care
3144
+ wsm,woman seeking man
3145
+ wsp,what is up
3146
+ wss,why so serious
3147
+ wst,we are still friends
3148
+ wsul,will see you later
3149
+ wswta,what shall we talk about
3150
+ wt,what the or who the
3151
+ wta,winner takes all
3152
+ wtb,want to buy
3153
+ wtbs,with that being said
3154
+ wtc,world trade center what the crap
3155
+ wtd,what the deuce
3156
+ wtdt,what to do today
3157
+ wtdta,where they do that at
3158
+ wtft,what the french toast
3159
+ wtg,way to go
3160
+ wtgp,way to go partner
3161
+ wtgp,want to go private
3162
+ wth,what or where or who the hell
3163
+ wthay,who the hell are you
3164
+ wthc,who the hell cares
3165
+ wthigo,what the hell is going on
3166
+ wthit,what the hell is that
3167
+ wthiwwy,what the hell is wrong with you
3168
+ wthn,why the heck not
3169
+ wthru,who the hell are you
3170
+ wtii,what time is it
3171
+ wtk,want to know
3172
+ wtl,will talk later
3173
+ wtlw,welcome to last week
3174
+ wtm,what is the matter
3175
+ wtmi,way too much information
3176
+ wtml,welcome to my life
3177
+ wtmw,welcome to my world
3178
+ wto,world trade organization
3179
+ wtp,what is the point
3180
+ wtt,want to trade
3181
+ wttc,welcome to the club
3182
+ wttir,when the time is right
3183
+ wttj,welcome to the jungle
3184
+ wttm,without thinking too much
3185
+ wtw,walk through walls walk this way
3186
+ wty,why thank you
3187
+ wtyo,whatever turns you on
3188
+ wuciwug,what you see is what you get
3189
+ wud,what you doing
3190
+ wuf,where are you from
3191
+ wug,what you got where you going
3192
+ wugowm,will you go out with me
3193
+ wul,watched user list
3194
+ wula,what are you looking at
3195
+ wullnp,wishing you long life and prosperity
3196
+ wum,woman wind up merchant
3197
+ wuw,what you want
3198
+ wuwcb,what do you want to chat about
3199
+ wuwh,wish you were here
3200
+ wuwt,what is up with that
3201
+ wuwta,what you want to talk about
3202
+ wuwtb,what you want to talk bout
3203
+ wuwu,what is up with you
3204
+ ww,white widow white woman
3205
+ wwa,wiggers with attitude
3206
+ wwbd,what would batman do
3207
+ wwcnd,what would chuck norris do
3208
+ wwe,world wrestling entertainment
3209
+ wwf,world wildlife fund world wrestling federation
3210
+ wwic,why would i care
3211
+ wwit,what was i thinking
3212
+ wwjbd,what would jason bourne do
3213
+ wwjd,what would jesus do
3214
+ wwjp,what would jesus post
3215
+ wwotw,wicked witch of the west
3216
+ wwtbam,who wants to be a millionaire
3217
+ wwu,where were you
3218
+ www,world wide web
3219
+ wwwy,what is wrong with you
3220
+ wwy,where were you
3221
+ wwyd,what would you do
3222
+ wwydt,why would you do that
3223
+ wya,where you at
3224
+ wyatb,wish you all the best
3225
+ wyb,watch your back
3226
+ wybd,what have you been doing
3227
+ wybmv,will you be my valentine
3228
+ wycm,will you call me
3229
+ wyd,what you doing
3230
+ wydn,what you doing now
3231
+ wyf,what is your favorite
3232
+ wyg,what you get
3233
+ wygowm,will you go out with me
3234
+ wyk,would you kindly
3235
+ wyl,whatever you like
3236
+ wylaboctgwtr,would you like a bowl of cream to go with that remark
3237
+ wylasomwtc,would you like a saucer of milk with that comment
3238
+ wylion,whether you like it or not
3239
+ wylscwtw,would you like some cheese with that whine
3240
+ wylt,what you listening to
3241
+ wym,watch your mouth what you mean
3242
+ wymm,will you marry me
3243
+ wyn,what is your name
3244
+ wyp,what is your problem what is your point
3245
+ wyr,would you rather
3246
+ wys,what you said
3247
+ wysiwyg,what you see is what you get
3248
+ wyta,what you talking about
3249
+ wyut,what you up to
3250
+ wyw,whatever you want
3251
+ wywh,wish you were here
3252
+ wywta,what you want to talk about
3253
+ yagb,you are not grizz baby
3254
+ yala,you always live again
3255
+ yana,you are not alone
3256
+ yatb,you are the best
3257
+ yatk,you are too kind
3258
+ yatloml,you are the love of my life
3259
+ yavw,you are very welcome
3260
+ yaw,you are welcome
3261
+ ybs,you will be sorry
3262
+ ybtj,you be the judge
3263
+ ybw,you have been warned
3264
+ ybwm,you belong with me
3265
+ ycmiu,you could not make it up
3266
+ ycmu,you crack me up
3267
+ ydek,you do not even know
3268
+ ydi,you deserve it
3269
+ ydk,you do not know
3270
+ ydl,yellow dog linux
3271
+ ydms,you do not make sense
3272
+ ydmt,you do not mean that
3273
+ yds,you do not say
3274
+ ydu,you do not understand
3275
+ yf,your friend
3276
+ yfw,your face when
3277
+ yg,young gangster
3278
+ ygg,you go girl
3279
+ ygi,you got it
3280
+ yglt,you are going to love this
3281
+ ygm,you get me you have got mail
3282
+ ygpm,you have got private message
3283
+ ygtbk,you have got to be kidding
3284
+ ygtbkm,you have got to be kidding me
3285
+ ygti,you get the idea
3286
+ ygtr,you got that right
3287
+ yha,youth hostel association
3288
+ yhbt,you have been trolled
3289
+ yhbw,you have been warned
3290
+ yhgasp,you have got a serious problem
3291
+ yhl,you have lost
3292
+ yhm,you have mail
3293
+ yhni,you have no idea
3294
+ yhtbt,you had to be there
3295
+ yid,yes i do
3296
+ yik,yes i know
3297
+ yitb,yours in the bond
3298
+ yite,are you all right
3299
+ yjltg,you just lost the game
3300
+ yk,you are kidding
3301
+ ykhii,you know how it is
3302
+ ykims,you know it makes sense
3303
+ yktr,you know the rest
3304
+ ykw,you know who
3305
+ ykwim,you know what i mean
3306
+ ykwis,you know what i am saying
3307
+ ykylm,you know you love me
3308
+ yl,young lady
3309
+ yli,you love it
3310
+ ylm,you love me
3311
+ ylod,yellow light of death
3312
+ ylyl,you laugh you lose
3313
+ ym,yahoo messenger your mom
3314
+ ymbj,you must be joking
3315
+ ymca,young mens christian association
3316
+ ymcmb,young money cash money billionaires
3317
+ ymmd,you made my day
3318
+ ymml,you make me laugh
3319
+ ymms,you make me smile
3320
+ ymmv,your mileage may vary
3321
+ ymw,you are most welcome
3322
+ ynk,you never know
3323
+ ynw,you are not welcome
3324
+ ynwa,you will never walk alone
3325
+ yolf,you only live forever
3326
+ yolo,you only live once
3327
+ yomb,you owe me big
3328
+ yoyo,you are on your own
3329
+ yp,your problem yes please
3330
+ yqw,you are quite welcome
3331
+ yr,yea right
3332
+ yrg,you are good
3333
+ yrmv,your results may vary
3334
+ yro,your rights online
3335
+ yru,why are you
3336
+ ysc,your so cute
3337
+ ysi,you stupid idiot
3338
+ ysk,you should know
3339
+ ysmtu,you so made that up
3340
+ yss,you suck severely
3341
+ ysvw,you are so very welcome
3342
+ ysyl,you snooze you loose
3343
+ yt,you think
3344
+ ytb,you are the best
3345
+ ytd,year to date
3346
+ ytm,you are the man
3347
+ ytml,you will thank me later
3348
+ ytmnd,you are the man now dog
3349
+ yto,you are the one
3350
+ ytp,youtube poop
3351
+ yttm,you talk too much you talking to me
3352
+ yum,said when something tastes good or is attractive
3353
+ yvw,you are very welcome
3354
+ yw,you are welcome
3355
+ ywca,young womens christian association
3356
+ ywimc,your wish is my command
3357
+ ywsyls,you win some you lose some
3358
+ ywu,yo waz up
tokenizer.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5c22fa558159c5c392a566722c250b92e643f5a630edbe0ec209db026100ee4e
3
+ size 3413910
twitter_sentiment.keras ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9cd528773fc8b174f48ae9f6a13d40691a24b29fab602d205b308b7943685c04
3
+ size 163764200