txtspk 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/.travis.yml +0 -0
- data/Rakefile +8 -0
- data/lib/txtspk/version.rb +1 -1
- data/lib/txtspk.rb +895 -50
- data/spec/txtspk_spec.rb +23 -0
- data/txtspk.gemspec +6 -1
- metadata +41 -5
data/.travis.yml
ADDED
File without changes
|
data/Rakefile
CHANGED
data/lib/txtspk/version.rb
CHANGED
data/lib/txtspk.rb
CHANGED
@@ -7,7 +7,7 @@ class String
|
|
7
7
|
end
|
8
8
|
|
9
9
|
module Txtspk
|
10
|
-
|
10
|
+
|
11
11
|
CONTRACTIONS = {
|
12
12
|
'\1n\'t' => ['(are|can|could|did|does|do|had|ought|has|should|have|is|were|might|must|will|would) not', '(can)not', '(sha)ll not'],
|
13
13
|
'\1\'d' => ['(it|i|she|he|who|they|we|you) (had|would)'],
|
@@ -17,64 +17,909 @@ module Txtspk
|
|
17
17
|
'\1\'ve' => ['(i|they|we|what|who|you) have'],
|
18
18
|
'\1\'re' => ['(they|we|what|who|you) are']
|
19
19
|
}
|
20
|
-
|
21
|
-
|
22
|
-
'
|
23
|
-
'
|
24
|
-
'
|
25
|
-
'
|
26
|
-
'
|
27
|
-
'
|
28
|
-
'
|
29
|
-
'
|
30
|
-
'
|
31
|
-
'
|
32
|
-
'
|
33
|
-
'
|
34
|
-
'
|
35
|
-
'
|
20
|
+
|
21
|
+
ABBREVIATIONS = {
|
22
|
+
'0' => ['zero'],
|
23
|
+
'1' => ['one'],
|
24
|
+
'10Q' => ['thank you'],
|
25
|
+
'121' => ['one to one'],
|
26
|
+
'1337' => ['leet', 'elite'],
|
27
|
+
'1457' => ['last'],
|
28
|
+
'1CE' => ['once'],
|
29
|
+
'2' => ['two', 'to', 'too'],
|
30
|
+
'26Y4U' => ['too sexy for you'],
|
31
|
+
'2BONO' => ['to be or not to be'],
|
32
|
+
'2DAY' => ['today'],
|
33
|
+
'2MOR' => ['tomorrow'],
|
34
|
+
'2n8' => ['two and eight'],
|
35
|
+
'3' => ['three'],
|
36
|
+
'4' => ['for', 'four'],
|
37
|
+
'411' => ['info'],
|
38
|
+
'4EVER' => ['forever'],
|
39
|
+
'4FRNFR' => ['for( ever)? and ever'],
|
40
|
+
'5' => ['five'],
|
41
|
+
'6' => ['six'],
|
42
|
+
'7' => ['seven'],
|
43
|
+
'7K' => ['sick'],
|
44
|
+
'8' => ['eight'],
|
45
|
+
'9' => ['nine'],
|
46
|
+
':)s' => ['smiles'],
|
47
|
+
'@TEOTD' => ['At The End Of The Day'],
|
48
|
+
'A3' => ['Anytime, Anywhere, Anyplace'],
|
49
|
+
'A41A14A' => ['All For One And One For All'],
|
50
|
+
'AAAAA' => ['American Association Against Acronym Abuse'],
|
51
|
+
'AAF' => ['As A Friend'],
|
52
|
+
'AAK' => ['Asleep At Keyboard'],
|
53
|
+
'AAMOF' => ['As a matter of fact'],
|
54
|
+
'AAMOI' => ['As A Matter Of Interest'],
|
55
|
+
'AAR' => ['At Any Rate'],
|
56
|
+
'AAR8' => ['At Any Rate'],
|
57
|
+
'AAS' => ['Alive And Smiling'],
|
58
|
+
'AATK' => ['Always At The Keyboard'],
|
59
|
+
'AAYF' => ['As Always, Your Friend'],
|
60
|
+
'AB' => ['Ass Backwards'],
|
61
|
+
'ABITHIWT' => ['A bird In The Hand Is Worth Two In The Bush'],
|
62
|
+
'ABRS' => ['Abbreviations'],
|
63
|
+
'ABT2' => ['About To'],
|
64
|
+
'ACD' => ['Alt Control Delete'],
|
65
|
+
'ACE' => ['Access Control Entry'],
|
66
|
+
'ACK' => ['Acknowledgement'],
|
67
|
+
'ADAD' => ['Another Day Another Dollar'],
|
68
|
+
'ADBB' => ['All Done Bye Bye'],
|
69
|
+
'ADIH' => ['Another Day In Hell'],
|
70
|
+
'ADIP' => ['Another Day In Paradise'],
|
71
|
+
'ADN' => ['Any day now'],
|
72
|
+
'ADN' => ['Any day now'],
|
73
|
+
'ADR' => ['Address'],
|
74
|
+
'AEAP' => ['As Early As Possible'],
|
75
|
+
'AFAGAY' => ['A Friend As Good As You'],
|
76
|
+
'AFAHMASP' => ['A Fool And His Money Are Soon Parted'],
|
77
|
+
'AFAIC' => ['As far as I\'m concerned'],
|
78
|
+
'AFAICS' => ['As Far As I Can See'],
|
79
|
+
'AFAICT' => ['As far as I can tell'],
|
80
|
+
'AFAIK' => ['As Far As I Know'],
|
81
|
+
'AFAIU' => ['As Far As I Understand'],
|
82
|
+
'AFAIUI' => ['As Far As I Understand It'],
|
83
|
+
'AFAP' => ['As Far As Possible'],
|
84
|
+
'AFC' => ['Away From Computer'],
|
85
|
+
'AFDN' => ['Any Fucking Day Now'],
|
86
|
+
'AFIAA' => ['As Far As I Am Aware'],
|
87
|
+
'AFINIAFI' => ['A Friend In Need Is A Friend Indeed'],
|
88
|
+
'AFK' => ['Away From Keyboard'],
|
89
|
+
'AFU' => ['All fucked up'],
|
90
|
+
'AFZ' => ['Acronym free zone'],
|
91
|
+
'AGKWE' => ['And God Knows What Else'],
|
92
|
+
'AIAMU' => ['And I\'m a monkey\'s uncle'],
|
93
|
+
'AIH' => ['As It Happens'],
|
94
|
+
'AIMB' => ['As I Mentioned Before'],
|
95
|
+
'AIMP' => ['Always In My Prayers'],
|
96
|
+
'AISE' => ['As I Said Earlier'],
|
97
|
+
'AISI' => ['As I see it'],
|
98
|
+
'AKA' => ['Also Known As'],
|
99
|
+
'ALAP' => ['As Late As Possible'],
|
100
|
+
'ALOL' => ['Actually Laughing Out Loud'],
|
101
|
+
'ALTG' => ['Act Locally, Think Globally'],
|
102
|
+
'AMAP' => ['As Many As Possible'],
|
103
|
+
'AMBW' => ['All my best wishes'],
|
104
|
+
'AMF' => [' Adios, motherfucker!'],
|
105
|
+
'AML' => ['All My Love'],
|
106
|
+
'ANFAWFOW' => ['And now for a word from our web sponsor'],
|
107
|
+
'ANFSCD' => ['And Now For Something Completely Different'],
|
108
|
+
'AOAS' => ['All of a sudden'],
|
109
|
+
'AOB' => ['Abuse Of Bandwidth'],
|
110
|
+
'AOL' => ['Army of lamers'],
|
111
|
+
'AP' => ['Apple pie'],
|
112
|
+
'ASAFP' => ['As Soon As "Friggin" Possible'],
|
113
|
+
'ASAP' => ['As Soon As Possible'],
|
114
|
+
'ASL' => ['Age, Sex, Location?'],
|
115
|
+
'ASLMH' => ['Age/Sex/Location/Music/Hobbies?'],
|
116
|
+
'ATK' => ['At The Keyboard'],
|
117
|
+
'ATM' => ['At The Moment'],
|
118
|
+
'ATST' => ['At the same time'],
|
119
|
+
'ATW' => ['All the Web or Around the Web'],
|
120
|
+
'AWGTHTGT' => ['Are we going to have to go through this again?'],
|
121
|
+
'AWOL' => ['Absent Without Leave'],
|
122
|
+
'AYK' => ['As You Know'],
|
123
|
+
'AYSOS' => ['Are You Stupid Or Something?'],
|
124
|
+
'AYTMTB' => ['And you\'re telling me this because?'],
|
125
|
+
'B' => ['be'],
|
126
|
+
'B4' => ['Before'],
|
127
|
+
'B4N' => ['Bye For Now'],
|
128
|
+
'B4U' => ['Before You'],
|
129
|
+
'B4YKI' => ['Before You Know It'],
|
130
|
+
'BAG' => ['Bursting A Gut'],
|
131
|
+
'BAK' => ['Back At Keyboard'],
|
132
|
+
'BAU' => ['Business As Usual'],
|
133
|
+
'BB' => ['Bathroom break'],
|
134
|
+
'BB4N' => ['Bye-Bye for Now'],
|
135
|
+
'BBBG' => ['Bye Bye Be Good'],
|
136
|
+
'BBFBBM' => ['Body by Fisher, brains by Mattel'],
|
137
|
+
'BBFN' => ['Bye-Bye for Now'],
|
138
|
+
'BBIAB' => ['Be back in a bit'],
|
139
|
+
'BBIAF' => ['Be back in a few'],
|
140
|
+
'BBIAS' => ['Be Back In A Sec'],
|
141
|
+
'BBIAW' => ['Be Back In A While'],
|
142
|
+
'BBL' => ['Be Back Later'],
|
143
|
+
'BBN' => ['Bye, Bye Now'],
|
144
|
+
'BBS' => ['Be Back Soon'],
|
145
|
+
'BBSD' => ['Be Back Soon Darling'],
|
146
|
+
'BBSL' => ['Be Back Sooner or Later'],
|
147
|
+
'BBT' => ['Be Back Tomorrow'],
|
148
|
+
'BC' => ['Because'],
|
149
|
+
'BCBS' => ['Big company, big school'],
|
150
|
+
'BCNU' => ['be seeing you'],
|
151
|
+
'BCOZ' => ['Because'],
|
152
|
+
'BD' => ['Big Deal'],
|
153
|
+
'BDC' => ['Big dumb company or Big dot com'],
|
154
|
+
'BDN' => ['Big damn number'],
|
155
|
+
'BEOS' => ['Nudge'],
|
156
|
+
'BF' => ['Boyfriend'],
|
157
|
+
'BFD' => ['Big fucking deal'],
|
158
|
+
'BFF' => ['Best Friends Forever'],
|
159
|
+
'BFN' => ['Bye For Now'],
|
160
|
+
'BG' => ['Big grin'],
|
161
|
+
'BHOF' => ['Bald headed old fart'],
|
162
|
+
'BIF' => ['Basis in fact or before I forget'],
|
163
|
+
'BIOYN' => ['Blow it Out Your Nose'],
|
164
|
+
'BITD' => ['Back in the day'],
|
165
|
+
'BITMT' => ['But in the meantime'],
|
166
|
+
'BKA' => ['Better Known As'],
|
167
|
+
'BM' => ['Byte me'],
|
168
|
+
'BMOTA' => ['Byte me on the ass'],
|
169
|
+
'BMW' => ['Be My Wife'],
|
170
|
+
'BNF' => ['Big name fan'],
|
171
|
+
'BO' => ['buzz off'],
|
172
|
+
'BOHICA' => ['Bend over, here it comes again'],
|
173
|
+
'BOT' => ['Back on topic'],
|
174
|
+
'BR' => ['Bathroom'],
|
175
|
+
'BRB' => ['Be Right Back'],
|
176
|
+
'BRT' => ['Be Right There'],
|
177
|
+
'BS' => ['Big Smile'],
|
178
|
+
'BSF' => ['But Seriously, Folks'],
|
179
|
+
'BT' => ['Byte This'],
|
180
|
+
'BTA' => ['But then again or Before the attacks'],
|
181
|
+
'BTDT' => ['been there done that'],
|
182
|
+
'BTDTGTS' => ['Been There, Done That, Got The T-shirt'],
|
183
|
+
'BTHOOM' => ['Beats The Heck Out Of Me'],
|
184
|
+
'BTOBS' => ['Be there or be square'],
|
185
|
+
'BTSOOM' => ['Beats the shit out of me'],
|
186
|
+
'BTW' => ['By The Way'],
|
187
|
+
'BTWBO' => ['Be there with bells on'],
|
188
|
+
'bugly' => ['Butt Ugly'],
|
189
|
+
'BW' => ['Best Wishes'],
|
190
|
+
'BWDIK' => ['But what do I know?'],
|
191
|
+
'BWO' => ['Black, white or other'],
|
192
|
+
'BYKT' => ['But you Knew That'],
|
193
|
+
'BYORL' => ['Bring your own rocket launcher'],
|
194
|
+
'C' => ['see'],
|
195
|
+
'C4N' => ['Ciao for now'],
|
196
|
+
'CB' => ['Chat brat'],
|
197
|
+
'CFD' => ['Call for discussion'],
|
198
|
+
'CFV' => ['Call for vote'],
|
199
|
+
'CIAO' => ['Goodbye (in Italian)'],
|
200
|
+
'CID' => ['consider it done'],
|
201
|
+
'CIS' => ['CompuServe Information Service'],
|
202
|
+
'CMF' => ['Count my fingers'],
|
203
|
+
'CNP' => ['Continued in my next post'],
|
204
|
+
'COB' => ['Close Of Business'],
|
205
|
+
'CofS' => ['Church of Scientology'],
|
206
|
+
'COZ' => ['because'],
|
207
|
+
'CP' => ['Sleepy'],
|
208
|
+
'CP' => ['Cross post'],
|
209
|
+
'CRAFT' => ['Can\'t remember a fucking thing'],
|
210
|
+
'CRAP' => ['Cheap, redundant assorted products'],
|
211
|
+
'CT' => ['City'],
|
212
|
+
'CTC' => ['Choking the chicken'],
|
213
|
+
'CTN' => ['Can\'t Talk Now'],
|
214
|
+
'CU' => ['See You'],
|
215
|
+
'CUL' => ['See You Later'],
|
216
|
+
'CUL8ER' => ['See You Later'],
|
217
|
+
'CUL8R' => ['See You Later'],
|
218
|
+
'CUL8TR' => ['See you later'],
|
219
|
+
'CUNS' => ['See You In School!'],
|
220
|
+
'CUZ' => ['Because'],
|
221
|
+
'CWOT' => ['Complete Waste Of Time'],
|
222
|
+
'CWYL' => ['Chat with you later'],
|
223
|
+
'CY' => ['Calm Yourself'],
|
224
|
+
'CYA' => ['See Ya'],
|
225
|
+
'CYL' => ['See You Later'],
|
226
|
+
'CYT' => ['See You Tomorrow'],
|
227
|
+
'DA' => ['the'],
|
228
|
+
'DAMIFINO' => ['Damn, if I know'],
|
229
|
+
'DARFC' => ['Ducking And Running For Cover'],
|
230
|
+
'DBAU' => ['Doing business as usual'],
|
231
|
+
'DD' => ['Due diligence'],
|
232
|
+
'DDD' => ['Direct distance dial'],
|
233
|
+
'DF' => ['Dear Friend'],
|
234
|
+
'DH' => ['Dear Hubby or Husband'],
|
235
|
+
'DIKU' => ['Do I Know You'],
|
236
|
+
'DILLIGAD' => ['Do I look like I give a damn?'],
|
237
|
+
'DILLIGAF' => ['Do I look like I give a fuck?'],
|
238
|
+
'DILLIGAS' => ['Do I look like I give a shit?'],
|
239
|
+
'DINK' => ['Double Income No Kids'],
|
240
|
+
'DIY' => ['Do it yourself'],
|
241
|
+
'DL' => ['Download'],
|
242
|
+
'DNC' => ['Does Not Compute'],
|
243
|
+
'DND' => ['Do Not Disturb'],
|
244
|
+
'DUST' => ['Did You See That?'],
|
245
|
+
'DWL' => ['Dying with laughter'],
|
246
|
+
'DWYM' => ['Does what you mean'],
|
247
|
+
'DXNRY' => ['Dictionary'],
|
248
|
+
'DYLM' => ['do you like me'],
|
249
|
+
'DYOFDW' => ['Do Your Own Fucking Dirty Work'],
|
250
|
+
'DYSTSOTT' => ['Did you see the size of that thing?'],
|
251
|
+
'E123' => ['Easy as One, Two, Three'],
|
252
|
+
'EAK' => ['Eating at Keyboard'],
|
253
|
+
'EG' => ['Evil grin'],
|
254
|
+
'EL' => ['Evil Laugh'],
|
255
|
+
'EM' => ['Excuse Me?'],
|
256
|
+
'EMFJI' => ['Excuse me for jumping in'],
|
257
|
+
'EOD' => ['End of discussion'],
|
258
|
+
'EOM' => ['End of message'],
|
259
|
+
'EOT' => ['End of transmission'],
|
260
|
+
'ESO' => ['Equipment smarter than operator'],
|
261
|
+
'EULA' => ['End-User License Agreement'],
|
262
|
+
'EWI' => ['E-mailing while intoxicated'],
|
263
|
+
'EZ' => ['easy'],
|
264
|
+
'F2F' => ['Flesh to flesh or Face to face'],
|
265
|
+
'F2T' => ['free to talk'],
|
266
|
+
'FAB' => ['Features, attributes, benefits'],
|
267
|
+
'FAI' => ['Frequently argued issue'],
|
268
|
+
'FAQ' => ['Frequently Asked Questions'],
|
269
|
+
'FAQL' => ['Frequently Asked Questions List'],
|
270
|
+
'FAWC' => ['For Anyone Who Cares'],
|
271
|
+
'FBKS' => ['Failure between keyboard and seat'],
|
272
|
+
'FBOW' => ['For better or worse'],
|
273
|
+
'FBUGLY' => ['Fucking Butt Ugly'],
|
274
|
+
'FC' => ['Fingers Crossed'],
|
275
|
+
'FE' => ['Fatal error'],
|
276
|
+
'FF' => ['Friends Forever'],
|
277
|
+
'FFPN' => ['Fresh fields and pastures new'],
|
278
|
+
'FISH' => ['First in, Still Here'],
|
279
|
+
'FITB' => ['Fill in the Blanks'],
|
280
|
+
'FIWDIM' => ['Fuck It, We\'ll Do It Monday...'],
|
281
|
+
'FO' => ['fuck off'],
|
282
|
+
'FOAD' => ['Fuck Off And Die'],
|
283
|
+
'FOAF' => ['Friend of a friend'],
|
284
|
+
'FOC' => ['Free of Charge'],
|
285
|
+
'FOCL' => ['Falling off chair laughing'],
|
286
|
+
'FOFL' => ['Falling on Floor Laughing'],
|
287
|
+
'FOTFLOL' => ['falling on the floor, laughing out loud'],
|
288
|
+
'FRED' => ['fucking ridiculous electronic device'],
|
289
|
+
'FRM' => ['from'],
|
290
|
+
'FSCK' => ['File System Check'],
|
291
|
+
'FTASB' => ['Faster than a speeding bullet'],
|
292
|
+
'FTBSITTTD' => ['Fuck The Bull Shit It\'s Time To Throw Down'],
|
293
|
+
'FTFTFWMF' => ['Fuck Them, Fuck Those Fucking Worthless Mother Fuckers'],
|
294
|
+
'FTITM' => ['First Thing In The Morning'],
|
295
|
+
'FTL' => ['Faster than light'],
|
296
|
+
'FTMFW' => ['For The Mother Fucking Win'],
|
297
|
+
'FTMFWB' => ['For The Mutha Fuckin Win Bitches'],
|
298
|
+
'FTTB' => ['For the time being'],
|
299
|
+
'FTTYYGTS' => ['Fart That Tells You You Got To Shit'],
|
300
|
+
'FTW' => ['For The Win'],
|
301
|
+
'FUBAB' => ['fucked up beyond all belief'],
|
302
|
+
'FUBAR' => ['fucked up beyond all reason / recognition / repair'],
|
303
|
+
'FUBB' => ['Fucked Up Beyond Belief'],
|
304
|
+
'FUBIO' => ['Fuck You Buddy I\'m Out'],
|
305
|
+
'FUD' => ['Fear, Uncertainty and Doubt'],
|
306
|
+
'FWD' => ['Forward'],
|
307
|
+
'FWIW' => ['For What It\'s Worth'],
|
308
|
+
'FYA' => ['For your amusement'],
|
309
|
+
'FYI' => ['For Your Information'],
|
310
|
+
'FYIFV' => ['fuck you, I\'m fully vested'],
|
311
|
+
'FYIV' => ['fuck you, I\'m vested'],
|
312
|
+
'FYM' => ['For your misinformation'],
|
313
|
+
'FYYSOS' => ['Fuck you, you sack of shit'],
|
314
|
+
'G' => ['Grin'],
|
315
|
+
'G2G' => ['Got to Go'],
|
316
|
+
'G9' => ['Genius'],
|
317
|
+
'GA' => ['Go ahead'],
|
318
|
+
'GAL' => ['Get A Life'],
|
319
|
+
'GALGAL' => ['Give A Little Get A Little'],
|
320
|
+
'GBH' => ['Great Big Hug'],
|
321
|
+
'GBTW' => ['Get back to work'],
|
322
|
+
'GDR' => ['Grinning, Ducking and Running'],
|
323
|
+
'GF' => ['Girlfirend'],
|
324
|
+
'GFC' => ['Going for coffee'],
|
325
|
+
'GFETE' => ['Grinning from ear to ear'],
|
326
|
+
'GFN' => ['Gone for now'],
|
327
|
+
'GG' => ['Good Game'],
|
328
|
+
'GGN' => ['Gotta Go Now'],
|
329
|
+
'GHP' => ['Good hand partner (for online card games)'],
|
330
|
+
'GIGO' => ['Garbage in, garbage out'],
|
331
|
+
'GJIAGDVYCN' => ['Go jump in a god damn volcano, you fucking cave newt'],
|
332
|
+
'GL' => ['Good luck'],
|
333
|
+
'GLLA' => ['Great lovers love alike'],
|
334
|
+
'GLYASDI' => ['God loves you and so do I'],
|
335
|
+
'GMBO' => ['Giggling my butt off'],
|
336
|
+
'GMTA' => ['Great Minds Think Alike'],
|
337
|
+
'GMTFT' => ['Great minds think for themselves'],
|
338
|
+
'GNBLFY' => ['Got nothing but love for you'],
|
339
|
+
'GR8' => ['Great!'],
|
340
|
+
'GRD' => ['Grinning, running and ducking'],
|
341
|
+
'GRMBL' => ['Grumble'],
|
342
|
+
'GRRRR' => ['Growling'],
|
343
|
+
'GSOAS' => ['Go sit on a snake'],
|
344
|
+
'GSOH' => ['Good Sense Of Humour (or Good Salary, Own Home)'],
|
345
|
+
'GTG' => ['got to go'],
|
346
|
+
'GTGB' => ['Got to go, bye'],
|
347
|
+
'GTGP' => ['Got to go pee'],
|
348
|
+
'GTH' => ['Go To Hell'],
|
349
|
+
'GTSY' => ['Glad to see ya'],
|
350
|
+
'GYPO' => ['Get your pants off'],
|
351
|
+
'H8' => ['hate'],
|
352
|
+
'HAB' => ['Hot Asian babe'],
|
353
|
+
'HACK' => ['To use something not in its intended manner.'],
|
354
|
+
'HAGD' => ['Have a Great Day'],
|
355
|
+
'HAGN' => ['Have a good night'],
|
356
|
+
'HAGO' => ['Have a good one'],
|
357
|
+
'HAK' => ['Hugs and kisses'],
|
358
|
+
'HAND' => ['have a nice day'],
|
359
|
+
'HB' => ['Hurry back'],
|
360
|
+
'hbtu' => ['Happy Birthday To You'],
|
361
|
+
'HD' => ['Hold'],
|
362
|
+
'HF' => ['Hello, Friend'],
|
363
|
+
'HH' => ['Hold Hands'],
|
364
|
+
'HHIS' => ['Hanging head in shame'],
|
365
|
+
'HHO12K' => ['Ha ha, only half kidding (HHO1/2K)'],
|
366
|
+
'HHOJ' => ['Ha-Ha, Only Joking'],
|
367
|
+
'HHOK' => ['Ha ha, only kidding'],
|
368
|
+
'HHOS' => ['Ha-Ha, Only Being Serious'],
|
369
|
+
'HHTYAY' => ['Happy Holidays To You And Yours'],
|
370
|
+
'HIH' => ['Hope It Helps'],
|
371
|
+
'HIOOC' => ['Help! I\'m out of coffee'],
|
372
|
+
'HOAS' => ['Hold On A Sec'],
|
373
|
+
'HOHA' => ['Hollywood hacker'],
|
374
|
+
'HOT4U' => ['hot for you'],
|
375
|
+
'HTH' => ['Hope this helps'],
|
376
|
+
'HUA' => ['Heads up ace'],
|
377
|
+
'HUD' => ['How You Doing?'],
|
378
|
+
'HUGZ' => ['Hugs'],
|
379
|
+
'HUYA' => ['Head up your ass'],
|
380
|
+
'HW' => ['Homework'],
|
381
|
+
'I 1DR' => ['I Wonder'],
|
382
|
+
'IAC' => ['In any case'],
|
383
|
+
'IAE' => ['In any event'],
|
384
|
+
'IAITS' => ['It\'s all in the subject'],
|
385
|
+
'IANAC' => ['I am not a crook'],
|
386
|
+
'IANAE' => ['I Am Not an Expert'],
|
387
|
+
'IANAL' => ['I am not a lawyer'],
|
388
|
+
'IAT' => ['I Am Tired'],
|
389
|
+
'IAYL' => ['In A While'],
|
390
|
+
'IBRB' => ['I Will Be Right Back'],
|
391
|
+
'IBT' => ['In between technology'],
|
392
|
+
'IBTD' => ['I beg to differ'],
|
393
|
+
'IC' => ['I See'],
|
394
|
+
'ICBW' => ['I Could Be Wrong'],
|
395
|
+
'ICQ' => ['I Seek you'],
|
396
|
+
'ID10T' => ['Idiot'],
|
397
|
+
'IDC' => ['I Don\'t Care'],
|
398
|
+
'IDK' => ['I Don\'t Know'],
|
399
|
+
'IDL' => ['Ideal'],
|
400
|
+
'IDM' => ['It Does Not Matter'],
|
401
|
+
'IEF' => ['It\'s esther\'s fault'],
|
402
|
+
'IFAB' => ['I found a bug'],
|
403
|
+
'IFU' => ['I fucked up'],
|
404
|
+
'IGGP' => ['I gotta go pee'],
|
405
|
+
'IGTP' => ['I Get The Point'],
|
406
|
+
'IHAIM' => ['I Have Another Instant Message'],
|
407
|
+
'IHNO' => ['I Have No Opinion'],
|
408
|
+
'IHTFP' => ['I Have Truly Found Paradise'],
|
409
|
+
'IHTFP' => ['I Hate This Fucking Place'],
|
410
|
+
'IIIO' => ['Intel inside, idiot outside'],
|
411
|
+
'IIMAD' => ['If it makes any difference'],
|
412
|
+
'IIR' => ['If I Remember or If I Recall'],
|
413
|
+
'IIRC' => ['If I remember correctly'],
|
414
|
+
'IIWM' => ['If it were me'],
|
415
|
+
'ILICISCOMK' => ['I laughed, I cried, I spat/spilt coffee/crumbs/coke over my keyboard'],
|
416
|
+
'ILU' => ['I Love You'],
|
417
|
+
'ILY' => ['I love you'],
|
418
|
+
'IM' => ['Instant messaging'],
|
419
|
+
'IMCO' => ['In my considered opinion'],
|
420
|
+
'IMHO' => ['In My Honest/Humble Opinion'],
|
421
|
+
'IMNSHO' => ['in my not so humble opinion'],
|
422
|
+
'IMO' => ['In My Opinion'],
|
423
|
+
'IMOW' => ['In My Own Words'],
|
424
|
+
'IMPE' => ['In my previous/personal experience'],
|
425
|
+
'IMS' => ['I Am Sorry'],
|
426
|
+
'IMVHO' => ['In my very humble opinion'],
|
427
|
+
'INMP' => ['It\'s not my problem'],
|
428
|
+
'INPO' => ['In no particular order'],
|
429
|
+
'IOH' => ['I\'m outta here'],
|
430
|
+
'IOTTMCO' => ['Intuitively obvious to the most casual observer'],
|
431
|
+
'IOU' => ['I owe you'],
|
432
|
+
'IOW' => ['In Other Words'],
|
433
|
+
'IPN' => ['I\'m posting naked'],
|
434
|
+
'IRC' => ['Internet Relay Chat'],
|
435
|
+
'IRL' => ['In Real Life'],
|
436
|
+
'ISS' => ['I said so'],
|
437
|
+
'ISTM' => ['It Seems to Me'],
|
438
|
+
'ISTR' => ['I Seem To Remember'],
|
439
|
+
'ISWYM' => ['I See What You Mean'],
|
440
|
+
'ITM' => ['In the money'],
|
441
|
+
'IUM' => ['If You Must'],
|
442
|
+
'IUSS' => ['If you say so'],
|
443
|
+
'IYKWIM' => ['If you know what i mean'],
|
444
|
+
'IYKWIMAI' => ['If You Know What I Mean And I Think You Do'],
|
445
|
+
'IYO' => ['In your opinion'],
|
446
|
+
'IYQ' => ['I like you'],
|
447
|
+
'IYSS' => ['If you say so'],
|
448
|
+
'IYSWIM' => ['If you see what I mean'],
|
449
|
+
'JAD' => ['Just Another day'],
|
450
|
+
'JAFO' => ['Just another fucking onlooker'],
|
451
|
+
'JAM' => ['Just A Minute'],
|
452
|
+
'JAS' => ['Just a second'],
|
453
|
+
'JC' => ['Just checking'],
|
454
|
+
'JIC' => ['Just in case'],
|
455
|
+
'JK' => ['Just kidding'],
|
456
|
+
'JM2C' => ['Just My 2 Cents'],
|
457
|
+
'JOOTT' => ['Just one of those things'],
|
458
|
+
'JPYL' => ['Just pulling your leg'],
|
459
|
+
'JT' => ['Just Teasing'],
|
460
|
+
'JW' => ['Just wondering (Wondered)'],
|
461
|
+
'JYYC' => ['Just yanking your chain'],
|
462
|
+
'K' => ['okay'],
|
463
|
+
'KBD' => ['Keyboard'],
|
464
|
+
'KEWL' => ['Cool'],
|
465
|
+
'KFY' => ['Kiss for you'],
|
466
|
+
'KHUF' => ['Know How You Feel'],
|
467
|
+
'KIR' => ['Keep It Real'],
|
468
|
+
'KISS' => ['Keep It Simple, Stupid'],
|
469
|
+
'KIT' => ['Keep in touch'],
|
470
|
+
'KMA' => ['Kiss my ass'],
|
471
|
+
'KMRIA' => ['Kiss my royal Irish arse'],
|
472
|
+
'KOK' => ['Knock'],
|
473
|
+
'KOTC' => ['Kiss on the cheek'],
|
474
|
+
'KOTL' => ['Kiss on the lips'],
|
475
|
+
'KWIM' => ['Know what i mean'],
|
476
|
+
'KYPO' => ['Keep your pants on'],
|
477
|
+
'L8' => ['late'],
|
478
|
+
'L8ER' => ['later'],
|
479
|
+
'L8R' => ['Later'],
|
480
|
+
'L8RS' => ['Laters'],
|
481
|
+
'L8TR' => ['Later'],
|
482
|
+
'LAGNAF' => ['Let\'s all get naked and fuck!'],
|
483
|
+
'LAQ' => ['Lame ass quote'],
|
484
|
+
'LD' => ['Long distance'],
|
485
|
+
'LDR' => ['Long Distance Relationship'],
|
486
|
+
'LDTTWA' => ['Let\'s do the time warp again'],
|
487
|
+
'LIFO' => ['Last in, first out'],
|
488
|
+
'LLTA' => ['Lots and lots of thunderous applause'],
|
489
|
+
'LMAO' => ['Laugh My Ass Off'],
|
490
|
+
'LMFAO' => ['Laughing My Fucking Ass Off'],
|
491
|
+
'LMIRL' => ['Let\'s meet in real life'],
|
492
|
+
'LMK' => ['Let me know'],
|
493
|
+
'Lndn' => ['London'],
|
494
|
+
'LOL' => ['Laugh Out Loud'],
|
495
|
+
'LOL' => ['Lots Of Love'],
|
496
|
+
'LOLA' => ['Laugh Out Loud Again'],
|
497
|
+
'LOOL' => ['Laughing Outragously Out Loud'],
|
498
|
+
'LOPSOD' => ['Long on promises, short on delivery'],
|
499
|
+
'LQTM' => ['Laughing Quietly To Myself'],
|
500
|
+
'LRF' => ['Little rubber feet'],
|
501
|
+
'LTNS' => ['Long Time No See'],
|
502
|
+
'LTNT' => ['Long time, no talk'],
|
503
|
+
'LTR' => ['Long term relationship'],
|
504
|
+
'LULAB' => ['Love you like a brother'],
|
505
|
+
'LULAS' => ['Love you like a sister'],
|
506
|
+
'LV' => ['love'],
|
507
|
+
'LWR' => ['Launch When Ready'],
|
508
|
+
'LYL' => ['Love ya lots'],
|
509
|
+
'LYLAB' => ['Love You Like a Brother'],
|
510
|
+
'LYLAS' => ['Love you like a sister'],
|
511
|
+
'M8' => ['Mate'],
|
512
|
+
'M8 or M8' => ['Mate or Mates'],
|
513
|
+
'MFD' => ['Multi-Function Device'],
|
514
|
+
'MfG' => ['Mit freundlichen Gruessen'],
|
515
|
+
'MHBFY' => ['My Heart Bleeds For You'],
|
516
|
+
'MIHAP' => ['May I Have Your Attention Please'],
|
517
|
+
'MKOP' => ['My Kind Of Place'],
|
518
|
+
'MM' => ['Market Maker'],
|
519
|
+
'MMFU' => ['my mate fancies you'],
|
520
|
+
'MMHA2U' => ['My Most Humble Apologies To You'],
|
521
|
+
'MMS' => ['Multimedia Messaging System'],
|
522
|
+
'mo' => ['Moment'],
|
523
|
+
'mofo' => ['Mother Fucker'],
|
524
|
+
'MOMPL' => ['One Moment Please'],
|
525
|
+
'MOO' => ['Mud, Object-Oriented'],
|
526
|
+
'MOOS' => ['Member Of The Opposite Sex'],
|
527
|
+
'MorF' => ['Male or Female?'],
|
528
|
+
'MOSS' => ['Member Of The Same Sex'],
|
529
|
+
'MOTAS' => ['Member Of The Appropriate Sex'],
|
530
|
+
'MOTD' => ['Message Of The Day'],
|
531
|
+
'MOTSS' => ['Members Of The Same Sex'],
|
532
|
+
'MSG' => ['Message'],
|
533
|
+
'MTBF' => ['Mean Time Between Failure'],
|
534
|
+
'MTE' => ['My Thoughts Exactly'],
|
535
|
+
'MTFBWU' => ['may the force be with you'],
|
536
|
+
'MTFBWY' => ['May The Force Be With You'],
|
537
|
+
'MUBAR' => ['Messed up Beyond All Recognition'],
|
538
|
+
'MWBRL' => ['More Will Be Revealed Later'],
|
539
|
+
'MYOB' => ['Mind your own Business'],
|
540
|
+
'N00B' => ['Noobie (New Person)'],
|
541
|
+
'N1' => ['Nice One'],
|
542
|
+
'N2M' => ['Not To Mention'],
|
543
|
+
'NA' => ['Not applicable','n/a', 'Not affiliated'],
|
544
|
+
'NAK' => ['Nursing at keyboard'],
|
545
|
+
'NALOPKT' => ['Not A Lot of People Know That'],
|
546
|
+
'NAP' => ['Not a problem'],
|
547
|
+
'NBD' => ['No big deal'],
|
548
|
+
'NBIF' => ['No basis in fact'],
|
549
|
+
'NC' => ['No comment'],
|
550
|
+
'NCG' => ['New college graduate'],
|
551
|
+
'NE' => ['any'],
|
552
|
+
'NE1' => ['Anyone'],
|
553
|
+
'NE1' => ['anyone'],
|
554
|
+
'NE1 ER' => ['Anyone Here?'],
|
555
|
+
'NETHNG' => ['anything'],
|
556
|
+
'NF' => ['Nucking Futs', 'Fucking Nuts'],
|
557
|
+
'NFC' => ['No fucking clue'],
|
558
|
+
'NFI' => ['No fucking idea'],
|
559
|
+
'NFW' => ['No fucking way'],
|
560
|
+
'NG' => ['New gme'],
|
561
|
+
'NIFOC' => ['Nude in front of the computer'],
|
562
|
+
'NIM' => ['No internal message'],
|
563
|
+
'NIMBY' => ['Not in my back yard'],
|
564
|
+
'NIMQ' => ['Not in my queue'],
|
565
|
+
'NINJA' => ['No Income, No Job, or Assets'],
|
566
|
+
'NM' => ['NeverMind'],
|
567
|
+
'NMP' => ['Not my problem'],
|
568
|
+
'NO1' => ['no one'],
|
569
|
+
'NOYB' => ['None of your business'],
|
36
570
|
'NP' => ['no problem'],
|
37
|
-
'
|
38
|
-
'
|
39
|
-
'
|
40
|
-
'
|
41
|
-
'
|
42
|
-
'
|
43
|
-
'
|
44
|
-
'
|
45
|
-
'
|
46
|
-
'
|
47
|
-
'
|
48
|
-
'
|
49
|
-
'
|
50
|
-
'
|
51
|
-
'
|
52
|
-
'
|
53
|
-
'
|
54
|
-
'
|
55
|
-
|
56
|
-
|
571
|
+
'NQOCD' => ['Not quite our class, dear'],
|
572
|
+
'NRG' => ['Energy'],
|
573
|
+
'NRN' => ['No Reply Necessary'],
|
574
|
+
'NSFW' => ['Not Safe For Work'],
|
575
|
+
'NT' => ['No text'],
|
576
|
+
'NTK' => ['Nice To Know'],
|
577
|
+
'NTYMI' => ['Now That You Mention It'],
|
578
|
+
'NUFF' => ['Enough Said'],
|
579
|
+
'NVM' => ['Nevermind'],
|
580
|
+
'NW' => ['No Way!'],
|
581
|
+
'NYCFS' => ['New York City finger salute'],
|
582
|
+
'OAUS' => ['On an unrelated subject'],
|
583
|
+
'OBTW' => ['Oh, by the way'],
|
584
|
+
'OEM' => ['Original equipment manufacturer'],
|
585
|
+
'OIC' => ['Oh I See'],
|
586
|
+
'OK' => ['All Correct'],
|
587
|
+
'OLL' => ['Online love'],
|
588
|
+
'OMDB' => ['Over My Dead Body'],
|
589
|
+
'OMFG' => ['Oh my fucking God'],
|
590
|
+
'OMG' => ['Oh My God'],
|
591
|
+
'OMIK' => ['Open mouth, insert keyboard'],
|
592
|
+
'ONNA' => ['Oh no, not again!'],
|
593
|
+
'ONNTA' => ['Oh No, Not This Again'],
|
594
|
+
'OOC' => ['Out of character'],
|
595
|
+
'OOF' => ['Out Of Facility'],
|
596
|
+
'OOI' => ['Out Of Interest'],
|
597
|
+
'OOO' => ['Out of office'],
|
598
|
+
'OOTB' => ['Out of the box or Out of the blue'],
|
599
|
+
'OOTC' => ['Obligatory on topic comment'],
|
600
|
+
'OS' => ['Operating system'],
|
601
|
+
'OT' => ['Off topic'],
|
602
|
+
'OTOH' => ['On the other hand'],
|
603
|
+
'OTP' => ['On the Phone'],
|
604
|
+
'OTT' => ['Over The Top'],
|
605
|
+
'OTTOMH' => ['Off the Top of my Head'],
|
606
|
+
'OUSU' => ['Oh, You Shut Up'],
|
607
|
+
'OWTTE' => ['Or words to that effect'],
|
608
|
+
'OZ' => ['Australia'],
|
609
|
+
'PANS' => ['Pretty awesome new stuff'],
|
610
|
+
'PAW' => ['parents are watching'],
|
611
|
+
'PCM' => ['Please call me'],
|
612
|
+
'PD' => ['Public Domain'],
|
613
|
+
'PDOMA' => ['Pulled directly out of my ass'],
|
614
|
+
'PDQ' => ['Pretty Darn Quick'],
|
615
|
+
'PEBCAK' => ['Problem exists between chair and keyboard'],
|
616
|
+
'PIMP' => ['Peeing in my pants'],
|
617
|
+
'PITA' => ['Pain In The Arse'],
|
618
|
+
'PLS' => ['please'],
|
619
|
+
'PM' => ['Personal Message'],
|
620
|
+
'PMFJI' => ['Pardon me for jumping in'],
|
621
|
+
'PMIGBOM' => ['Put Mind In Gear Before Opening Mouth'],
|
622
|
+
'PMJI' => ['Pardon My Jumping In'],
|
623
|
+
'PML' => ['Piss Myself Laughing'],
|
624
|
+
'PMP' => ['Peeing my pants'],
|
625
|
+
'PMPF' => ['Piss My Pants Funny'],
|
626
|
+
'PO' => ['Piss off'],
|
627
|
+
'POETS' => ['Piss on everyone, tomorrow\'s Saturday'],
|
628
|
+
'PONA' => ['Person of no account'],
|
629
|
+
'POOF' => ['Good-bye'],
|
630
|
+
'POS' => ['Parent over shoulder'],
|
631
|
+
'POV' => ['Point of view'],
|
632
|
+
'PPL' => ['People'],
|
633
|
+
'PRT' => ['Party'],
|
634
|
+
'PRW' => ['Parents Are Watching'],
|
635
|
+
'PS' => ['Post Script'],
|
636
|
+
'PTB' => ['Please Text Back'],
|
637
|
+
'PU' => ['That Stinks'],
|
638
|
+
'PZA' => ['Pizza'],
|
639
|
+
'QL' => ['Quit Laughing!'],
|
640
|
+
'QS' => ['Quit Scrolling'],
|
641
|
+
'QT' => ['Cutie'],
|
642
|
+
'R' => ['are'],
|
643
|
+
'RAT' => ['Remotely activated trojan'],
|
644
|
+
'RBAY' => ['Right Back At Ya'],
|
645
|
+
'RBTL' => ['Read between the lines'],
|
646
|
+
'RD' => ['Research and development'],
|
647
|
+
'RE' => ['Regards or Hello Again'],
|
648
|
+
'REHI' => ['Hello again or Re-hi'],
|
649
|
+
'RFD' => ['Request For Discussion'],
|
650
|
+
'RFR' => ['Really fucking rich'],
|
651
|
+
'RFS' => ['Really fucking soon'],
|
652
|
+
'RKBA' => ['Right to keep and bear arms'],
|
653
|
+
'RL' => ['Real life'],
|
654
|
+
'RLF' => ['Real life friend'],
|
655
|
+
'RLR' => ['Earlier'],
|
656
|
+
'RMLB' => ['Read my lips baby'],
|
657
|
+
'RMMM' => ['Read my mail man!'],
|
658
|
+
'RN' => ['Right now!'],
|
659
|
+
'ROFL' => ['Rolling On The Floor Laughing'],
|
660
|
+
'ROFLMAO' => ['Rolling on the floor laughing my ass off'],
|
661
|
+
'ROFLOL' => ['Roll On Floor Lauging Out Loud'],
|
662
|
+
'ROTFL' => ['Rolling on the floor laughing'],
|
663
|
+
'ROTFLMAO' => ['Roll On The Floor Laughing My Ass Off'],
|
664
|
+
'ROTFLOL' => ['Rolling On The Floor Laughing Out Loud'],
|
665
|
+
'ROTM' => ['Right on the money'],
|
666
|
+
'RPG' => ['Role playing games'],
|
667
|
+
'RR' => ['Rest and relaxation'],
|
668
|
+
'RSN' => ['Real soon now'],
|
669
|
+
'RTBS' => ['Reason to be single'],
|
670
|
+
'RTDox' => ['Read the documentations'],
|
671
|
+
'RTFAQ' => ['Read the FAQ File'],
|
672
|
+
'RTFI' => ['read the fucking instructions'],
|
673
|
+
'RTFM' => ['read the fucking manual'],
|
674
|
+
'RTFM' => ['Read the Fucking Manual'],
|
675
|
+
'RTK' => ['Return to keyboard'],
|
676
|
+
'RTM' => ['Read the manual'],
|
677
|
+
'RU' => ['are you'],
|
678
|
+
'RUMORF' => ['Are You Male Or Female'],
|
679
|
+
'RUOK' => ['are you okay'],
|
680
|
+
'RUUP4IT' => ['Are You Up For It'],
|
681
|
+
'RX' => ['Regards'],
|
682
|
+
'RYO' => ['Roll your own'],
|
683
|
+
'S2R' => ['Send To Receive'],
|
684
|
+
'S4L' => ['Spam For Life'],
|
685
|
+
'SBIA' => ['Stands Back In Amazement'],
|
686
|
+
'SBTA' => ['Sorry, Being Thick Again'],
|
687
|
+
'SCNR' => ['Sorry, Could Not Resist'],
|
688
|
+
'SED' => ['Said Enough Darling'],
|
689
|
+
'SETE' => ['Smiling Ear to Ear'],
|
690
|
+
'SF' => ['Surfer Friendly or Science Fiction'],
|
691
|
+
'SFAIAA' => ['So Far As I Am Aware'],
|
692
|
+
'SFETE' => ['Smiling From Ear To Ear'],
|
693
|
+
'sfw' => ['Safe For Work'],
|
694
|
+
'SG4IT' => ['Search Google For It'],
|
695
|
+
'SH' => ['Shit Happens'],
|
696
|
+
'SITCOMs' => ['Single Income, Two Children, Oppressive Mortgage'],
|
697
|
+
'SITD' => ['Still In The Dark'],
|
698
|
+
'SK8' => ['Skate'],
|
699
|
+
'SLIRK' => ['Smart Little Rich Kid'],
|
700
|
+
'SMAIM' => ['Send Me An Instant Message'],
|
701
|
+
'SME' => ['Subject Matter Expert'],
|
702
|
+
'SMEM' => ['Send Me E-Mail'],
|
703
|
+
'SMPF' => ['Shit My Pants Funny'],
|
704
|
+
'SMS' => ['Short Message Service'],
|
705
|
+
'SNAFU' => ['Situation Normal, All Fucked Up'],
|
706
|
+
'SNAG' => ['Sensitive New Age Guy'],
|
707
|
+
'SNERT' => ['Snotty Nosed Egotistical Rotten Teenager'],
|
708
|
+
'SO' => ['Significant Other'],
|
709
|
+
'SOHF' => ['Sense Of Humor Failure'],
|
710
|
+
'SOL' => ['Shit Out of Luck'],
|
711
|
+
'SOP' => ['Standard Operating Procedure'],
|
712
|
+
'SorG' => ['Straight or Gay?'],
|
713
|
+
'SOZ' => ['sorry'],
|
714
|
+
'SRO' => ['Standing Room Only'],
|
715
|
+
'SSDD' => ['Same Shit Different Day'],
|
716
|
+
'SSEWBA' => ['Someday Soon, Everything Will Be Acronyms'],
|
717
|
+
'STATS' => ['Your sex and age'],
|
718
|
+
'STFU' => ['Shut The Fuck Up!'],
|
719
|
+
'STM' => ['Spank The Monkey'],
|
720
|
+
'STR8' => ['Straight'],
|
721
|
+
'STYS' => ['Speak To You Soon'],
|
722
|
+
'SUM1' => ['someone'],
|
723
|
+
'SUYF' => ['Shut Up You Fool'],
|
724
|
+
'SWAG' => ['Scientific Wild Ass Guess'],
|
725
|
+
'SWAK' => ['Sent (or Sealed) With A Kiss'],
|
726
|
+
'SWALK' => ['Sent with a loving Kiss'],
|
727
|
+
'SWDYT' => ['So What Do You Think?'],
|
728
|
+
'SWG' => ['Scientific Wild Guess'],
|
729
|
+
'SWTDRMZ' => ['Sweet Dreams'],
|
730
|
+
'SYS' => ['See You Soon'],
|
731
|
+
'T+' => ['Think positive'],
|
732
|
+
'TAFN' => ['That\'s all for now'],
|
733
|
+
'TAH' => ['Take a hike'],
|
734
|
+
'TARFU' => ['Things are really fucked up'],
|
735
|
+
'TAS' => ['Taking A Shower'],
|
736
|
+
'TB' => ['Text Back'],
|
737
|
+
'TBA' => ['To be advised'],
|
738
|
+
'TBC' => ['To be continued'],
|
739
|
+
'tbh' => ['To Be Honest'],
|
740
|
+
'TCB' => ['The Trouble Came Back!'],
|
741
|
+
'TDM' => ['Too Darn Many'],
|
742
|
+
'TDTM' => ['Talk dirty to me'],
|
743
|
+
'TEOTWAWK' => ['The end of the world as we know it'],
|
744
|
+
'TFDS' => ['That is For Darn Sure'],
|
745
|
+
'TFH' => ['Thread from hell'],
|
746
|
+
'TFN' => ['Thanks for nothing or Till further notice'],
|
747
|
+
'tfr' => ['Thanks For Reading'],
|
748
|
+
'TGIF' => ['Thank God it Is Friday'],
|
749
|
+
'THANQ' => ['thank you'],
|
750
|
+
'THNX 1.0' => ['Thanks a million'],
|
751
|
+
'THX' => ['Thank You'],
|
752
|
+
'THX or T' => ['Thanks'],
|
753
|
+
'THX, THN' => ['Thanks'],
|
754
|
+
'THX40' => ['Thanks For Nothing'],
|
755
|
+
'TIA' => ['Thanks in advance'],
|
756
|
+
'TIAIL' => ['Think I am in love'],
|
757
|
+
'TIC' => ['Tongue in cheek'],
|
758
|
+
'TLA' => ['Three letter acronym'],
|
759
|
+
'TLGO' => ['The list goes on'],
|
760
|
+
'TLK2UL' => ['Talk to You Later'],
|
761
|
+
'TM' => ['Trust me'],
|
762
|
+
'TMA' => ['Too many acronyms'],
|
763
|
+
'TMB' => ['Text Me Back'],
|
764
|
+
'TMFA' => ['Too many fucking acronyms'],
|
765
|
+
'TMI' => ['Too much information'],
|
766
|
+
'TMIY' => ['Take me Im yours'],
|
767
|
+
'TMK' => ['To my knowledge'],
|
768
|
+
'TMTOWTDI' => ['There\'s more than one way to do it'],
|
769
|
+
'TNA' => ['Temporarily not available'],
|
770
|
+
'TNC' => ['Tongue In Cheek'],
|
771
|
+
'TNTLLAC' => ['Try Not To Look Like A Cock'],
|
772
|
+
'TNX' => ['Thanks'],
|
773
|
+
'TOM' => ['Tomorrow'],
|
774
|
+
'TOS' => ['Terms of service'],
|
775
|
+
'TOT' => ['Tons of Time'],
|
776
|
+
'TP' => ['Team Player'],
|
777
|
+
'TPC' => ['The phone company'],
|
778
|
+
'TPTB' => ['The powers that be'],
|
779
|
+
'TSR' => ['Totally stuck in ram'],
|
780
|
+
'TSWC' => ['Tell someone who cares'],
|
781
|
+
'TTBOMK' => ['To the best of my knowledge'],
|
782
|
+
'TTFN' => ['Ta-Ta For Now!'],
|
783
|
+
'TTG' => ['Time to Go'],
|
784
|
+
'TTS' => ['Text to Speech'],
|
785
|
+
'TTT' => ['That\'s the ticket or to the top'],
|
786
|
+
'TTTT' => ['To Tell The Truth'],
|
787
|
+
'TTUL' => ['Talk to You Later'],
|
788
|
+
'TTWIG' => ['That\'s the way it goes'],
|
789
|
+
'TTYL' => ['Talk To You Later'],
|
790
|
+
'TTYL8R' => ['Talk to you later'],
|
791
|
+
'TVN' => ['Thank You Very Much'],
|
792
|
+
'TW' => ['Team Work'],
|
793
|
+
'TWIMC' => ['To whom it may concern'],
|
794
|
+
'TWT' => ['Twat!'],
|
795
|
+
'TXS' => ['Thanks'],
|
796
|
+
'TXT BAC' => ['text back'],
|
797
|
+
'TY' => ['Thank you'],
|
798
|
+
'TYVM' => ['thank you very much'],
|
799
|
+
'U' => ['You'],
|
800
|
+
'U2' => ['You Too'],
|
801
|
+
'U4E' => ['Yours For Ever'],
|
802
|
+
'UI!' => ['You Idiot!'],
|
803
|
+
'UL' => ['You Will?'],
|
804
|
+
'unPC' => ['unPolitically correct'],
|
805
|
+
'UR' => ['your'],
|
806
|
+
'UR' => ['You Are?'],
|
807
|
+
'URAQT' => ['you are a cutie'],
|
808
|
+
'URAS' => ['you are a star'],
|
809
|
+
'URT1' => ['Your are the one'],
|
810
|
+
'URW' => ['You are welcome'],
|
811
|
+
'URWS' => ['You Are Wise'],
|
812
|
+
'URYY4M' => ['You are too wise for me'],
|
813
|
+
'VBG' => ['Very Big Grin'],
|
814
|
+
'VBS' => ['Very Big Smile'],
|
815
|
+
'VC' => ['Venture capital'],
|
816
|
+
'VEG' => ['Very Evil Grin'],
|
817
|
+
'VFM' => ['Value for money'],
|
818
|
+
'VM' => ['Voice mail'],
|
819
|
+
'VRBS' => ['Virtual reality bullshit'],
|
820
|
+
'VSF' => ['Very Sad Face'],
|
821
|
+
'W' => ['with'],
|
822
|
+
'W8' => ['Wait...'],
|
823
|
+
'WAD' => ['Without A Doubt'],
|
824
|
+
'WAG' => ['Wild Ass Guess'],
|
825
|
+
'WAI' => ['What an idiot'],
|
826
|
+
'WAMBAM' => ['Web application meets brick and mortar'],
|
827
|
+
'WAN2' => ['want to'],
|
828
|
+
'WB' => ['Welcome Back'],
|
829
|
+
'WBS' => ['Write Back Soon'],
|
830
|
+
'WC' => ['Who Cares?'],
|
831
|
+
'WCA' => ['Who cares anyway'],
|
832
|
+
'WDYS' => ['What did you say?'],
|
833
|
+
'WDYT' => ['What do you think?'],
|
834
|
+
'WE' => ['whatever'],
|
835
|
+
'we' => ['Weekend'],
|
836
|
+
'WEG' => ['Wicked evil grin'],
|
837
|
+
'WF' => ['Way Fun'],
|
838
|
+
'WFM' => ['Works for me'],
|
839
|
+
'WG' => ['Wicked grin'],
|
840
|
+
'WGAFF' => ['Who gives a flying fuck'],
|
841
|
+
'WIIFM' => ['What\'s in it for me?'],
|
842
|
+
'WIIWD' => ['What it is we do'],
|
843
|
+
'WISP' => ['Winning Is So Pleasureable'],
|
844
|
+
'WIT' => ['Wordsmith in training'],
|
845
|
+
'WITFITS' => ['What in the fuck is this shit'],
|
846
|
+
'WKND' => ['weekend'],
|
847
|
+
'WLUMRyMe' => ['Will you marry Me?'],
|
848
|
+
'WNOHGB' => ['Were No One Has Gone Before'],
|
849
|
+
'WO' => ['without'],
|
850
|
+
'WOG' => ['Wise old guy'],
|
851
|
+
'WOMBAT' => ['Waste of money, brains and time'],
|
852
|
+
'wrk' => ['Work'],
|
853
|
+
'WRT' => ['With regard to'],
|
854
|
+
'WT' => ['Without Thinking'],
|
855
|
+
'WT' => ['What?'],
|
856
|
+
'WTB' => ['Want to buy'],
|
857
|
+
'WTF' => ['What The Fuck'],
|
858
|
+
'WTFRU' => ['Who the fuck are you?'],
|
859
|
+
'WTFWT' => ['What the fuck was that?'],
|
860
|
+
'WTG' => ['Way To Go!'],
|
861
|
+
'WTGP' => ['Want to go private?'],
|
862
|
+
'WTH' => ['What The Hell'],
|
863
|
+
'WTMI' => ['Way too much information'],
|
864
|
+
'WTTM' => ['Without Thinking To Much'],
|
865
|
+
'WU' => ['What is Up'],
|
866
|
+
'WUD' => ['what you doing'],
|
867
|
+
'WUF' => ['Where Are You From?'],
|
868
|
+
'WUWH' => ['Wish you were here'],
|
869
|
+
'WWDWIIWD' => ['When we do what it is we do'],
|
870
|
+
'WWY' => ['Where Were You?'],
|
871
|
+
'WYCM' => ['Will You Call Me?'],
|
872
|
+
'WYGOWM' => ['will you go out with me'],
|
873
|
+
'WYP' => ['What\'s your problem?'],
|
874
|
+
'WYRN' => ['What\'s your real name?'],
|
875
|
+
'WYS' => ['Whatever you say'],
|
876
|
+
'WYSITWIR' => ['What you see is totally worthless in real life'],
|
877
|
+
'WYSIWYG' => ['What you see is what you get'],
|
878
|
+
'WYSLPG' => ['What you see looks pretty good'],
|
879
|
+
'WYT' => ['Whatever you think'],
|
880
|
+
'WYWH' => ['Wish You Were Here'],
|
881
|
+
'XI10' => ['Exciting'],
|
882
|
+
'XLNT' => ['excellent'],
|
883
|
+
'XME' => ['Excuuuuse Me'],
|
884
|
+
'XOXO' => ['Hugs and Kisses'],
|
885
|
+
'Y' => ['why'],
|
886
|
+
'YA' => ['Yet another'],
|
887
|
+
'YA yaya' => ['Yet Another Ya-Ya'],
|
888
|
+
'YABA' => ['Yet another bloody acronym'],
|
889
|
+
'YACC' => ['Yet another calendar company'],
|
890
|
+
'YAFIYGI' => ['You asked for it, you got it'],
|
891
|
+
'YBS' => ['You\'ll be Sorry'],
|
892
|
+
'YCT' => ['Your Comment To'],
|
893
|
+
'YGIAGAM' => ['Your guess is as good as mine'],
|
894
|
+
'YGWYPF' => ['You get what you pay for'],
|
895
|
+
'YHM' => ['You have mail'],
|
896
|
+
'YIC' => ['Yours in Christ'],
|
897
|
+
'YKW' => ['You Know What?'],
|
898
|
+
'YM' => ['Young man'],
|
899
|
+
'YMMV' => ['Your mileage may vary'],
|
900
|
+
'YNK' => ['You never know'],
|
901
|
+
'YR' => ['Why Are'],
|
902
|
+
'YSYD' => ['Yeah, sure you do'],
|
903
|
+
'YTTT' => ['You telling the truth?'],
|
904
|
+
'YW' => ['You are Welcome'],
|
905
|
+
'YYSSW' => ['yeah yeah sure sure whatever'],
|
906
|
+
'ZZZ' => ['Sleeping, Bored, Tired']
|
907
|
+
|
908
|
+
}
|
909
|
+
|
57
910
|
def self.convert(str)
|
58
|
-
str = transform(str, CONTRACTIONS
|
59
|
-
str = transform(str,
|
911
|
+
str = transform(str, CONTRACTIONS)
|
912
|
+
str = transform(str, ABBREVIATIONS)
|
60
913
|
str
|
61
914
|
end
|
62
|
-
|
63
|
-
def self.transform(text, manipulators
|
915
|
+
|
916
|
+
def self.transform(text, manipulators)
|
64
917
|
manipulators.each do |replacement, regular_expressions|
|
65
918
|
regular_expressions.each do |regex|
|
66
|
-
|
67
|
-
regex = Regexp.new(/\b#{regex}\b/i)
|
68
|
-
else
|
69
|
-
regex = Regexp.new(/#{regex}/i)
|
70
|
-
end
|
71
|
-
text.gsub! regex, replacement
|
919
|
+
text.gsub! Regexp.new(/\b#{regex}\b/i), replacement
|
72
920
|
end
|
73
921
|
end
|
74
922
|
text
|
75
923
|
end
|
76
|
-
|
77
924
|
|
78
|
-
|
79
|
-
# Your code goes here...
|
80
925
|
end
|
data/spec/txtspk_spec.rb
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
require 'minitest/spec'
|
2
|
+
require 'minitest/autorun'
|
3
|
+
require 'turn'
|
4
|
+
require 'txtspk'
|
5
|
+
|
6
|
+
describe 'Txtspk' do
|
7
|
+
|
8
|
+
it "abbreviates 'as far as I know'" do
|
9
|
+
assert_equal "AFAIK", "as far as I know".to_txtspk
|
10
|
+
end
|
11
|
+
|
12
|
+
it "abbreviates 'smiles'" do
|
13
|
+
assert_equal "I'm all :)s", "I'm all smiles".to_txtspk
|
14
|
+
end
|
15
|
+
|
16
|
+
|
17
|
+
it "abbreviates 'for ever and ever" do
|
18
|
+
skip "we'll figure out this problem later..."
|
19
|
+
assert_equal "4FRNFR", "for ever and ever".to_txtspk
|
20
|
+
end
|
21
|
+
|
22
|
+
|
23
|
+
end
|
data/txtspk.gemspec
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: txtspk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,8 +9,41 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-06-
|
13
|
-
dependencies:
|
12
|
+
date: 2012-06-09 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: rake
|
16
|
+
requirement: &70301183142180 !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '0'
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: *70301183142180
|
25
|
+
- !ruby/object:Gem::Dependency
|
26
|
+
name: minitest
|
27
|
+
requirement: &70301183141580 !ruby/object:Gem::Requirement
|
28
|
+
none: false
|
29
|
+
requirements:
|
30
|
+
- - ! '>='
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '0'
|
33
|
+
type: :runtime
|
34
|
+
prerelease: false
|
35
|
+
version_requirements: *70301183141580
|
36
|
+
- !ruby/object:Gem::Dependency
|
37
|
+
name: turn
|
38
|
+
requirement: &70301183140900 !ruby/object:Gem::Requirement
|
39
|
+
none: false
|
40
|
+
requirements:
|
41
|
+
- - ! '>='
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: '0'
|
44
|
+
type: :runtime
|
45
|
+
prerelease: false
|
46
|
+
version_requirements: *70301183140900
|
14
47
|
description: shortens to using text speak
|
15
48
|
email:
|
16
49
|
- kyle.decot@me.com
|
@@ -19,12 +52,14 @@ extensions: []
|
|
19
52
|
extra_rdoc_files: []
|
20
53
|
files:
|
21
54
|
- .gitignore
|
55
|
+
- .travis.yml
|
22
56
|
- Gemfile
|
23
57
|
- LICENSE
|
24
58
|
- README.md
|
25
59
|
- Rakefile
|
26
60
|
- lib/txtspk.rb
|
27
61
|
- lib/txtspk/version.rb
|
62
|
+
- spec/txtspk_spec.rb
|
28
63
|
- txtspk.gemspec
|
29
64
|
homepage: http://github.com/kyledecot
|
30
65
|
licenses: []
|
@@ -46,8 +81,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
46
81
|
version: '0'
|
47
82
|
requirements: []
|
48
83
|
rubyforge_project:
|
49
|
-
rubygems_version: 1.8.
|
84
|
+
rubygems_version: 1.8.10
|
50
85
|
signing_key:
|
51
86
|
specification_version: 3
|
52
87
|
summary: shortens to using text speak
|
53
|
-
test_files:
|
88
|
+
test_files:
|
89
|
+
- spec/txtspk_spec.rb
|