sentimetnal 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 3ef76821fbe6bc0d768391e90f46c1cc2210d4d3
4
+ data.tar.gz: ca0b793f3803b17d38eee40c4d461644e9933564
5
+ SHA512:
6
+ metadata.gz: 0329a92d1f5fb599d950bdfac56a22eb1073fc96d40309beb194e5971362ea1da74a920c2c0ae7f91db1296a9026e0572707b26382629f888eda434954d66ec5
7
+ data.tar.gz: 52c0541a1779a53b60a055c15402efc2521b202cfb7963d635535dae8778b41ac5d4da906b5ed24f9158fbe214b1e718cbe03c82e744669fe77fa41577f8c868
data/.gitignore ADDED
@@ -0,0 +1,14 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ *.bundle
11
+ *.so
12
+ *.o
13
+ *.a
14
+ mkmf.log
data/.travis.yml ADDED
@@ -0,0 +1,7 @@
1
+ language: ruby
2
+ cache: bundler
3
+
4
+ rvm:
5
+ - 2.1.0
6
+
7
+ script: 'bundle exec rake'
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in sentimetnal.gemspec
4
+ gemspec
data/Guardfile ADDED
@@ -0,0 +1,11 @@
1
+ guard 'rspec', cmd: 'rspec' do
2
+ # watch /lib/ files
3
+ watch(%r{^lib/**/(.+).rb$}) do |m|
4
+ "spec/#{m[1]}_spec.rb"
5
+ end
6
+
7
+ # watch /spec/ files
8
+ watch(%r{^spec/(.+).rb$}) do |m|
9
+ "spec/#{m[1]}.rb"
10
+ end
11
+ end
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 johdax
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,53 @@
1
+ # Sentimetnal
2
+
3
+ No, it's not a typo :grin:. According to [Google Translate](https://translate.google.com/#en/eo/sentimetnal) this is the Esperanto word for 'sentimental'.
4
+
5
+ Sentimetnal is a very simple [sentiment analyzer](https://en.wikipedia.org/wiki/Sentiment_analysis) based on [Finn Årup Nielsen](http://finnaarupnielsen.wordpress.com/)'s [AFINN](http://www2.imm.dtu.dk/pubdb/views/publication_details.php?id=6010) word list.
6
+
7
+ It is basically a Ruby port of [https://gist.github.com/fnielsen/4183541/](https://gist.github.com/fnielsen/4183541/)
8
+ It returns a float for the sentiment strength of an input text.
9
+
10
+ Positive values are for a positive valence, negative values for a negative valence.
11
+
12
+ ## Installation
13
+
14
+ Add this line to your application's Gemfile:
15
+
16
+ ```ruby
17
+ gem 'sentimetnal'
18
+ ```
19
+
20
+ And then execute:
21
+
22
+ $ bundle
23
+
24
+ Or install it yourself as:
25
+
26
+ $ gem install sentimetnal
27
+
28
+ ## Usage
29
+
30
+ ```ruby
31
+ require 'sentimetnal'
32
+
33
+ analyzer = Sentimetnal::Analyzer.new
34
+ sentiment = analyzer.sentiment("The best & most delicious beef and friendly staff!" # 1.7677669529663687
35
+
36
+ sentiment.to_rating # 4
37
+
38
+ sentinment.to_emoji # :smile:
39
+ ```
40
+
41
+ ## Contributing
42
+
43
+ I'd like to try translating the word list and prepare it for the use with other languages...
44
+
45
+ 1. Fork it ( https://github.com/[my-github-username]/sentimetnal/fork )
46
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
47
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
48
+ 4. Push to the branch (`git push origin my-new-feature`)
49
+ 5. Create a new Pull Request
50
+
51
+ ## Ruby NLP
52
+
53
+ Unfortunately Ruby does not provide something like [NLTK](http://www.nltk.org/). But there are some interesting gems and code. I'm compiling my favorite ones [here](https://gist.github.com/johdax/ad517d63fbf7b5bd29c4)
data/Rakefile ADDED
@@ -0,0 +1,33 @@
1
+ require "bundler/gem_tasks"
2
+ require "rake"
3
+
4
+ gemspec = eval(File.read(Dir["*.gemspec"].first))
5
+
6
+ task :default => ["test:all"]
7
+
8
+ desc "Validate the gemspec"
9
+ task :gemspec do
10
+ gemspec.validate
11
+ end
12
+
13
+ desc "Clean automatically generated files"
14
+ task :clean do
15
+ FileUtils.rm_rf "pkg"
16
+ end
17
+
18
+ desc "Check syntax"
19
+ task :syntax do
20
+ Dir["**/*.rb"].each do |file|
21
+ print "#{file}: "
22
+ system("ruby -c #{file}")
23
+ end
24
+ end
25
+
26
+ namespace :test do
27
+ desc "Run all tests"
28
+ task :all do
29
+ Dir["spec/**/*_spec.rb"].each do |test_path|
30
+ system "rspec #{test_path}"
31
+ end
32
+ end
33
+ end
@@ -0,0 +1,2477 @@
1
+ abandon -2
2
+ abandoned -2
3
+ abandons -2
4
+ abducted -2
5
+ abduction -2
6
+ abductions -2
7
+ abhor -3
8
+ abhorred -3
9
+ abhorrent -3
10
+ abhors -3
11
+ abilities 2
12
+ ability 2
13
+ aboard 1
14
+ absentee -1
15
+ absentees -1
16
+ absolve 2
17
+ absolved 2
18
+ absolves 2
19
+ absolving 2
20
+ absorbed 1
21
+ abuse -3
22
+ abused -3
23
+ abuses -3
24
+ abusive -3
25
+ accept 1
26
+ accepted 1
27
+ accepting 1
28
+ accepts 1
29
+ accident -2
30
+ accidental -2
31
+ accidentally -2
32
+ accidents -2
33
+ accomplish 2
34
+ accomplished 2
35
+ accomplishes 2
36
+ accusation -2
37
+ accusations -2
38
+ accuse -2
39
+ accused -2
40
+ accuses -2
41
+ accusing -2
42
+ ache -2
43
+ achievable 1
44
+ aching -2
45
+ acquit 2
46
+ acquits 2
47
+ acquitted 2
48
+ acquitting 2
49
+ acrimonious -3
50
+ active 1
51
+ adequate 1
52
+ admire 3
53
+ admired 3
54
+ admires 3
55
+ admiring 3
56
+ admit -1
57
+ admits -1
58
+ admitted -1
59
+ admonish -2
60
+ admonished -2
61
+ adopt 1
62
+ adopts 1
63
+ adorable 3
64
+ adore 3
65
+ adored 3
66
+ adores 3
67
+ advanced 1
68
+ advantage 2
69
+ advantages 2
70
+ adventure 2
71
+ adventures 2
72
+ adventurous 2
73
+ affected -1
74
+ affection 3
75
+ affectionate 3
76
+ afflicted -1
77
+ affronted -1
78
+ afraid -2
79
+ aggravate -2
80
+ aggravated -2
81
+ aggravates -2
82
+ aggravating -2
83
+ aggression -2
84
+ aggressions -2
85
+ aggressive -2
86
+ aghast -2
87
+ agog 2
88
+ agonise -3
89
+ agonised -3
90
+ agonises -3
91
+ agonising -3
92
+ agonize -3
93
+ agonized -3
94
+ agonizes -3
95
+ agonizing -3
96
+ agree 1
97
+ agreeable 2
98
+ agreed 1
99
+ agreement 1
100
+ agrees 1
101
+ alarm -2
102
+ alarmed -2
103
+ alarmist -2
104
+ alarmists -2
105
+ alas -1
106
+ alert -1
107
+ alienation -2
108
+ alive 1
109
+ allergic -2
110
+ allow 1
111
+ alone -2
112
+ amaze 2
113
+ amazed 2
114
+ amazes 2
115
+ amazing 4
116
+ ambitious 2
117
+ ambivalent -1
118
+ amuse 3
119
+ amused 3
120
+ amusement 3
121
+ amusements 3
122
+ anger -3
123
+ angers -3
124
+ angry -3
125
+ anguish -3
126
+ anguished -3
127
+ animosity -2
128
+ annoy -2
129
+ annoyance -2
130
+ annoyed -2
131
+ annoying -2
132
+ annoys -2
133
+ antagonistic -2
134
+ anti -1
135
+ anticipation 1
136
+ anxiety -2
137
+ anxious -2
138
+ apathetic -3
139
+ apathy -3
140
+ apeshit -3
141
+ apocalyptic -2
142
+ apologise -1
143
+ apologised -1
144
+ apologises -1
145
+ apologising -1
146
+ apologize -1
147
+ apologized -1
148
+ apologizes -1
149
+ apologizing -1
150
+ apology -1
151
+ appalled -2
152
+ appalling -2
153
+ appease 2
154
+ appeased 2
155
+ appeases 2
156
+ appeasing 2
157
+ applaud 2
158
+ applauded 2
159
+ applauding 2
160
+ applauds 2
161
+ applause 2
162
+ appreciate 2
163
+ appreciated 2
164
+ appreciates 2
165
+ appreciating 2
166
+ appreciation 2
167
+ apprehensive -2
168
+ approval 2
169
+ approved 2
170
+ approves 2
171
+ ardent 1
172
+ arrest -2
173
+ arrested -3
174
+ arrests -2
175
+ arrogant -2
176
+ ashame -2
177
+ ashamed -2
178
+ ass -4
179
+ assassination -3
180
+ assassinations -3
181
+ asset 2
182
+ assets 2
183
+ assfucking -4
184
+ asshole -4
185
+ astonished 2
186
+ astound 3
187
+ astounded 3
188
+ astounding 3
189
+ astoundingly 3
190
+ astounds 3
191
+ attack -1
192
+ attacked -1
193
+ attacking -1
194
+ attacks -1
195
+ attract 1
196
+ attracted 1
197
+ attracting 2
198
+ attraction 2
199
+ attractions 2
200
+ attracts 1
201
+ audacious 3
202
+ authority 1
203
+ avert -1
204
+ averted -1
205
+ averts -1
206
+ avid 2
207
+ avoid -1
208
+ avoided -1
209
+ avoids -1
210
+ await -1
211
+ awaited -1
212
+ awaits -1
213
+ award 3
214
+ awarded 3
215
+ awards 3
216
+ awesome 4
217
+ awful -3
218
+ awkward -2
219
+ axe -1
220
+ axed -1
221
+ backed 1
222
+ backing 2
223
+ backs 1
224
+ bad -3
225
+ badass -3
226
+ badly -3
227
+ bailout -2
228
+ bamboozle -2
229
+ bamboozled -2
230
+ bamboozles -2
231
+ ban -2
232
+ banish -1
233
+ bankrupt -3
234
+ bankster -3
235
+ banned -2
236
+ bargain 2
237
+ barrier -2
238
+ bastard -5
239
+ bastards -5
240
+ battle -1
241
+ battles -1
242
+ beaten -2
243
+ beatific 3
244
+ beating -1
245
+ beauties 3
246
+ beautiful 3
247
+ beautifully 3
248
+ beautify 3
249
+ belittle -2
250
+ belittled -2
251
+ beloved 3
252
+ benefit 2
253
+ benefits 2
254
+ benefitted 2
255
+ benefitting 2
256
+ bereave -2
257
+ bereaved -2
258
+ bereaves -2
259
+ bereaving -2
260
+ best 3
261
+ betray -3
262
+ betrayal -3
263
+ betrayed -3
264
+ betraying -3
265
+ betrays -3
266
+ better 2
267
+ bias -1
268
+ biased -2
269
+ big 1
270
+ bitch -5
271
+ bitches -5
272
+ bitter -2
273
+ bitterly -2
274
+ bizarre -2
275
+ blah -2
276
+ blame -2
277
+ blamed -2
278
+ blames -2
279
+ blaming -2
280
+ bless 2
281
+ blesses 2
282
+ blessing 3
283
+ blind -1
284
+ bliss 3
285
+ blissful 3
286
+ blithe 2
287
+ block -1
288
+ blockbuster 3
289
+ blocked -1
290
+ blocking -1
291
+ blocks -1
292
+ bloody -3
293
+ blurry -2
294
+ boastful -2
295
+ bold 2
296
+ boldly 2
297
+ bomb -1
298
+ boost 1
299
+ boosted 1
300
+ boosting 1
301
+ boosts 1
302
+ bore -2
303
+ bored -2
304
+ boring -3
305
+ bother -2
306
+ bothered -2
307
+ bothers -2
308
+ bothersome -2
309
+ boycott -2
310
+ boycotted -2
311
+ boycotting -2
312
+ boycotts -2
313
+ brainwashing -3
314
+ brave 2
315
+ breakthrough 3
316
+ breathtaking 5
317
+ bribe -3
318
+ bright 1
319
+ brightest 2
320
+ brightness 1
321
+ brilliant 4
322
+ brisk 2
323
+ broke -1
324
+ broken -1
325
+ brooding -2
326
+ bullied -2
327
+ bullshit -4
328
+ bully -2
329
+ bullying -2
330
+ bummer -2
331
+ buoyant 2
332
+ burden -2
333
+ burdened -2
334
+ burdening -2
335
+ burdens -2
336
+ calm 2
337
+ calmed 2
338
+ calming 2
339
+ calms 2
340
+ can't stand -3
341
+ cancel -1
342
+ cancelled -1
343
+ cancelling -1
344
+ cancels -1
345
+ cancer -1
346
+ capable 1
347
+ captivated 3
348
+ care 2
349
+ carefree 1
350
+ careful 2
351
+ carefully 2
352
+ careless -2
353
+ cares 2
354
+ cashing in -2
355
+ casualty -2
356
+ catastrophe -3
357
+ catastrophic -4
358
+ cautious -1
359
+ celebrate 3
360
+ celebrated 3
361
+ celebrates 3
362
+ celebrating 3
363
+ censor -2
364
+ censored -2
365
+ censors -2
366
+ certain 1
367
+ chagrin -2
368
+ chagrined -2
369
+ challenge -1
370
+ chance 2
371
+ chances 2
372
+ chaos -2
373
+ chaotic -2
374
+ charged -3
375
+ charges -2
376
+ charm 3
377
+ charming 3
378
+ charmless -3
379
+ chastise -3
380
+ chastised -3
381
+ chastises -3
382
+ chastising -3
383
+ cheat -3
384
+ cheated -3
385
+ cheater -3
386
+ cheaters -3
387
+ cheats -3
388
+ cheer 2
389
+ cheered 2
390
+ cheerful 2
391
+ cheering 2
392
+ cheerless -2
393
+ cheers 2
394
+ cheery 3
395
+ cherish 2
396
+ cherished 2
397
+ cherishes 2
398
+ cherishing 2
399
+ chic 2
400
+ childish -2
401
+ chilling -1
402
+ choke -2
403
+ choked -2
404
+ chokes -2
405
+ choking -2
406
+ clarifies 2
407
+ clarity 2
408
+ clash -2
409
+ classy 3
410
+ clean 2
411
+ cleaner 2
412
+ clear 1
413
+ cleared 1
414
+ clearly 1
415
+ clears 1
416
+ clever 2
417
+ clouded -1
418
+ clueless -2
419
+ cock -5
420
+ cocksucker -5
421
+ cocksuckers -5
422
+ cocky -2
423
+ coerced -2
424
+ collapse -2
425
+ collapsed -2
426
+ collapses -2
427
+ collapsing -2
428
+ collide -1
429
+ collides -1
430
+ colliding -1
431
+ collision -2
432
+ collisions -2
433
+ colluding -3
434
+ combat -1
435
+ combats -1
436
+ comedy 1
437
+ comfort 2
438
+ comfortable 2
439
+ comforting 2
440
+ comforts 2
441
+ commend 2
442
+ commended 2
443
+ commit 1
444
+ commitment 2
445
+ commits 1
446
+ committed 1
447
+ committing 1
448
+ compassionate 2
449
+ compelled 1
450
+ competent 2
451
+ competitive 2
452
+ complacent -2
453
+ complain -2
454
+ complained -2
455
+ complains -2
456
+ comprehensive 2
457
+ conciliate 2
458
+ conciliated 2
459
+ conciliates 2
460
+ conciliating 2
461
+ condemn -2
462
+ condemnation -2
463
+ condemned -2
464
+ condemns -2
465
+ confidence 2
466
+ confident 2
467
+ conflict -2
468
+ conflicting -2
469
+ conflictive -2
470
+ conflicts -2
471
+ confuse -2
472
+ confused -2
473
+ confusing -2
474
+ congrats 2
475
+ congratulate 2
476
+ congratulation 2
477
+ congratulations 2
478
+ consent 2
479
+ consents 2
480
+ consolable 2
481
+ conspiracy -3
482
+ constrained -2
483
+ contagion -2
484
+ contagions -2
485
+ contagious -1
486
+ contempt -2
487
+ contemptuous -2
488
+ contemptuously -2
489
+ contend -1
490
+ contender -1
491
+ contending -1
492
+ contentious -2
493
+ contestable -2
494
+ controversial -2
495
+ controversially -2
496
+ convince 1
497
+ convinced 1
498
+ convinces 1
499
+ convivial 2
500
+ cool 1
501
+ cool stuff 3
502
+ cornered -2
503
+ corpse -1
504
+ costly -2
505
+ courage 2
506
+ courageous 2
507
+ courteous 2
508
+ courtesy 2
509
+ cover-up -3
510
+ coward -2
511
+ cowardly -2
512
+ coziness 2
513
+ cramp -1
514
+ crap -3
515
+ crash -2
516
+ crazier -2
517
+ craziest -2
518
+ crazy -2
519
+ creative 2
520
+ crestfallen -2
521
+ cried -2
522
+ cries -2
523
+ crime -3
524
+ criminal -3
525
+ criminals -3
526
+ crisis -3
527
+ critic -2
528
+ criticism -2
529
+ criticize -2
530
+ criticized -2
531
+ criticizes -2
532
+ criticizing -2
533
+ critics -2
534
+ cruel -3
535
+ cruelty -3
536
+ crush -1
537
+ crushed -2
538
+ crushes -1
539
+ crushing -1
540
+ cry -1
541
+ crying -2
542
+ cunt -5
543
+ curious 1
544
+ curse -1
545
+ cut -1
546
+ cute 2
547
+ cuts -1
548
+ cutting -1
549
+ cynic -2
550
+ cynical -2
551
+ cynicism -2
552
+ damage -3
553
+ damages -3
554
+ damn -4
555
+ damned -4
556
+ damnit -4
557
+ danger -2
558
+ daredevil 2
559
+ daring 2
560
+ darkest -2
561
+ darkness -1
562
+ dauntless 2
563
+ dead -3
564
+ deadlock -2
565
+ deafening -1
566
+ dear 2
567
+ dearly 3
568
+ death -2
569
+ debonair 2
570
+ debt -2
571
+ deceit -3
572
+ deceitful -3
573
+ deceive -3
574
+ deceived -3
575
+ deceives -3
576
+ deceiving -3
577
+ deception -3
578
+ decisive 1
579
+ dedicated 2
580
+ defeated -2
581
+ defect -3
582
+ defects -3
583
+ defender 2
584
+ defenders 2
585
+ defenseless -2
586
+ defer -1
587
+ deferring -1
588
+ defiant -1
589
+ deficit -2
590
+ degrade -2
591
+ degraded -2
592
+ degrades -2
593
+ dehumanize -2
594
+ dehumanized -2
595
+ dehumanizes -2
596
+ dehumanizing -2
597
+ deject -2
598
+ dejected -2
599
+ dejecting -2
600
+ dejects -2
601
+ delay -1
602
+ delayed -1
603
+ delight 3
604
+ delighted 3
605
+ delighting 3
606
+ delights 3
607
+ demand -1
608
+ demanded -1
609
+ demanding -1
610
+ demands -1
611
+ demonstration -1
612
+ demoralized -2
613
+ denied -2
614
+ denier -2
615
+ deniers -2
616
+ denies -2
617
+ denounce -2
618
+ denounces -2
619
+ deny -2
620
+ denying -2
621
+ depressed -2
622
+ depressing -2
623
+ derail -2
624
+ derailed -2
625
+ derails -2
626
+ deride -2
627
+ derided -2
628
+ derides -2
629
+ deriding -2
630
+ derision -2
631
+ desirable 2
632
+ desire 1
633
+ desired 2
634
+ desirous 2
635
+ despair -3
636
+ despairing -3
637
+ despairs -3
638
+ desperate -3
639
+ desperately -3
640
+ despondent -3
641
+ destroy -3
642
+ destroyed -3
643
+ destroying -3
644
+ destroys -3
645
+ destruction -3
646
+ destructive -3
647
+ detached -1
648
+ detain -2
649
+ detained -2
650
+ detention -2
651
+ determined 2
652
+ devastate -2
653
+ devastated -2
654
+ devastating -2
655
+ devoted 3
656
+ diamond 1
657
+ dick -4
658
+ dickhead -4
659
+ die -3
660
+ died -3
661
+ difficult -1
662
+ diffident -2
663
+ dilemma -1
664
+ dipshit -3
665
+ dire -3
666
+ direful -3
667
+ dirt -2
668
+ dirtier -2
669
+ dirtiest -2
670
+ dirty -2
671
+ disabling -1
672
+ disadvantage -2
673
+ disadvantaged -2
674
+ disappear -1
675
+ disappeared -1
676
+ disappears -1
677
+ disappoint -2
678
+ disappointed -2
679
+ disappointing -2
680
+ disappointment -2
681
+ disappointments -2
682
+ disappoints -2
683
+ disaster -2
684
+ disasters -2
685
+ disastrous -3
686
+ disbelieve -2
687
+ discard -1
688
+ discarded -1
689
+ discarding -1
690
+ discards -1
691
+ disconsolate -2
692
+ disconsolation -2
693
+ discontented -2
694
+ discord -2
695
+ discounted -1
696
+ discouraged -2
697
+ discredited -2
698
+ disdain -2
699
+ disgrace -2
700
+ disgraced -2
701
+ disguise -1
702
+ disguised -1
703
+ disguises -1
704
+ disguising -1
705
+ disgust -3
706
+ disgusted -3
707
+ disgusting -3
708
+ disheartened -2
709
+ dishonest -2
710
+ disillusioned -2
711
+ disinclined -2
712
+ disjointed -2
713
+ dislike -2
714
+ dismal -2
715
+ dismayed -2
716
+ disorder -2
717
+ disorganized -2
718
+ disoriented -2
719
+ disparage -2
720
+ disparaged -2
721
+ disparages -2
722
+ disparaging -2
723
+ displeased -2
724
+ dispute -2
725
+ disputed -2
726
+ disputes -2
727
+ disputing -2
728
+ disqualified -2
729
+ disquiet -2
730
+ disregard -2
731
+ disregarded -2
732
+ disregarding -2
733
+ disregards -2
734
+ disrespect -2
735
+ disrespected -2
736
+ disruption -2
737
+ disruptions -2
738
+ disruptive -2
739
+ dissatisfied -2
740
+ distort -2
741
+ distorted -2
742
+ distorting -2
743
+ distorts -2
744
+ distract -2
745
+ distracted -2
746
+ distraction -2
747
+ distracts -2
748
+ distress -2
749
+ distressed -2
750
+ distresses -2
751
+ distressing -2
752
+ distrust -3
753
+ distrustful -3
754
+ disturb -2
755
+ disturbed -2
756
+ disturbing -2
757
+ disturbs -2
758
+ dithering -2
759
+ dizzy -1
760
+ dodging -2
761
+ dodgy -2
762
+ does not work -3
763
+ dolorous -2
764
+ dont like -2
765
+ doom -2
766
+ doomed -2
767
+ doubt -1
768
+ doubted -1
769
+ doubtful -1
770
+ doubting -1
771
+ doubts -1
772
+ douche -3
773
+ douchebag -3
774
+ downcast -2
775
+ downhearted -2
776
+ downside -2
777
+ drag -1
778
+ dragged -1
779
+ drags -1
780
+ drained -2
781
+ dread -2
782
+ dreaded -2
783
+ dreadful -3
784
+ dreading -2
785
+ dream 1
786
+ dreams 1
787
+ dreary -2
788
+ droopy -2
789
+ drop -1
790
+ drown -2
791
+ drowned -2
792
+ drowns -2
793
+ drunk -2
794
+ dubious -2
795
+ dud -2
796
+ dull -2
797
+ dumb -3
798
+ dumbass -3
799
+ dump -1
800
+ dumped -2
801
+ dumps -1
802
+ dupe -2
803
+ duped -2
804
+ dysfunction -2
805
+ eager 2
806
+ earnest 2
807
+ ease 2
808
+ easy 1
809
+ ecstatic 4
810
+ eerie -2
811
+ eery -2
812
+ effective 2
813
+ effectively 2
814
+ elated 3
815
+ elation 3
816
+ elegant 2
817
+ elegantly 2
818
+ embarrass -2
819
+ embarrassed -2
820
+ embarrasses -2
821
+ embarrassing -2
822
+ embarrassment -2
823
+ embittered -2
824
+ embrace 1
825
+ emergency -2
826
+ empathetic 2
827
+ emptiness -1
828
+ empty -1
829
+ enchanted 2
830
+ encourage 2
831
+ encouraged 2
832
+ encouragement 2
833
+ encourages 2
834
+ endorse 2
835
+ endorsed 2
836
+ endorsement 2
837
+ endorses 2
838
+ enemies -2
839
+ enemy -2
840
+ energetic 2
841
+ engage 1
842
+ engages 1
843
+ engrossed 1
844
+ enjoy 2
845
+ enjoying 2
846
+ enjoys 2
847
+ enlighten 2
848
+ enlightened 2
849
+ enlightening 2
850
+ enlightens 2
851
+ ennui -2
852
+ enrage -2
853
+ enraged -2
854
+ enrages -2
855
+ enraging -2
856
+ enrapture 3
857
+ enslave -2
858
+ enslaved -2
859
+ enslaves -2
860
+ ensure 1
861
+ ensuring 1
862
+ enterprising 1
863
+ entertaining 2
864
+ enthral 3
865
+ enthusiastic 3
866
+ entitled 1
867
+ entrusted 2
868
+ envies -1
869
+ envious -2
870
+ envy -1
871
+ envying -1
872
+ erroneous -2
873
+ error -2
874
+ errors -2
875
+ escape -1
876
+ escapes -1
877
+ escaping -1
878
+ esteemed 2
879
+ ethical 2
880
+ euphoria 3
881
+ euphoric 4
882
+ eviction -1
883
+ evil -3
884
+ exaggerate -2
885
+ exaggerated -2
886
+ exaggerates -2
887
+ exaggerating -2
888
+ exasperated 2
889
+ excellence 3
890
+ excellent 3
891
+ excite 3
892
+ excited 3
893
+ excitement 3
894
+ exciting 3
895
+ exclude -1
896
+ excluded -2
897
+ exclusion -1
898
+ exclusive 2
899
+ excuse -1
900
+ exempt -1
901
+ exhausted -2
902
+ exhilarated 3
903
+ exhilarates 3
904
+ exhilarating 3
905
+ exonerate 2
906
+ exonerated 2
907
+ exonerates 2
908
+ exonerating 2
909
+ expand 1
910
+ expands 1
911
+ expel -2
912
+ expelled -2
913
+ expelling -2
914
+ expels -2
915
+ exploit -2
916
+ exploited -2
917
+ exploiting -2
918
+ exploits -2
919
+ exploration 1
920
+ explorations 1
921
+ expose -1
922
+ exposed -1
923
+ exposes -1
924
+ exposing -1
925
+ extend 1
926
+ extends 1
927
+ exuberant 4
928
+ exultant 3
929
+ exultantly 3
930
+ fabulous 4
931
+ fad -2
932
+ fag -3
933
+ faggot -3
934
+ faggots -3
935
+ fail -2
936
+ failed -2
937
+ failing -2
938
+ fails -2
939
+ failure -2
940
+ failures -2
941
+ fainthearted -2
942
+ fair 2
943
+ faith 1
944
+ faithful 3
945
+ fake -3
946
+ fakes -3
947
+ faking -3
948
+ fallen -2
949
+ falling -1
950
+ falsified -3
951
+ falsify -3
952
+ fame 1
953
+ fan 3
954
+ fantastic 4
955
+ farce -1
956
+ fascinate 3
957
+ fascinated 3
958
+ fascinates 3
959
+ fascinating 3
960
+ fascist -2
961
+ fascists -2
962
+ fatalities -3
963
+ fatality -3
964
+ fatigue -2
965
+ fatigued -2
966
+ fatigues -2
967
+ fatiguing -2
968
+ favor 2
969
+ favored 2
970
+ favorite 2
971
+ favorited 2
972
+ favorites 2
973
+ favors 2
974
+ fear -2
975
+ fearful -2
976
+ fearing -2
977
+ fearless 2
978
+ fearsome -2
979
+ fed up -3
980
+ feeble -2
981
+ feeling 1
982
+ felonies -3
983
+ felony -3
984
+ fervent 2
985
+ fervid 2
986
+ festive 2
987
+ fiasco -3
988
+ fidgety -2
989
+ fight -1
990
+ fine 2
991
+ fire -2
992
+ fired -2
993
+ firing -2
994
+ fit 1
995
+ fitness 1
996
+ flagship 2
997
+ flees -1
998
+ flop -2
999
+ flops -2
1000
+ flu -2
1001
+ flustered -2
1002
+ focused 2
1003
+ fond 2
1004
+ fondness 2
1005
+ fool -2
1006
+ foolish -2
1007
+ fools -2
1008
+ forced -1
1009
+ foreclosure -2
1010
+ foreclosures -2
1011
+ forget -1
1012
+ forgetful -2
1013
+ forgive 1
1014
+ forgiving 1
1015
+ forgotten -1
1016
+ fortunate 2
1017
+ frantic -1
1018
+ fraud -4
1019
+ frauds -4
1020
+ fraudster -4
1021
+ fraudsters -4
1022
+ fraudulence -4
1023
+ fraudulent -4
1024
+ free 1
1025
+ freedom 2
1026
+ frenzy -3
1027
+ fresh 1
1028
+ friendly 2
1029
+ fright -2
1030
+ frightened -2
1031
+ frightening -3
1032
+ frikin -2
1033
+ frisky 2
1034
+ frowning -1
1035
+ frustrate -2
1036
+ frustrated -2
1037
+ frustrates -2
1038
+ frustrating -2
1039
+ frustration -2
1040
+ ftw 3
1041
+ fuck -4
1042
+ fucked -4
1043
+ fucker -4
1044
+ fuckers -4
1045
+ fuckface -4
1046
+ fuckhead -4
1047
+ fucking -4
1048
+ fucktard -4
1049
+ fud -3
1050
+ fuked -4
1051
+ fuking -4
1052
+ fulfill 2
1053
+ fulfilled 2
1054
+ fulfills 2
1055
+ fuming -2
1056
+ fun 4
1057
+ funeral -1
1058
+ funerals -1
1059
+ funky 2
1060
+ funnier 4
1061
+ funny 4
1062
+ furious -3
1063
+ futile 2
1064
+ gag -2
1065
+ gagged -2
1066
+ gain 2
1067
+ gained 2
1068
+ gaining 2
1069
+ gains 2
1070
+ gallant 3
1071
+ gallantly 3
1072
+ gallantry 3
1073
+ generous 2
1074
+ genial 3
1075
+ ghost -1
1076
+ giddy -2
1077
+ gift 2
1078
+ glad 3
1079
+ glamorous 3
1080
+ glamourous 3
1081
+ glee 3
1082
+ gleeful 3
1083
+ gloom -1
1084
+ gloomy -2
1085
+ glorious 2
1086
+ glory 2
1087
+ glum -2
1088
+ god 1
1089
+ goddamn -3
1090
+ godsend 4
1091
+ good 3
1092
+ goodness 3
1093
+ grace 1
1094
+ gracious 3
1095
+ grand 3
1096
+ grant 1
1097
+ granted 1
1098
+ granting 1
1099
+ grants 1
1100
+ grateful 3
1101
+ gratification 2
1102
+ grave -2
1103
+ gray -1
1104
+ great 3
1105
+ greater 3
1106
+ greatest 3
1107
+ greed -3
1108
+ greedy -2
1109
+ green wash -3
1110
+ green washing -3
1111
+ greenwash -3
1112
+ greenwasher -3
1113
+ greenwashers -3
1114
+ greenwashing -3
1115
+ greet 1
1116
+ greeted 1
1117
+ greeting 1
1118
+ greetings 2
1119
+ greets 1
1120
+ grey -1
1121
+ grief -2
1122
+ grieved -2
1123
+ gross -2
1124
+ growing 1
1125
+ growth 2
1126
+ guarantee 1
1127
+ guilt -3
1128
+ guilty -3
1129
+ gullibility -2
1130
+ gullible -2
1131
+ gun -1
1132
+ ha 2
1133
+ hacked -1
1134
+ haha 3
1135
+ hahaha 3
1136
+ hahahah 3
1137
+ hail 2
1138
+ hailed 2
1139
+ hapless -2
1140
+ haplessness -2
1141
+ happiness 3
1142
+ happy 3
1143
+ hard -1
1144
+ hardier 2
1145
+ hardship -2
1146
+ hardy 2
1147
+ harm -2
1148
+ harmed -2
1149
+ harmful -2
1150
+ harming -2
1151
+ harms -2
1152
+ harried -2
1153
+ harsh -2
1154
+ harsher -2
1155
+ harshest -2
1156
+ hate -3
1157
+ hated -3
1158
+ haters -3
1159
+ hates -3
1160
+ hating -3
1161
+ haunt -1
1162
+ haunted -2
1163
+ haunting 1
1164
+ haunts -1
1165
+ havoc -2
1166
+ healthy 2
1167
+ heartbreaking -3
1168
+ heartbroken -3
1169
+ heartfelt 3
1170
+ heaven 2
1171
+ heavenly 4
1172
+ heavyhearted -2
1173
+ hell -4
1174
+ help 2
1175
+ helpful 2
1176
+ helping 2
1177
+ helpless -2
1178
+ helps 2
1179
+ hero 2
1180
+ heroes 2
1181
+ heroic 3
1182
+ hesitant -2
1183
+ hesitate -2
1184
+ hid -1
1185
+ hide -1
1186
+ hides -1
1187
+ hiding -1
1188
+ highlight 2
1189
+ hilarious 2
1190
+ hindrance -2
1191
+ hoax -2
1192
+ homesick -2
1193
+ honest 2
1194
+ honor 2
1195
+ honored 2
1196
+ honoring 2
1197
+ honour 2
1198
+ honoured 2
1199
+ honouring 2
1200
+ hooligan -2
1201
+ hooliganism -2
1202
+ hooligans -2
1203
+ hope 2
1204
+ hopeful 2
1205
+ hopefully 2
1206
+ hopeless -2
1207
+ hopelessness -2
1208
+ hopes 2
1209
+ hoping 2
1210
+ horrendous -3
1211
+ horrible -3
1212
+ horrific -3
1213
+ horrified -3
1214
+ hostile -2
1215
+ huckster -2
1216
+ hug 2
1217
+ huge 1
1218
+ hugs 2
1219
+ humerous 3
1220
+ humiliated -3
1221
+ humiliation -3
1222
+ humor 2
1223
+ humorous 2
1224
+ humour 2
1225
+ humourous 2
1226
+ hunger -2
1227
+ hurrah 5
1228
+ hurt -2
1229
+ hurting -2
1230
+ hurts -2
1231
+ hypocritical -2
1232
+ hysteria -3
1233
+ hysterical -3
1234
+ hysterics -3
1235
+ idiot -3
1236
+ idiotic -3
1237
+ ignorance -2
1238
+ ignorant -2
1239
+ ignore -1
1240
+ ignored -2
1241
+ ignores -1
1242
+ ill -2
1243
+ illegal -3
1244
+ illiteracy -2
1245
+ illness -2
1246
+ illnesses -2
1247
+ imbecile -3
1248
+ immobilized -1
1249
+ immortal 2
1250
+ immune 1
1251
+ impatient -2
1252
+ imperfect -2
1253
+ importance 2
1254
+ important 2
1255
+ impose -1
1256
+ imposed -1
1257
+ imposes -1
1258
+ imposing -1
1259
+ impotent -2
1260
+ impress 3
1261
+ impressed 3
1262
+ impresses 3
1263
+ impressive 3
1264
+ imprisoned -2
1265
+ improve 2
1266
+ improved 2
1267
+ improvement 2
1268
+ improves 2
1269
+ improving 2
1270
+ inability -2
1271
+ inaction -2
1272
+ inadequate -2
1273
+ incapable -2
1274
+ incapacitated -2
1275
+ incensed -2
1276
+ incompetence -2
1277
+ incompetent -2
1278
+ inconsiderate -2
1279
+ inconvenience -2
1280
+ inconvenient -2
1281
+ increase 1
1282
+ increased 1
1283
+ indecisive -2
1284
+ indestructible 2
1285
+ indifference -2
1286
+ indifferent -2
1287
+ indignant -2
1288
+ indignation -2
1289
+ indoctrinate -2
1290
+ indoctrinated -2
1291
+ indoctrinates -2
1292
+ indoctrinating -2
1293
+ ineffective -2
1294
+ ineffectively -2
1295
+ infatuated 2
1296
+ infatuation 2
1297
+ infected -2
1298
+ inferior -2
1299
+ inflamed -2
1300
+ influential 2
1301
+ infringement -2
1302
+ infuriate -2
1303
+ infuriated -2
1304
+ infuriates -2
1305
+ infuriating -2
1306
+ inhibit -1
1307
+ injured -2
1308
+ injury -2
1309
+ injustice -2
1310
+ innovate 1
1311
+ innovates 1
1312
+ innovation 1
1313
+ innovative 2
1314
+ inquisition -2
1315
+ inquisitive 2
1316
+ insane -2
1317
+ insanity -2
1318
+ insecure -2
1319
+ insensitive -2
1320
+ insensitivity -2
1321
+ insignificant -2
1322
+ insipid -2
1323
+ inspiration 2
1324
+ inspirational 2
1325
+ inspire 2
1326
+ inspired 2
1327
+ inspires 2
1328
+ inspiring 3
1329
+ insult -2
1330
+ insulted -2
1331
+ insulting -2
1332
+ insults -2
1333
+ intact 2
1334
+ integrity 2
1335
+ intelligent 2
1336
+ intense 1
1337
+ interest 1
1338
+ interested 2
1339
+ interesting 2
1340
+ interests 1
1341
+ interrogated -2
1342
+ interrupt -2
1343
+ interrupted -2
1344
+ interrupting -2
1345
+ interruption -2
1346
+ interrupts -2
1347
+ intimidate -2
1348
+ intimidated -2
1349
+ intimidates -2
1350
+ intimidating -2
1351
+ intimidation -2
1352
+ intricate 2
1353
+ intrigues 1
1354
+ invincible 2
1355
+ invite 1
1356
+ inviting 1
1357
+ invulnerable 2
1358
+ irate -3
1359
+ ironic -1
1360
+ irony -1
1361
+ irrational -1
1362
+ irresistible 2
1363
+ irresolute -2
1364
+ irresponsible 2
1365
+ irreversible -1
1366
+ irritate -3
1367
+ irritated -3
1368
+ irritating -3
1369
+ isolated -1
1370
+ itchy -2
1371
+ jackass -4
1372
+ jackasses -4
1373
+ jailed -2
1374
+ jaunty 2
1375
+ jealous -2
1376
+ jeopardy -2
1377
+ jerk -3
1378
+ jesus 1
1379
+ jewel 1
1380
+ jewels 1
1381
+ jocular 2
1382
+ join 1
1383
+ joke 2
1384
+ jokes 2
1385
+ jolly 2
1386
+ jovial 2
1387
+ joy 3
1388
+ joyful 3
1389
+ joyfully 3
1390
+ joyless -2
1391
+ joyous 3
1392
+ jubilant 3
1393
+ jumpy -1
1394
+ justice 2
1395
+ justifiably 2
1396
+ justified 2
1397
+ keen 1
1398
+ kill -3
1399
+ killed -3
1400
+ killing -3
1401
+ kills -3
1402
+ kind 2
1403
+ kinder 2
1404
+ kiss 2
1405
+ kudos 3
1406
+ lack -2
1407
+ lackadaisical -2
1408
+ lag -1
1409
+ lagged -2
1410
+ lagging -2
1411
+ lags -2
1412
+ lame -2
1413
+ landmark 2
1414
+ laugh 1
1415
+ laughed 1
1416
+ laughing 1
1417
+ laughs 1
1418
+ laughting 1
1419
+ launched 1
1420
+ lawl 3
1421
+ lawsuit -2
1422
+ lawsuits -2
1423
+ lazy -1
1424
+ leak -1
1425
+ leaked -1
1426
+ leave -1
1427
+ legal 1
1428
+ legally 1
1429
+ lenient 1
1430
+ lethargic -2
1431
+ lethargy -2
1432
+ liar -3
1433
+ liars -3
1434
+ libelous -2
1435
+ lied -2
1436
+ lifesaver 4
1437
+ lighthearted 1
1438
+ like 2
1439
+ liked 2
1440
+ likes 2
1441
+ limitation -1
1442
+ limited -1
1443
+ limits -1
1444
+ litigation -1
1445
+ litigious -2
1446
+ lively 2
1447
+ livid -2
1448
+ lmao 4
1449
+ lmfao 4
1450
+ loathe -3
1451
+ loathed -3
1452
+ loathes -3
1453
+ loathing -3
1454
+ lobby -2
1455
+ lobbying -2
1456
+ lol 3
1457
+ lonely -2
1458
+ lonesome -2
1459
+ longing -1
1460
+ loom -1
1461
+ loomed -1
1462
+ looming -1
1463
+ looms -1
1464
+ loose -3
1465
+ looses -3
1466
+ loser -3
1467
+ losing -3
1468
+ loss -3
1469
+ lost -3
1470
+ lovable 3
1471
+ love 3
1472
+ loved 3
1473
+ lovelies 3
1474
+ lovely 3
1475
+ loving 2
1476
+ lowest -1
1477
+ loyal 3
1478
+ loyalty 3
1479
+ luck 3
1480
+ luckily 3
1481
+ lucky 3
1482
+ lugubrious -2
1483
+ lunatic -3
1484
+ lunatics -3
1485
+ lurk -1
1486
+ lurking -1
1487
+ lurks -1
1488
+ mad -3
1489
+ maddening -3
1490
+ made-up -1
1491
+ madly -3
1492
+ madness -3
1493
+ mandatory -1
1494
+ manipulated -1
1495
+ manipulating -1
1496
+ manipulation -1
1497
+ marvel 3
1498
+ marvelous 3
1499
+ marvels 3
1500
+ masterpiece 4
1501
+ masterpieces 4
1502
+ matter 1
1503
+ matters 1
1504
+ mature 2
1505
+ meaningful 2
1506
+ meaningless -2
1507
+ medal 3
1508
+ mediocrity -3
1509
+ meditative 1
1510
+ melancholy -2
1511
+ menace -2
1512
+ menaced -2
1513
+ mercy 2
1514
+ merry 3
1515
+ mess -2
1516
+ messed -2
1517
+ messing up -2
1518
+ methodical 2
1519
+ mindless -2
1520
+ miracle 4
1521
+ mirth 3
1522
+ mirthful 3
1523
+ mirthfully 3
1524
+ misbehave -2
1525
+ misbehaved -2
1526
+ misbehaves -2
1527
+ misbehaving -2
1528
+ mischief -1
1529
+ mischiefs -1
1530
+ miserable -3
1531
+ misery -2
1532
+ misgiving -2
1533
+ misinformation -2
1534
+ misinformed -2
1535
+ misinterpreted -2
1536
+ misleading -3
1537
+ misread -1
1538
+ misreporting -2
1539
+ misrepresentation -2
1540
+ miss -2
1541
+ missed -2
1542
+ missing -2
1543
+ mistake -2
1544
+ mistaken -2
1545
+ mistakes -2
1546
+ mistaking -2
1547
+ misunderstand -2
1548
+ misunderstanding -2
1549
+ misunderstands -2
1550
+ misunderstood -2
1551
+ moan -2
1552
+ moaned -2
1553
+ moaning -2
1554
+ moans -2
1555
+ mock -2
1556
+ mocked -2
1557
+ mocking -2
1558
+ mocks -2
1559
+ mongering -2
1560
+ monopolize -2
1561
+ monopolized -2
1562
+ monopolizes -2
1563
+ monopolizing -2
1564
+ moody -1
1565
+ mope -1
1566
+ moping -1
1567
+ moron -3
1568
+ motherfucker -5
1569
+ motherfucking -5
1570
+ motivate 1
1571
+ motivated 2
1572
+ motivating 2
1573
+ motivation 1
1574
+ mourn -2
1575
+ mourned -2
1576
+ mournful -2
1577
+ mourning -2
1578
+ mourns -2
1579
+ mumpish -2
1580
+ murder -2
1581
+ murderer -2
1582
+ murdering -3
1583
+ murderous -3
1584
+ murders -2
1585
+ myth -1
1586
+ n00b -2
1587
+ naive -2
1588
+ nasty -3
1589
+ natural 1
1590
+ naïve -2
1591
+ needy -2
1592
+ negative -2
1593
+ negativity -2
1594
+ neglect -2
1595
+ neglected -2
1596
+ neglecting -2
1597
+ neglects -2
1598
+ nerves -1
1599
+ nervous -2
1600
+ nervously -2
1601
+ nice 3
1602
+ nifty 2
1603
+ niggas -5
1604
+ nigger -5
1605
+ no -1
1606
+ no fun -3
1607
+ noble 2
1608
+ noisy -1
1609
+ nonsense -2
1610
+ noob -2
1611
+ nosey -2
1612
+ not good -2
1613
+ not working -3
1614
+ notorious -2
1615
+ novel 2
1616
+ numb -1
1617
+ nuts -3
1618
+ obliterate -2
1619
+ obliterated -2
1620
+ obnoxious -3
1621
+ obscene -2
1622
+ obsessed 2
1623
+ obsolete -2
1624
+ obstacle -2
1625
+ obstacles -2
1626
+ obstinate -2
1627
+ odd -2
1628
+ offend -2
1629
+ offended -2
1630
+ offender -2
1631
+ offending -2
1632
+ offends -2
1633
+ offline -1
1634
+ oks 2
1635
+ ominous 3
1636
+ once-in-a-lifetime 3
1637
+ opportunities 2
1638
+ opportunity 2
1639
+ oppressed -2
1640
+ oppressive -2
1641
+ optimism 2
1642
+ optimistic 2
1643
+ optionless -2
1644
+ outcry -2
1645
+ outmaneuvered -2
1646
+ outrage -3
1647
+ outraged -3
1648
+ outreach 2
1649
+ outstanding 5
1650
+ overjoyed 4
1651
+ overload -1
1652
+ overlooked -1
1653
+ overreact -2
1654
+ overreacted -2
1655
+ overreaction -2
1656
+ overreacts -2
1657
+ oversell -2
1658
+ overselling -2
1659
+ oversells -2
1660
+ oversimplification -2
1661
+ oversimplified -2
1662
+ oversimplifies -2
1663
+ oversimplify -2
1664
+ overstatement -2
1665
+ overstatements -2
1666
+ overweight -1
1667
+ oxymoron -1
1668
+ pain -2
1669
+ pained -2
1670
+ panic -3
1671
+ panicked -3
1672
+ panics -3
1673
+ paradise 3
1674
+ paradox -1
1675
+ pardon 2
1676
+ pardoned 2
1677
+ pardoning 2
1678
+ pardons 2
1679
+ parley -1
1680
+ passionate 2
1681
+ passive -1
1682
+ passively -1
1683
+ pathetic -2
1684
+ pay -1
1685
+ peace 2
1686
+ peaceful 2
1687
+ peacefully 2
1688
+ penalty -2
1689
+ pensive -1
1690
+ perfect 3
1691
+ perfected 2
1692
+ perfectly 3
1693
+ perfects 2
1694
+ peril -2
1695
+ perjury -3
1696
+ perpetrator -2
1697
+ perpetrators -2
1698
+ perplexed -2
1699
+ persecute -2
1700
+ persecuted -2
1701
+ persecutes -2
1702
+ persecuting -2
1703
+ perturbed -2
1704
+ pesky -2
1705
+ pessimism -2
1706
+ pessimistic -2
1707
+ petrified -2
1708
+ phobic -2
1709
+ picturesque 2
1710
+ pileup -1
1711
+ pique -2
1712
+ piqued -2
1713
+ piss -4
1714
+ pissed -4
1715
+ pissing -3
1716
+ piteous -2
1717
+ pitied -1
1718
+ pity -2
1719
+ playful 2
1720
+ pleasant 3
1721
+ please 1
1722
+ pleased 3
1723
+ pleasure 3
1724
+ poised -2
1725
+ poison -2
1726
+ poisoned -2
1727
+ poisons -2
1728
+ pollute -2
1729
+ polluted -2
1730
+ polluter -2
1731
+ polluters -2
1732
+ pollutes -2
1733
+ poor -2
1734
+ poorer -2
1735
+ poorest -2
1736
+ popular 3
1737
+ positive 2
1738
+ positively 2
1739
+ possessive -2
1740
+ postpone -1
1741
+ postponed -1
1742
+ postpones -1
1743
+ postponing -1
1744
+ poverty -1
1745
+ powerful 2
1746
+ powerless -2
1747
+ praise 3
1748
+ praised 3
1749
+ praises 3
1750
+ praising 3
1751
+ pray 1
1752
+ praying 1
1753
+ prays 1
1754
+ prblm -2
1755
+ prblms -2
1756
+ prepared 1
1757
+ pressure -1
1758
+ pressured -2
1759
+ pretend -1
1760
+ pretending -1
1761
+ pretends -1
1762
+ pretty 1
1763
+ prevent -1
1764
+ prevented -1
1765
+ preventing -1
1766
+ prevents -1
1767
+ prick -5
1768
+ prison -2
1769
+ prisoner -2
1770
+ prisoners -2
1771
+ privileged 2
1772
+ proactive 2
1773
+ problem -2
1774
+ problems -2
1775
+ profiteer -2
1776
+ progress 2
1777
+ prominent 2
1778
+ promise 1
1779
+ promised 1
1780
+ promises 1
1781
+ promote 1
1782
+ promoted 1
1783
+ promotes 1
1784
+ promoting 1
1785
+ propaganda -2
1786
+ prosecute -1
1787
+ prosecuted -2
1788
+ prosecutes -1
1789
+ prosecution -1
1790
+ prospect 1
1791
+ prospects 1
1792
+ prosperous 3
1793
+ protect 1
1794
+ protected 1
1795
+ protects 1
1796
+ protest -2
1797
+ protesters -2
1798
+ protesting -2
1799
+ protests -2
1800
+ proud 2
1801
+ proudly 2
1802
+ provoke -1
1803
+ provoked -1
1804
+ provokes -1
1805
+ provoking -1
1806
+ pseudoscience -3
1807
+ punish -2
1808
+ punished -2
1809
+ punishes -2
1810
+ punitive -2
1811
+ pushy -1
1812
+ puzzled -2
1813
+ quaking -2
1814
+ questionable -2
1815
+ questioned -1
1816
+ questioning -1
1817
+ racism -3
1818
+ racist -3
1819
+ racists -3
1820
+ rage -2
1821
+ rageful -2
1822
+ rainy -1
1823
+ rant -3
1824
+ ranter -3
1825
+ ranters -3
1826
+ rants -3
1827
+ rape -4
1828
+ rapist -4
1829
+ rapture 2
1830
+ raptured 2
1831
+ raptures 2
1832
+ rapturous 4
1833
+ rash -2
1834
+ ratified 2
1835
+ reach 1
1836
+ reached 1
1837
+ reaches 1
1838
+ reaching 1
1839
+ reassure 1
1840
+ reassured 1
1841
+ reassures 1
1842
+ reassuring 2
1843
+ rebellion -2
1844
+ recession -2
1845
+ reckless -2
1846
+ recommend 2
1847
+ recommended 2
1848
+ recommends 2
1849
+ redeemed 2
1850
+ refuse -2
1851
+ refused -2
1852
+ refusing -2
1853
+ regret -2
1854
+ regretful -2
1855
+ regrets -2
1856
+ regretted -2
1857
+ regretting -2
1858
+ reject -1
1859
+ rejected -1
1860
+ rejecting -1
1861
+ rejects -1
1862
+ rejoice 4
1863
+ rejoiced 4
1864
+ rejoices 4
1865
+ rejoicing 4
1866
+ relaxed 2
1867
+ relentless -1
1868
+ reliant 2
1869
+ relieve 1
1870
+ relieved 2
1871
+ relieves 1
1872
+ relieving 2
1873
+ relishing 2
1874
+ remarkable 2
1875
+ remorse -2
1876
+ repulse -1
1877
+ repulsed -2
1878
+ rescue 2
1879
+ rescued 2
1880
+ rescues 2
1881
+ resentful -2
1882
+ resign -1
1883
+ resigned -1
1884
+ resigning -1
1885
+ resigns -1
1886
+ resolute 2
1887
+ resolve 2
1888
+ resolved 2
1889
+ resolves 2
1890
+ resolving 2
1891
+ respected 2
1892
+ responsible 2
1893
+ responsive 2
1894
+ restful 2
1895
+ restless -2
1896
+ restore 1
1897
+ restored 1
1898
+ restores 1
1899
+ restoring 1
1900
+ restrict -2
1901
+ restricted -2
1902
+ restricting -2
1903
+ restriction -2
1904
+ restricts -2
1905
+ retained -1
1906
+ retard -2
1907
+ retarded -2
1908
+ retreat -1
1909
+ revenge -2
1910
+ revengeful -2
1911
+ revered 2
1912
+ revive 2
1913
+ revives 2
1914
+ reward 2
1915
+ rewarded 2
1916
+ rewarding 2
1917
+ rewards 2
1918
+ rich 2
1919
+ ridiculous -3
1920
+ rig -1
1921
+ rigged -1
1922
+ right direction 3
1923
+ rigorous 3
1924
+ rigorously 3
1925
+ riot -2
1926
+ riots -2
1927
+ risk -2
1928
+ risks -2
1929
+ rob -2
1930
+ robber -2
1931
+ robed -2
1932
+ robing -2
1933
+ robs -2
1934
+ robust 2
1935
+ rofl 4
1936
+ roflcopter 4
1937
+ roflmao 4
1938
+ romance 2
1939
+ rotfl 4
1940
+ rotflmfao 4
1941
+ rotflol 4
1942
+ ruin -2
1943
+ ruined -2
1944
+ ruining -2
1945
+ ruins -2
1946
+ sabotage -2
1947
+ sad -2
1948
+ sadden -2
1949
+ saddened -2
1950
+ sadly -2
1951
+ safe 1
1952
+ safely 1
1953
+ safety 1
1954
+ salient 1
1955
+ sappy -1
1956
+ sarcastic -2
1957
+ satisfied 2
1958
+ save 2
1959
+ saved 2
1960
+ scam -2
1961
+ scams -2
1962
+ scandal -3
1963
+ scandalous -3
1964
+ scandals -3
1965
+ scapegoat -2
1966
+ scapegoats -2
1967
+ scare -2
1968
+ scared -2
1969
+ scary -2
1970
+ sceptical -2
1971
+ scold -2
1972
+ scoop 3
1973
+ scorn -2
1974
+ scornful -2
1975
+ scream -2
1976
+ screamed -2
1977
+ screaming -2
1978
+ screams -2
1979
+ screwed -2
1980
+ screwed up -3
1981
+ scumbag -4
1982
+ secure 2
1983
+ secured 2
1984
+ secures 2
1985
+ sedition -2
1986
+ seditious -2
1987
+ seduced -1
1988
+ self-confident 2
1989
+ self-deluded -2
1990
+ selfish -3
1991
+ selfishness -3
1992
+ sentence -2
1993
+ sentenced -2
1994
+ sentences -2
1995
+ sentencing -2
1996
+ serene 2
1997
+ severe -2
1998
+ sexy 3
1999
+ shaky -2
2000
+ shame -2
2001
+ shamed -2
2002
+ shameful -2
2003
+ share 1
2004
+ shared 1
2005
+ shares 1
2006
+ shattered -2
2007
+ shit -4
2008
+ shithead -4
2009
+ shitty -3
2010
+ shock -2
2011
+ shocked -2
2012
+ shocking -2
2013
+ shocks -2
2014
+ shoot -1
2015
+ short-sighted -2
2016
+ short-sightedness -2
2017
+ shortage -2
2018
+ shortages -2
2019
+ shrew -4
2020
+ shy -1
2021
+ sick -2
2022
+ sigh -2
2023
+ significance 1
2024
+ significant 1
2025
+ silencing -1
2026
+ silly -1
2027
+ sincere 2
2028
+ sincerely 2
2029
+ sincerest 2
2030
+ sincerity 2
2031
+ sinful -3
2032
+ singleminded -2
2033
+ skeptic -2
2034
+ skeptical -2
2035
+ skepticism -2
2036
+ skeptics -2
2037
+ slam -2
2038
+ slash -2
2039
+ slashed -2
2040
+ slashes -2
2041
+ slashing -2
2042
+ slavery -3
2043
+ sleeplessness -2
2044
+ slick 2
2045
+ slicker 2
2046
+ slickest 2
2047
+ sluggish -2
2048
+ slut -5
2049
+ smart 1
2050
+ smarter 2
2051
+ smartest 2
2052
+ smear -2
2053
+ smile 2
2054
+ smiled 2
2055
+ smiles 2
2056
+ smiling 2
2057
+ smog -2
2058
+ sneaky -1
2059
+ snub -2
2060
+ snubbed -2
2061
+ snubbing -2
2062
+ snubs -2
2063
+ sobering 1
2064
+ solemn -1
2065
+ solid 2
2066
+ solidarity 2
2067
+ solution 1
2068
+ solutions 1
2069
+ solve 1
2070
+ solved 1
2071
+ solves 1
2072
+ solving 1
2073
+ somber -2
2074
+ some kind 0
2075
+ son-of-a-bitch -5
2076
+ soothe 3
2077
+ soothed 3
2078
+ soothing 3
2079
+ sophisticated 2
2080
+ sore -1
2081
+ sorrow -2
2082
+ sorrowful -2
2083
+ sorry -1
2084
+ spam -2
2085
+ spammer -3
2086
+ spammers -3
2087
+ spamming -2
2088
+ spark 1
2089
+ sparkle 3
2090
+ sparkles 3
2091
+ sparkling 3
2092
+ speculative -2
2093
+ spirit 1
2094
+ spirited 2
2095
+ spiritless -2
2096
+ spiteful -2
2097
+ splendid 3
2098
+ sprightly 2
2099
+ squelched -1
2100
+ stab -2
2101
+ stabbed -2
2102
+ stable 2
2103
+ stabs -2
2104
+ stall -2
2105
+ stalled -2
2106
+ stalling -2
2107
+ stamina 2
2108
+ stampede -2
2109
+ startled -2
2110
+ starve -2
2111
+ starved -2
2112
+ starves -2
2113
+ starving -2
2114
+ steadfast 2
2115
+ steal -2
2116
+ steals -2
2117
+ stereotype -2
2118
+ stereotyped -2
2119
+ stifled -1
2120
+ stimulate 1
2121
+ stimulated 1
2122
+ stimulates 1
2123
+ stimulating 2
2124
+ stingy -2
2125
+ stolen -2
2126
+ stop -1
2127
+ stopped -1
2128
+ stopping -1
2129
+ stops -1
2130
+ stout 2
2131
+ straight 1
2132
+ strange -1
2133
+ strangely -1
2134
+ strangled -2
2135
+ strength 2
2136
+ strengthen 2
2137
+ strengthened 2
2138
+ strengthening 2
2139
+ strengthens 2
2140
+ stressed -2
2141
+ stressor -2
2142
+ stressors -2
2143
+ stricken -2
2144
+ strike -1
2145
+ strikers -2
2146
+ strikes -1
2147
+ strong 2
2148
+ stronger 2
2149
+ strongest 2
2150
+ struck -1
2151
+ struggle -2
2152
+ struggled -2
2153
+ struggles -2
2154
+ struggling -2
2155
+ stubborn -2
2156
+ stuck -2
2157
+ stunned -2
2158
+ stunning 4
2159
+ stupid -2
2160
+ stupidly -2
2161
+ suave 2
2162
+ substantial 1
2163
+ substantially 1
2164
+ subversive -2
2165
+ success 2
2166
+ successful 3
2167
+ suck -3
2168
+ sucks -3
2169
+ suffer -2
2170
+ suffering -2
2171
+ suffers -2
2172
+ suicidal -2
2173
+ suicide -2
2174
+ suing -2
2175
+ sulking -2
2176
+ sulky -2
2177
+ sullen -2
2178
+ sunshine 2
2179
+ super 3
2180
+ superb 5
2181
+ superior 2
2182
+ support 2
2183
+ supported 2
2184
+ supporter 1
2185
+ supporters 1
2186
+ supporting 1
2187
+ supportive 2
2188
+ supports 2
2189
+ survived 2
2190
+ surviving 2
2191
+ survivor 2
2192
+ suspect -1
2193
+ suspected -1
2194
+ suspecting -1
2195
+ suspects -1
2196
+ suspend -1
2197
+ suspended -1
2198
+ suspicious -2
2199
+ swear -2
2200
+ swearing -2
2201
+ swears -2
2202
+ sweet 2
2203
+ swift 2
2204
+ swiftly 2
2205
+ swindle -3
2206
+ swindles -3
2207
+ swindling -3
2208
+ sympathetic 2
2209
+ sympathy 2
2210
+ tard -2
2211
+ tears -2
2212
+ tender 2
2213
+ tense -2
2214
+ tension -1
2215
+ terrible -3
2216
+ terribly -3
2217
+ terrific 4
2218
+ terrified -3
2219
+ terror -3
2220
+ terrorize -3
2221
+ terrorized -3
2222
+ terrorizes -3
2223
+ thank 2
2224
+ thankful 2
2225
+ thanks 2
2226
+ thorny -2
2227
+ thoughtful 2
2228
+ thoughtless -2
2229
+ threat -2
2230
+ threaten -2
2231
+ threatened -2
2232
+ threatening -2
2233
+ threatens -2
2234
+ threats -2
2235
+ thrilled 5
2236
+ thwart -2
2237
+ thwarted -2
2238
+ thwarting -2
2239
+ thwarts -2
2240
+ timid -2
2241
+ timorous -2
2242
+ tired -2
2243
+ tits -2
2244
+ tolerant 2
2245
+ toothless -2
2246
+ top 2
2247
+ tops 2
2248
+ torn -2
2249
+ torture -4
2250
+ tortured -4
2251
+ tortures -4
2252
+ torturing -4
2253
+ totalitarian -2
2254
+ totalitarianism -2
2255
+ tout -2
2256
+ touted -2
2257
+ touting -2
2258
+ touts -2
2259
+ tragedy -2
2260
+ tragic -2
2261
+ tranquil 2
2262
+ trap -1
2263
+ trapped -2
2264
+ trauma -3
2265
+ traumatic -3
2266
+ travesty -2
2267
+ treason -3
2268
+ treasonous -3
2269
+ treasure 2
2270
+ treasures 2
2271
+ trembling -2
2272
+ tremulous -2
2273
+ tricked -2
2274
+ trickery -2
2275
+ triumph 4
2276
+ triumphant 4
2277
+ trouble -2
2278
+ troubled -2
2279
+ troubles -2
2280
+ true 2
2281
+ trust 1
2282
+ trusted 2
2283
+ tumor -2
2284
+ twat -5
2285
+ ugly -3
2286
+ unacceptable -2
2287
+ unappreciated -2
2288
+ unapproved -2
2289
+ unaware -2
2290
+ unbelievable -1
2291
+ unbelieving -1
2292
+ unbiased 2
2293
+ uncertain -1
2294
+ unclear -1
2295
+ uncomfortable -2
2296
+ unconcerned -2
2297
+ unconfirmed -1
2298
+ unconvinced -1
2299
+ uncredited -1
2300
+ undecided -1
2301
+ underestimate -1
2302
+ underestimated -1
2303
+ underestimates -1
2304
+ underestimating -1
2305
+ undermine -2
2306
+ undermined -2
2307
+ undermines -2
2308
+ undermining -2
2309
+ undeserving -2
2310
+ undesirable -2
2311
+ uneasy -2
2312
+ unemployment -2
2313
+ unequal -1
2314
+ unequaled 2
2315
+ unethical -2
2316
+ unfair -2
2317
+ unfocused -2
2318
+ unfulfilled -2
2319
+ unhappy -2
2320
+ unhealthy -2
2321
+ unified 1
2322
+ unimpressed -2
2323
+ unintelligent -2
2324
+ united 1
2325
+ unjust -2
2326
+ unlovable -2
2327
+ unloved -2
2328
+ unmatched 1
2329
+ unmotivated -2
2330
+ unprofessional -2
2331
+ unresearched -2
2332
+ unsatisfied -2
2333
+ unsecured -2
2334
+ unsettled -1
2335
+ unsophisticated -2
2336
+ unstable -2
2337
+ unstoppable 2
2338
+ unsupported -2
2339
+ unsure -1
2340
+ untarnished 2
2341
+ unwanted -2
2342
+ unworthy -2
2343
+ upset -2
2344
+ upsets -2
2345
+ upsetting -2
2346
+ uptight -2
2347
+ urgent -1
2348
+ useful 2
2349
+ usefulness 2
2350
+ useless -2
2351
+ uselessness -2
2352
+ vague -2
2353
+ validate 1
2354
+ validated 1
2355
+ validates 1
2356
+ validating 1
2357
+ verdict -1
2358
+ verdicts -1
2359
+ vested 1
2360
+ vexation -2
2361
+ vexing -2
2362
+ vibrant 3
2363
+ vicious -2
2364
+ victim -3
2365
+ victimize -3
2366
+ victimized -3
2367
+ victimizes -3
2368
+ victimizing -3
2369
+ victims -3
2370
+ vigilant 3
2371
+ vile -3
2372
+ vindicate 2
2373
+ vindicated 2
2374
+ vindicates 2
2375
+ vindicating 2
2376
+ violate -2
2377
+ violated -2
2378
+ violates -2
2379
+ violating -2
2380
+ violence -3
2381
+ violent -3
2382
+ virtuous 2
2383
+ virulent -2
2384
+ vision 1
2385
+ visionary 3
2386
+ visioning 1
2387
+ visions 1
2388
+ vitality 3
2389
+ vitamin 1
2390
+ vitriolic -3
2391
+ vivacious 3
2392
+ vociferous -1
2393
+ vulnerability -2
2394
+ vulnerable -2
2395
+ walkout -2
2396
+ walkouts -2
2397
+ wanker -3
2398
+ want 1
2399
+ war -2
2400
+ warfare -2
2401
+ warm 1
2402
+ warmth 2
2403
+ warn -2
2404
+ warned -2
2405
+ warning -3
2406
+ warnings -3
2407
+ warns -2
2408
+ waste -1
2409
+ wasted -2
2410
+ wasting -2
2411
+ wavering -1
2412
+ weak -2
2413
+ weakness -2
2414
+ wealth 3
2415
+ wealthy 2
2416
+ weary -2
2417
+ weep -2
2418
+ weeping -2
2419
+ weird -2
2420
+ welcome 2
2421
+ welcomed 2
2422
+ welcomes 2
2423
+ whimsical 1
2424
+ whitewash -3
2425
+ whore -4
2426
+ wicked -2
2427
+ widowed -1
2428
+ willingness 2
2429
+ win 4
2430
+ winner 4
2431
+ winning 4
2432
+ wins 4
2433
+ winwin 3
2434
+ wish 1
2435
+ wishes 1
2436
+ wishing 1
2437
+ withdrawal -3
2438
+ woebegone -2
2439
+ woeful -3
2440
+ won 3
2441
+ wonderful 4
2442
+ woo 3
2443
+ woohoo 3
2444
+ wooo 4
2445
+ woow 4
2446
+ worn -1
2447
+ worried -3
2448
+ worry -3
2449
+ worrying -3
2450
+ worse -3
2451
+ worsen -3
2452
+ worsened -3
2453
+ worsening -3
2454
+ worsens -3
2455
+ worshiped 3
2456
+ worst -3
2457
+ worth 2
2458
+ worthless -2
2459
+ worthy 2
2460
+ wow 4
2461
+ wowow 4
2462
+ wowww 4
2463
+ wrathful -3
2464
+ wreck -2
2465
+ wrong -2
2466
+ wronged -2
2467
+ wtf -4
2468
+ yeah 1
2469
+ yearning 1
2470
+ yeees 2
2471
+ yes 1
2472
+ youthful 2
2473
+ yucky -2
2474
+ yummy 3
2475
+ zealot -2
2476
+ zealots -2
2477
+ zealous 2