naymor 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: f66843369fd28fbf7c9412d050a3f35ea91b7a7db5bec2c728f59619881f4b81
4
+ data.tar.gz: eb04d56659f2ba23753fd767ade8680419537ec6b1ca6f53bd4c766fbe9e5ea7
5
+ SHA512:
6
+ metadata.gz: 4c7af8f196baddab56afe48c7d4bb0ffe7730aac179371f702d5f889e87db90af8f7203ca152534e0a7e7445aaa13b052a3333a8530a330bcb3caed41da9b175
7
+ data.tar.gz: e5af11a41a4d47bc89b7298379117ec7896a1b070152c9313ab4fd2c1ffb9e528d3643e6f70f1f52adde53b9294a10d9d79c9dc513241c92ccb5e885a0122033
@@ -0,0 +1,22 @@
1
+ ---
2
+ name: Bug report
3
+ about: Create a report to help us improve
4
+
5
+ ---
6
+
7
+ **Describe the bug**
8
+ A clear and concise description of what the bug is.
9
+
10
+ **To Reproduce**
11
+ Steps to reproduce the behavior:
12
+
13
+ **Expected behavior**
14
+ A clear and concise description of what you expected to happen.
15
+
16
+ **Environment (please complete the following information):**
17
+ - Platform: [e.g. OSX Sierra, Ubuntu]
18
+ - Ruby Environment [Ruby version, Rubygems version etc.]
19
+ - Naymor version
20
+
21
+ **Additional context**
22
+ Add any other context about the problem here.
@@ -0,0 +1,17 @@
1
+ ---
2
+ name: Feature request
3
+ about: Suggest an idea for this project
4
+
5
+ ---
6
+
7
+ **Is your feature request related to a problem? Please describe.**
8
+ A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
9
+
10
+ **Describe the solution you'd like**
11
+ A clear and concise description of what you want to happen.
12
+
13
+ **Describe alternatives you've considered**
14
+ A clear and concise description of any alternative solutions or features you've considered.
15
+
16
+ **Additional context**
17
+ Add any other context or screenshots about the feature request here.
@@ -0,0 +1,8 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.5.0
5
+ before_install: gem install bundler -v 1.16.1
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at david@bangline.co.uk. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in naymor.gemspec
6
+ gemspec
@@ -0,0 +1,22 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ naymor (0.1.0)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ minitest (5.11.3)
10
+ rake (10.5.0)
11
+
12
+ PLATFORMS
13
+ ruby
14
+
15
+ DEPENDENCIES
16
+ bundler (~> 1.16)
17
+ minitest (~> 5.0)
18
+ naymor!
19
+ rake (~> 10.0)
20
+
21
+ BUNDLED WITH
22
+ 1.16.1
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2018 Dave Kennedy
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,57 @@
1
+ # Naymor
2
+
3
+ A stupidly simple random name generator that tries to be unique. It aspires to generate names in the same ilk as heroku default app names `adjective-noun-random_number`.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'naymor'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install naymor
20
+
21
+ ## Usage
22
+
23
+ Naymor only has three available methods.
24
+
25
+ ### .generate
26
+
27
+ This is the go to method. `Naymor.generate` returns the string you want.
28
+
29
+ ### .populate_adjectives(IO)
30
+
31
+ Feel like using a custom list of adjectives? Pass an IO based object, usually a file
32
+
33
+ ```
34
+ Naymor.populate_adjectives(File.open('path/to/file.txt')
35
+ ```
36
+
37
+ ### .populate_nouns(IO)
38
+
39
+ Same as populating the adjectives (above)
40
+
41
+ ## Development
42
+
43
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
44
+
45
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
46
+
47
+ ## Contributing
48
+
49
+ Bug reports and pull requests are welcome on GitHub at https://github.com/bangline/naymor. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
50
+
51
+ ## License
52
+
53
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
54
+
55
+ ## Code of Conduct
56
+
57
+ Everyone interacting in the Naymor project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/bangline/naymor/blob/master/CODE_OF_CONDUCT.md).
@@ -0,0 +1,10 @@
1
+ require "bundler/gem_tasks"
2
+ require "rake/testtask"
3
+
4
+ Rake::TestTask.new(:test) do |t|
5
+ t.libs << "test"
6
+ t.libs << "lib"
7
+ t.test_files = FileList["test/**/*_test.rb"]
8
+ end
9
+
10
+ task :default => :test
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "naymor"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,23 @@
1
+ require 'naymor/version'
2
+ require 'naymor/list'
3
+
4
+ module Naymor
5
+ require 'securerandom'
6
+
7
+ DEFAULT_ADJECTIVES = File.expand_path("../naymor/adjectives.txt", __FILE__)
8
+ DEFAULT_NOUNS = File.expand_path("../naymor/nouns.txt", __FILE__)
9
+
10
+ def self.populate_adjectives(list)
11
+ @adjectives = List.new(list)
12
+ end
13
+
14
+ def self.populate_nouns(list)
15
+ @nouns = List.new(list)
16
+ end
17
+
18
+ populate_adjectives File.open(DEFAULT_ADJECTIVES)
19
+ populate_nouns File.open(DEFAULT_NOUNS)
20
+ def self.generate
21
+ [@adjectives.pick, @nouns.pick, SecureRandom.hex(3)].join('-')
22
+ end
23
+ end
@@ -0,0 +1,1450 @@
1
+ average
2
+ big
3
+ colossal
4
+ fat
5
+ giant
6
+ gigantic
7
+ great
8
+ huge
9
+ immense
10
+ large
11
+ little
12
+ long
13
+ mammoth
14
+ massive
15
+ miniature
16
+ petite
17
+ puny
18
+ short
19
+ small
20
+ tall
21
+ tiny
22
+ boiling
23
+ breezy
24
+ broken
25
+ bumpy
26
+ chilly
27
+ cold
28
+ cool
29
+ creepy
30
+ crooked
31
+ cuddly
32
+ curly
33
+ damaged
34
+ damp
35
+ dirty
36
+ dry
37
+ dusty
38
+ filthy
39
+ flaky
40
+ fluffy
41
+ wet
42
+ broad
43
+ chubby
44
+ crooked
45
+ curved
46
+ deep
47
+ flat
48
+ high
49
+ hollow
50
+ low
51
+ narrow
52
+ round
53
+ shallow
54
+ skinny
55
+ square
56
+ steep
57
+ straight
58
+ wide
59
+ ancient
60
+ brief
61
+ early
62
+ fast
63
+ late
64
+ long
65
+ modern
66
+ old
67
+ quick
68
+ rapid
69
+ short
70
+ slow
71
+ swift
72
+ young
73
+ abundant
74
+ empty
75
+ few
76
+ heavy
77
+ light
78
+ many
79
+ numerous
80
+ Sound
81
+ cooing
82
+ deafening
83
+ faint
84
+ harsh
85
+ hissing
86
+ hushed
87
+ husky
88
+ loud
89
+ melodic
90
+ moaning
91
+ mute
92
+ noisy
93
+ purring
94
+ quiet
95
+ raspy
96
+ resonant
97
+ screeching
98
+ shrill
99
+ silent
100
+ soft
101
+ squealing
102
+ thundering
103
+ voiceless
104
+ whispering
105
+ bitter
106
+ delicious
107
+ fresh
108
+ juicy
109
+ ripe
110
+ rotten
111
+ salty
112
+ sour
113
+ spicy
114
+ stale
115
+ sticky
116
+ strong
117
+ sweet
118
+ tasteless
119
+ tasty
120
+ thirsty
121
+ fluttering
122
+ fuzzy
123
+ greasy
124
+ grubby
125
+ hard
126
+ hot
127
+ icy
128
+ loose
129
+ melted
130
+ plastic
131
+ prickly
132
+ rainy
133
+ rough
134
+ scattered
135
+ shaggy
136
+ shaky
137
+ sharp
138
+ shivering
139
+ silky
140
+ slimy
141
+ slippery
142
+ smooth
143
+ soft
144
+ solid
145
+ steady
146
+ sticky
147
+ tender
148
+ tight
149
+ uneven
150
+ weak
151
+ wet
152
+ wooden
153
+ afraid
154
+ angry
155
+ annoyed
156
+ anxious
157
+ arrogant
158
+ ashamed
159
+ awful
160
+ bad
161
+ bewildered
162
+ bored
163
+ combative
164
+ condemned
165
+ confused
166
+ creepy
167
+ cruel
168
+ dangerous
169
+ defeated
170
+ defiant
171
+ depressed
172
+ disgusted
173
+ disturbed
174
+ eerie
175
+ embarrassed
176
+ envious
177
+ evil
178
+ fierce
179
+ foolish
180
+ frantic
181
+ frightened
182
+ grieving
183
+ helpless
184
+ homeless
185
+ hungry
186
+ hurt
187
+ ill
188
+ jealous
189
+ lonely
190
+ mysterious
191
+ naughty
192
+ nervous
193
+ obnoxious
194
+ outrageous
195
+ panicky
196
+ repulsive
197
+ scary
198
+ scornful
199
+ selfish
200
+ sore
201
+ tense
202
+ terrible
203
+ thoughtless
204
+ tired
205
+ troubled
206
+ upset
207
+ uptight
208
+ weary
209
+ wicked
210
+ worried
211
+ agreeable
212
+ amused
213
+ brave
214
+ calm
215
+ charming
216
+ cheerful
217
+ comfortable
218
+ cooperative
219
+ courageous
220
+ delightful
221
+ determined
222
+ eager
223
+ elated
224
+ enchanting
225
+ encouraging
226
+ energetic
227
+ enthusiastic
228
+ excited
229
+ exuberant
230
+ fair
231
+ faithful
232
+ fantastic
233
+ fine
234
+ friendly
235
+ funny
236
+ gentle
237
+ glorious
238
+ good
239
+ happy
240
+ healthy
241
+ helpful
242
+ hilarious
243
+ jolly
244
+ joyous
245
+ kind
246
+ lively
247
+ lovely
248
+ lucky
249
+ obedient
250
+ perfect
251
+ pleasant
252
+ proud
253
+ relieved
254
+ silly
255
+ smiling
256
+ splendid
257
+ successful
258
+ thoughtful
259
+ victorious
260
+ vivacious
261
+ witty
262
+ wonderful
263
+ zealous
264
+ zany
265
+ other
266
+ good
267
+ new
268
+ old
269
+ great
270
+ high
271
+ small
272
+ different
273
+ large
274
+ local
275
+ social
276
+ important
277
+ long
278
+ young
279
+ national
280
+ british
281
+ right
282
+ early
283
+ possible
284
+ big
285
+ little
286
+ political
287
+ able
288
+ late
289
+ general
290
+ full
291
+ far
292
+ low
293
+ public
294
+ available
295
+ bad
296
+ main
297
+ sure
298
+ clear
299
+ major
300
+ economic
301
+ only
302
+ likely
303
+ real
304
+ black
305
+ particular
306
+ international
307
+ special
308
+ difficult
309
+ certain
310
+ open
311
+ whole
312
+ white
313
+ free
314
+ short
315
+ easy
316
+ strong
317
+ european
318
+ central
319
+ similar
320
+ human
321
+ common
322
+ necessary
323
+ single
324
+ personal
325
+ hard
326
+ private
327
+ poor
328
+ financial
329
+ wide
330
+ foreign
331
+ simple
332
+ recent
333
+ concerned
334
+ american
335
+ various
336
+ close
337
+ fine
338
+ english
339
+ wrong
340
+ present
341
+ royal
342
+ natural
343
+ individual
344
+ nice
345
+ french
346
+ following
347
+ current
348
+ modern
349
+ labour
350
+ legal
351
+ happy
352
+ final
353
+ red
354
+ normal
355
+ serious
356
+ previous
357
+ total
358
+ prime
359
+ significant
360
+ industrial
361
+ sorry
362
+ dead
363
+ specific
364
+ appropriate
365
+ top
366
+ soviet
367
+ basic
368
+ military
369
+ original
370
+ successful
371
+ aware
372
+ hon
373
+ popular
374
+ heavy
375
+ professional
376
+ direct
377
+ dark
378
+ cold
379
+ ready
380
+ green
381
+ useful
382
+ effective
383
+ western
384
+ traditional
385
+ scottish
386
+ german
387
+ independent
388
+ deep
389
+ interesting
390
+ considerable
391
+ involved
392
+ physical
393
+ left
394
+ hot
395
+ existing
396
+ responsible
397
+ complete
398
+ medical
399
+ blue
400
+ extra
401
+ past
402
+ male
403
+ interested
404
+ fair
405
+ essential
406
+ beautiful
407
+ civil
408
+ primary
409
+ obvious
410
+ future
411
+ environmental
412
+ positive
413
+ senior
414
+ nuclear
415
+ annual
416
+ relevant
417
+ huge
418
+ rich
419
+ commercial
420
+ safe
421
+ regional
422
+ practical
423
+ official
424
+ separate
425
+ key
426
+ chief
427
+ regular
428
+ due
429
+ additional
430
+ active
431
+ powerful
432
+ complex
433
+ standard
434
+ impossible
435
+ light
436
+ warm
437
+ middle
438
+ fresh
439
+ sexual
440
+ front
441
+ domestic
442
+ actual
443
+ united
444
+ technical
445
+ ordinary
446
+ cheap
447
+ strange
448
+ internal
449
+ excellent
450
+ quiet
451
+ soft
452
+ potential
453
+ northern
454
+ religious
455
+ quick
456
+ very
457
+ famous
458
+ cultural
459
+ proper
460
+ broad
461
+ joint
462
+ formal
463
+ limited
464
+ conservative
465
+ lovely
466
+ usual
467
+ ltd
468
+ unable
469
+ rural
470
+ initial
471
+ substantial
472
+ christian
473
+ bright
474
+ average
475
+ leading
476
+ reasonable
477
+ immediate
478
+ suitable
479
+ equal
480
+ detailed
481
+ working
482
+ overall
483
+ female
484
+ afraid
485
+ democratic
486
+ growing
487
+ sufficient
488
+ scientific
489
+ eastern
490
+ correct
491
+ inc
492
+ irish
493
+ expensive
494
+ educational
495
+ mental
496
+ dangerous
497
+ critical
498
+ increased
499
+ familiar
500
+ unlikely
501
+ double
502
+ perfect
503
+ slow
504
+ tiny
505
+ dry
506
+ historical
507
+ thin
508
+ daily
509
+ southern
510
+ increasing
511
+ wild
512
+ alone
513
+ urban
514
+ empty
515
+ married
516
+ narrow
517
+ liberal
518
+ supposed
519
+ upper
520
+ apparent
521
+ tall
522
+ busy
523
+ bloody
524
+ prepared
525
+ russian
526
+ moral
527
+ careful
528
+ clean
529
+ attractive
530
+ japanese
531
+ vital
532
+ thick
533
+ alternative
534
+ fast
535
+ ancient
536
+ elderly
537
+ rare
538
+ external
539
+ capable
540
+ brief
541
+ wonderful
542
+ grand
543
+ typical
544
+ entire
545
+ grey
546
+ constant
547
+ vast
548
+ surprised
549
+ ideal
550
+ terrible
551
+ academic
552
+ funny
553
+ minor
554
+ pleased
555
+ severe
556
+ ill
557
+ corporate
558
+ negative
559
+ permanent
560
+ weak
561
+ brown
562
+ fundamental
563
+ odd
564
+ crucial
565
+ inner
566
+ used
567
+ criminal
568
+ contemporary
569
+ sharp
570
+ sick
571
+ near
572
+ roman
573
+ massive
574
+ unique
575
+ secondary
576
+ parliamentary
577
+ african
578
+ unknown
579
+ subsequent
580
+ angry
581
+ alive
582
+ guilty
583
+ lucky
584
+ enormous
585
+ well
586
+ communist
587
+ yellow
588
+ unusual
589
+ net
590
+ tough
591
+ dear
592
+ extensive
593
+ glad
594
+ remaining
595
+ agricultural
596
+ alright
597
+ healthy
598
+ italian
599
+ principal
600
+ tired
601
+ efficient
602
+ comfortable
603
+ chinese
604
+ relative
605
+ friendly
606
+ conventional
607
+ willing
608
+ sudden
609
+ proposed
610
+ voluntary
611
+ slight
612
+ valuable
613
+ dramatic
614
+ golden
615
+ temporary
616
+ federal
617
+ keen
618
+ flat
619
+ silent
620
+ indian
621
+ worried
622
+ pale
623
+ statutory
624
+ welsh
625
+ dependent
626
+ firm
627
+ wet
628
+ competitive
629
+ armed
630
+ radical
631
+ outside
632
+ acceptable
633
+ sensitive
634
+ living
635
+ pure
636
+ global
637
+ emotional
638
+ sad
639
+ secret
640
+ rapid
641
+ adequate
642
+ fixed
643
+ sweet
644
+ administrative
645
+ wooden
646
+ remarkable
647
+ comprehensive
648
+ surprising
649
+ solid
650
+ rough
651
+ mere
652
+ mass
653
+ brilliant
654
+ maximum
655
+ absolute
656
+ tory
657
+ electronic
658
+ visual
659
+ electric
660
+ cool
661
+ spanish
662
+ literary
663
+ continuing
664
+ supreme
665
+ chemical
666
+ genuine
667
+ exciting
668
+ written
669
+ stupid
670
+ advanced
671
+ extreme
672
+ classical
673
+ fit
674
+ favourite
675
+ socialist
676
+ widespread
677
+ confident
678
+ straight
679
+ catholic
680
+ proud
681
+ numerous
682
+ opposite
683
+ distinct
684
+ mad
685
+ helpful
686
+ given
687
+ disabled
688
+ consistent
689
+ anxious
690
+ nervous
691
+ awful
692
+ stable
693
+ constitutional
694
+ satisfied
695
+ conscious
696
+ developing
697
+ strategic
698
+ holy
699
+ smooth
700
+ dominant
701
+ remote
702
+ theoretical
703
+ outstanding
704
+ pink
705
+ pretty
706
+ clinical
707
+ minimum
708
+ honest
709
+ impressive
710
+ related
711
+ residential
712
+ extraordinary
713
+ plain
714
+ visible
715
+ accurate
716
+ distant
717
+ still
718
+ greek
719
+ complicated
720
+ musical
721
+ precise
722
+ gentle
723
+ broken
724
+ live
725
+ silly
726
+ fat
727
+ tight
728
+ monetary
729
+ round
730
+ psychological
731
+ violent
732
+ unemployed
733
+ inevitable
734
+ junior
735
+ sensible
736
+ grateful
737
+ pleasant
738
+ dirty
739
+ structural
740
+ welcome
741
+ deaf
742
+ above
743
+ continuous
744
+ blind
745
+ overseas
746
+ mean
747
+ entitled
748
+ delighted
749
+ loose
750
+ occasional
751
+ evident
752
+ desperate
753
+ fellow
754
+ universal
755
+ square
756
+ steady
757
+ classic
758
+ equivalent
759
+ intellectual
760
+ victorian
761
+ level
762
+ ultimate
763
+ creative
764
+ lost
765
+ medieval
766
+ clever
767
+ linguistic
768
+ convinced
769
+ judicial
770
+ raw
771
+ sophisticated
772
+ asleep
773
+ vulnerable
774
+ illegal
775
+ outer
776
+ revolutionary
777
+ bitter
778
+ changing
779
+ australian
780
+ native
781
+ imperial
782
+ strict
783
+ wise
784
+ informal
785
+ flexible
786
+ collective
787
+ frequent
788
+ experimental
789
+ spiritual
790
+ intense
791
+ rational
792
+ ethnic
793
+ generous
794
+ inadequate
795
+ prominent
796
+ logical
797
+ bare
798
+ historic
799
+ modest
800
+ dutch
801
+ acute
802
+ electrical
803
+ valid
804
+ weekly
805
+ gross
806
+ automatic
807
+ loud
808
+ reliable
809
+ mutual
810
+ liable
811
+ multiple
812
+ ruling
813
+ curious
814
+ arab
815
+ sole
816
+ jewish
817
+ managing
818
+ pregnant
819
+ latin
820
+ nearby
821
+ exact
822
+ underlying
823
+ identical
824
+ satisfactory
825
+ marginal
826
+ distinctive
827
+ electoral
828
+ urgent
829
+ presidential
830
+ controversial
831
+ oral
832
+ everyday
833
+ encouraging
834
+ organic
835
+ continued
836
+ expected
837
+ statistical
838
+ desirable
839
+ innocent
840
+ improved
841
+ exclusive
842
+ marked
843
+ experienced
844
+ unexpected
845
+ superb
846
+ sheer
847
+ disappointed
848
+ frightened
849
+ gastric
850
+ capitalist
851
+ romantic
852
+ naked
853
+ reluctant
854
+ magnificent
855
+ convenient
856
+ established
857
+ closed
858
+ uncertain
859
+ artificial
860
+ diplomatic
861
+ tremendous
862
+ marine
863
+ mechanical
864
+ retail
865
+ institutional
866
+ mixed
867
+ required
868
+ biological
869
+ known
870
+ functional
871
+ straightforward
872
+ superior
873
+ digital
874
+ spectacular
875
+ unhappy
876
+ confused
877
+ unfair
878
+ aggressive
879
+ spare
880
+ painful
881
+ abstract
882
+ asian
883
+ associated
884
+ legislative
885
+ monthly
886
+ intelligent
887
+ hungry
888
+ explicit
889
+ nasty
890
+ just
891
+ faint
892
+ coloured
893
+ ridiculous
894
+ amazing
895
+ comparable
896
+ successive
897
+ realistic
898
+ back
899
+ decent
900
+ unnecessary
901
+ flying
902
+ fucking
903
+ random
904
+ influential
905
+ dull
906
+ genetic
907
+ neat
908
+ marvellous
909
+ crazy
910
+ damp
911
+ giant
912
+ secure
913
+ bottom
914
+ skilled
915
+ subtle
916
+ elegant
917
+ brave
918
+ lesser
919
+ parallel
920
+ steep
921
+ intensive
922
+ casual
923
+ tropical
924
+ lonely
925
+ partial
926
+ preliminary
927
+ concrete
928
+ alleged
929
+ assistant
930
+ vertical
931
+ upset
932
+ delicate
933
+ mild
934
+ occupational
935
+ excessive
936
+ progressive
937
+ iraqi
938
+ exceptional
939
+ integrated
940
+ striking
941
+ continental
942
+ okay
943
+ harsh
944
+ combined
945
+ fierce
946
+ handsome
947
+ characteristic
948
+ chronic
949
+ compulsory
950
+ interim
951
+ objective
952
+ splendid
953
+ magic
954
+ systematic
955
+ obliged
956
+ payable
957
+ fun
958
+ horrible
959
+ primitive
960
+ fascinating
961
+ ideological
962
+ metropolitan
963
+ surrounding
964
+ estimated
965
+ peaceful
966
+ premier
967
+ operational
968
+ technological
969
+ kind
970
+ advisory
971
+ hostile
972
+ precious
973
+ gay
974
+ accessible
975
+ determined
976
+ excited
977
+ impressed
978
+ provincial
979
+ smart
980
+ endless
981
+ isolated
982
+ drunk
983
+ geographical
984
+ like
985
+ dynamic
986
+ boring
987
+ forthcoming
988
+ unfortunate
989
+ definite
990
+ super
991
+ notable
992
+ indirect
993
+ stiff
994
+ wealthy
995
+ awkward
996
+ lively
997
+ neutral
998
+ artistic
999
+ content
1000
+ mature
1001
+ colonial
1002
+ ambitious
1003
+ evil
1004
+ magnetic
1005
+ verbal
1006
+ legitimate
1007
+ sympathetic
1008
+ empirical
1009
+ head
1010
+ shallow
1011
+ vague
1012
+ naval
1013
+ depressed
1014
+ shared
1015
+ added
1016
+ shocked
1017
+ mid
1018
+ worthwhile
1019
+ qualified
1020
+ missing
1021
+ blank
1022
+ absent
1023
+ favourable
1024
+ polish
1025
+ israeli
1026
+ developed
1027
+ profound
1028
+ representative
1029
+ enthusiastic
1030
+ dreadful
1031
+ rigid
1032
+ reduced
1033
+ cruel
1034
+ coastal
1035
+ peculiar
1036
+ racial
1037
+ ugly
1038
+ swiss
1039
+ crude
1040
+ extended
1041
+ selected
1042
+ eager
1043
+ feminist
1044
+ canadian
1045
+ bold
1046
+ relaxed
1047
+ corresponding
1048
+ running
1049
+ planned
1050
+ applicable
1051
+ immense
1052
+ allied
1053
+ comparative
1054
+ uncomfortable
1055
+ conservation
1056
+ productive
1057
+ beneficial
1058
+ bored
1059
+ charming
1060
+ minimal
1061
+ mobile
1062
+ turkish
1063
+ orange
1064
+ rear
1065
+ passive
1066
+ suspicious
1067
+ overwhelming
1068
+ fatal
1069
+ resulting
1070
+ symbolic
1071
+ registered
1072
+ neighbouring
1073
+ calm
1074
+ irrelevant
1075
+ patient
1076
+ compact
1077
+ profitable
1078
+ rival
1079
+ loyal
1080
+ moderate
1081
+ distinguished
1082
+ interior
1083
+ noble
1084
+ insufficient
1085
+ eligible
1086
+ mysterious
1087
+ varying
1088
+ managerial
1089
+ molecular
1090
+ olympic
1091
+ linear
1092
+ prospective
1093
+ printed
1094
+ parental
1095
+ diverse
1096
+ elaborate
1097
+ furious
1098
+ fiscal
1099
+ burning
1100
+ useless
1101
+ semantic
1102
+ embarrassed
1103
+ inherent
1104
+ philosophical
1105
+ deliberate
1106
+ awake
1107
+ variable
1108
+ promising
1109
+ unpleasant
1110
+ varied
1111
+ sacred
1112
+ selective
1113
+ inclined
1114
+ tender
1115
+ hidden
1116
+ worthy
1117
+ intermediate
1118
+ sound
1119
+ protective
1120
+ fortunate
1121
+ slim
1122
+ islamic
1123
+ defensive
1124
+ divine
1125
+ stuck
1126
+ driving
1127
+ invisible
1128
+ misleading
1129
+ circular
1130
+ mathematical
1131
+ inappropriate
1132
+ liquid
1133
+ persistent
1134
+ solar
1135
+ doubtful
1136
+ manual
1137
+ architectural
1138
+ intact
1139
+ incredible
1140
+ devoted
1141
+ prior
1142
+ tragic
1143
+ respectable
1144
+ optimistic
1145
+ convincing
1146
+ unacceptable
1147
+ decisive
1148
+ competent
1149
+ spatial
1150
+ respective
1151
+ binding
1152
+ relieved
1153
+ nursing
1154
+ toxic
1155
+ select
1156
+ redundant
1157
+ integral
1158
+ then
1159
+ probable
1160
+ amateur
1161
+ fond
1162
+ passing
1163
+ specified
1164
+ territorial
1165
+ horizontal
1166
+ inland
1167
+ cognitive
1168
+ regulatory
1169
+ miserable
1170
+ resident
1171
+ polite
1172
+ scared
1173
+ marxist
1174
+ gothic
1175
+ civilian
1176
+ instant
1177
+ lengthy
1178
+ adverse
1179
+ korean
1180
+ unconscious
1181
+ anonymous
1182
+ aesthetic
1183
+ orthodox
1184
+ static
1185
+ unaware
1186
+ costly
1187
+ fantastic
1188
+ foolish
1189
+ fashionable
1190
+ causal
1191
+ compatible
1192
+ wee
1193
+ implicit
1194
+ dual
1195
+ ok
1196
+ cheerful
1197
+ subjective
1198
+ forward
1199
+ surviving
1200
+ exotic
1201
+ purple
1202
+ cautious
1203
+ visiting
1204
+ aggregate
1205
+ ethical
1206
+ protestant
1207
+ teenage
1208
+ dying
1209
+ disastrous
1210
+ delicious
1211
+ confidential
1212
+ underground
1213
+ thorough
1214
+ grim
1215
+ autonomous
1216
+ atomic
1217
+ frozen
1218
+ colourful
1219
+ injured
1220
+ uniform
1221
+ ashamed
1222
+ glorious
1223
+ wicked
1224
+ coherent
1225
+ rising
1226
+ shy
1227
+ novel
1228
+ balanced
1229
+ delightful
1230
+ arbitrary
1231
+ adjacent
1232
+ psychiatric
1233
+ worrying
1234
+ weird
1235
+ unchanged
1236
+ rolling
1237
+ evolutionary
1238
+ intimate
1239
+ sporting
1240
+ disciplinary
1241
+ formidable
1242
+ lexical
1243
+ noisy
1244
+ gradual
1245
+ accused
1246
+ homeless
1247
+ supporting
1248
+ coming
1249
+ renewed
1250
+ excess
1251
+ retired
1252
+ rubber
1253
+ chosen
1254
+ outdoor
1255
+ embarrassing
1256
+ preferred
1257
+ bizarre
1258
+ appalling
1259
+ agreed
1260
+ imaginative
1261
+ governing
1262
+ accepted
1263
+ vocational
1264
+ palestinian
1265
+ mighty
1266
+ puzzled
1267
+ worldwide
1268
+ handicapped
1269
+ organisational
1270
+ sunny
1271
+ eldest
1272
+ eventual
1273
+ spontaneous
1274
+ vivid
1275
+ rude
1276
+ faithful
1277
+ ministerial
1278
+ innovative
1279
+ controlled
1280
+ conceptual
1281
+ unwilling
1282
+ civic
1283
+ meaningful
1284
+ disturbing
1285
+ alive
1286
+ brainy
1287
+ breakable
1288
+ busy
1289
+ careful
1290
+ cautious
1291
+ clever
1292
+ concerned
1293
+ crazy
1294
+ curious
1295
+ dead
1296
+ different
1297
+ difficult
1298
+ doubtful
1299
+ easy
1300
+ famous
1301
+ fragile
1302
+ helpful
1303
+ helpless
1304
+ important
1305
+ impossible
1306
+ innocent
1307
+ inquisitive
1308
+ modern
1309
+ open
1310
+ outstanding
1311
+ poor
1312
+ powerful
1313
+ puzzled
1314
+ real
1315
+ rich
1316
+ shy
1317
+ sleepy
1318
+ stupid
1319
+ super
1320
+ tame
1321
+ uninterested
1322
+ wandering
1323
+ wild
1324
+ wrong
1325
+ adorable
1326
+ alert
1327
+ average
1328
+ beautiful
1329
+ blonde
1330
+ bloody
1331
+ blushing
1332
+ bright
1333
+ clean
1334
+ clear
1335
+ cloudy
1336
+ colorful
1337
+ crowded
1338
+ cute
1339
+ dark
1340
+ drab
1341
+ distinct
1342
+ dull
1343
+ elegant
1344
+ fancy
1345
+ filthy
1346
+ glamorous
1347
+ gleaming
1348
+ graceful
1349
+ grotesque
1350
+ homely
1351
+ light
1352
+ misty
1353
+ motionless
1354
+ muddy
1355
+ plain
1356
+ poised
1357
+ quaint
1358
+ shiny
1359
+ smoggy
1360
+ sparkling
1361
+ spotless
1362
+ stormy
1363
+ strange
1364
+ ugly
1365
+ unsightly
1366
+ unusual
1367
+ bad
1368
+ better
1369
+ beautiful
1370
+ big
1371
+ black
1372
+ blue
1373
+ bright
1374
+ clumsy
1375
+ crazy
1376
+ dizzy
1377
+ dull
1378
+ fat
1379
+ frail
1380
+ friendly
1381
+ funny
1382
+ great
1383
+ green
1384
+ gigantic
1385
+ gorgeous
1386
+ grumpy
1387
+ handsome
1388
+ happy
1389
+ horrible
1390
+ itchy
1391
+ jittery
1392
+ jolly
1393
+ kind
1394
+ long
1395
+ lazy
1396
+ magnificent
1397
+ magenta
1398
+ many
1399
+ mighty
1400
+ mushy
1401
+ nasty
1402
+ new
1403
+ nice
1404
+ nosy
1405
+ nutty
1406
+ nutritious
1407
+ odd
1408
+ orange
1409
+ ordinary
1410
+ pretty
1411
+ precious
1412
+ prickly
1413
+ purple
1414
+ quaint
1415
+ quiet
1416
+ quick
1417
+ quickest
1418
+ rainy
1419
+ rare
1420
+ ratty
1421
+ red
1422
+ roasted
1423
+ robust
1424
+ round
1425
+ sad
1426
+ scary
1427
+ scrawny
1428
+ short
1429
+ silly
1430
+ stingy
1431
+ strange
1432
+ striped
1433
+ spotty
1434
+ tart
1435
+ tall
1436
+ tame
1437
+ tan
1438
+ tender
1439
+ testy
1440
+ tricky
1441
+ tough
1442
+ ugly
1443
+ ugliest
1444
+ vast
1445
+ watery
1446
+ wasteful
1447
+ wonderful
1448
+ yellow
1449
+ yummy
1450
+ zany