nameit 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: fd29ff5064d140341b9c4f983e739405f603cfa6
4
+ data.tar.gz: 2c898121b54af034a4d4601cd71c034a79d7797b
5
+ SHA512:
6
+ metadata.gz: 2def04476090133bff0fa67aac5622ecf7b4e266ed9aecc57c66a9030fcee61536a2a2be5c8c84ce4c98791301e41c6fe88066eabe92323f4b71b5b45343dd88
7
+ data.tar.gz: da924bb6969d22fc0dfcb5190842eec26e2c792e0cf3da020453128c8886bdb904b0e7e8d76e29054dd160e112b0a523cb128acd3051e6d80591f18a0acdc820
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
@@ -0,0 +1,18 @@
1
+ language: ruby
2
+
3
+ rvm:
4
+ - 2.0.0
5
+ - 1.9.3
6
+ - 1.9.2
7
+ - jruby-19mode
8
+ - rbx-2.1.1
9
+ - 2.1.0-preview2
10
+ - jruby-head
11
+ - ruby-head
12
+
13
+ bundler_args: --without guard
14
+
15
+ matrix:
16
+ allow_failures:
17
+ - rvm: ruby-head
18
+ - rvm: jruby-head
@@ -0,0 +1,6 @@
1
+ ## 0.1.0 / 2013-12-16
2
+
3
+ * The initial release. ([@fnichol][])
4
+
5
+ <!--- The following link definition list is generated by PimpMyChangelog --->
6
+ [@fnichol]: https://github.com/fnichol
data/Gemfile ADDED
@@ -0,0 +1,11 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in nameit.gemspec
4
+ gemspec
5
+
6
+ group :guard do
7
+ gem 'rb-inotify', :require => false
8
+ gem 'rb-fsevent', :require => false
9
+ gem 'rb-fchange', :require => false
10
+ gem 'guard-minitest'
11
+ end
@@ -0,0 +1,5 @@
1
+ guard 'minitest' do
2
+ # with Minitest::Spec
3
+ watch(%r|^spec/(.*)_spec\.rb|)
4
+ watch(%r|^lib/(.*)([^/]+)\.rb|) { |m| "spec/#{m[1]}#{m[2]}_spec.rb" }
5
+ end
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 Fletcher Nichol
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.
@@ -0,0 +1,108 @@
1
+ # <a name="title"></a> Nameit! "Give it a name, why dont'cha?"
2
+
3
+ [![Gem Version](https://badge.fury.io/rb/nameit.png)](http://badge.fury.io/rb/nameit)
4
+ [![Build Status](https://secure.travis-ci.org/fnichol/nameit.png)](http://travis-ci.org/fnichol/nameit)
5
+ [![Code Climate](https://codeclimate.com/github/fnichol/nameit.png)](https://codeclimate.com/github/fnichol/nameit)
6
+ [![Dependency Status](https://gemnasium.com/fnichol/nameit.png)](https://gemnasium.com/fnichol/nameit)
7
+
8
+ Nameit is a small zero-dependency library and tool that helps you generate a random name for a project, database, session--you decide. You get glorious **<adjective>-<noun>** style names such as **"pushy-clock"** and **"lovely-ducks"** or ask for a random number on the end to give you names like **"numberless-cactus-123"** and **"superb-shoes-915"**.
9
+
10
+ * No dependencies
11
+ * Runs on all the Ruby implementations
12
+ * Uses `SecureRandom`
13
+
14
+ ## <a name="installation"></a> Installation
15
+
16
+ Add this line to your application's Gemfile:
17
+
18
+ ```ruby
19
+ gem 'namit'
20
+ ```
21
+
22
+ And then execute:
23
+
24
+ ```sh
25
+ $ bundle
26
+ ```
27
+
28
+ Or install it yourself as:
29
+
30
+ ```sh
31
+ $ gem install namit
32
+ ```
33
+
34
+ ## <a name="usage"></a> Usage
35
+
36
+ ### <a name="usage-bin"></a> nameit Command
37
+
38
+ Nameit ships with the `nameit` command so you can get a shiny new name right from the command line:
39
+
40
+ ```sh
41
+ $ nameit
42
+ abhorrent-flowers
43
+ $ nameit 3
44
+ cowardly-pot
45
+ quickest-sleep
46
+ heartbreaking-lamp
47
+ ```
48
+
49
+ ### <a name="usage-ruby"></a> Ruby Library
50
+
51
+ Use it with a class method for a quick one-offs:
52
+
53
+ ```ruby
54
+ require 'nameit'
55
+
56
+ Nameit.generate
57
+ # => "sassy-clocks"
58
+ Nameit.generate
59
+ # => "dazzling-comb"
60
+
61
+ Nameit.generate(number: true)
62
+ # => "blushing-camera-632"
63
+ ```
64
+
65
+ Or for peppier performance (to save on re-reading the data sources), use a `Nameit` instance:
66
+
67
+ ```ruby
68
+ require 'nameit'
69
+
70
+ nameit = Nameit.new
71
+
72
+ 3.times.map { nameit.generate }
73
+ # => ["ethereal-music", "historical-argument", "recondite-pear"]
74
+
75
+ nameit = Nameit.new(number: true)
76
+
77
+ 2.times.map { nameit.generate }
78
+ # => ["peaceful-book-260", "synonymous-lizards-501"]
79
+ ```
80
+
81
+ ## <a name="development"></a> Development
82
+
83
+ * Source hosted at [GitHub][repo]
84
+ * Report issues/questions/feature requests on [GitHub Issues][issues]
85
+
86
+ Pull requests are very welcome! Make sure your patches are well tested.
87
+ Ideally create a topic branch for every separate change you make. For
88
+ example:
89
+
90
+ 1. Fork the repo
91
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
92
+ 3. Commit your changes (`git commit -am 'Added some feature'`)
93
+ 4. Push to the branch (`git push origin my-new-feature`)
94
+ 5. Create new Pull Request
95
+
96
+ ## <a name="authors"></a> Authors
97
+
98
+ Created and maintained by [Fletcher Nichol][fnichol] (<fnichol@nichol.ca>)
99
+
100
+ ## <a name="license"></a> License
101
+
102
+ MIT (see [LICENSE][license])
103
+
104
+ [license]: https://github.com/fnichol/nameit/blob/master/LICENSE.txt
105
+ [fnichol]: https://github.com/fnichol
106
+ [repo]: https://github.com/fnichol/nameit
107
+ [issues]: https://github.com/fnichol/nameit/issues
108
+ [contributors]: https://github.com/fnichol/nameit/contributors
@@ -0,0 +1,11 @@
1
+ #!/usr/bin/env rake
2
+ require "bundler/gem_tasks"
3
+ require "rake/testtask"
4
+
5
+ Rake::TestTask.new do |t|
6
+ t.libs.push "lib"
7
+ t.test_files = FileList['spec/**/*_spec.rb']
8
+ t.verbose = true
9
+ end
10
+
11
+ task :default => :test
@@ -0,0 +1,37 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ $:.unshift File.join(File.dirname(__FILE__), %w{.. lib})
4
+ require 'nameit'
5
+ require 'optparse'
6
+
7
+ this_many = 1
8
+ number = false
9
+
10
+ ARGV.options do |opts|
11
+ opts.banner = "Usage: nameit [options] [NUMBER]"
12
+ opts.on("-n", "--[no-]number", "Add random number to name(s)") do |o|
13
+ number = o
14
+ end
15
+ opts.on_tail("-h", "--help", "Display CLI help (this output)") do |o|
16
+ puts opts.help
17
+ exit
18
+ end
19
+ opts.on_tail("-v", "--version", "Display Nameit version") do |o|
20
+ puts "Nameit #{Nameit::VERSION}"
21
+ exit
22
+ end
23
+ opts.parse!
24
+
25
+ ($stderr.puts ">>>> Invalid arguments"; abort opts.help) if ARGV.size > 1
26
+
27
+ this_many = ARGV.shift unless ARGV.empty?
28
+ begin
29
+ this_many = Integer(this_many)
30
+ rescue ArgumentError
31
+ $stderr.puts ">>>> Error parsing `#{this_many}'"
32
+ abort opts.help
33
+ end
34
+ end
35
+
36
+ nameit = Nameit.new(:number => number)
37
+ this_many.times.each { puts nameit.generate }
@@ -0,0 +1,1124 @@
1
+ aback
2
+ abaft
3
+ abandoned
4
+ abashed
5
+ aberrant
6
+ abhorrent
7
+ abiding
8
+ abject
9
+ ablaze
10
+ able
11
+ abnormal
12
+ aboard
13
+ aboriginal
14
+ abortive
15
+ abounding
16
+ abrasive
17
+ abrupt
18
+ absent
19
+ absorbed
20
+ absorbing
21
+ abstracted
22
+ absurd
23
+ abundant
24
+ abusive
25
+ acceptable
26
+ accessible
27
+ accidental
28
+ accurate
29
+ acid
30
+ acidic
31
+ acoustic
32
+ acrid
33
+ actually
34
+ ad
35
+ adamant
36
+ adaptable
37
+ addicted
38
+ adhesive
39
+ adjoining
40
+ adorable
41
+ adventurous
42
+ afraid
43
+ aggressive
44
+ agonizing
45
+ agreeable
46
+ ahead
47
+ ajar
48
+ alcoholic
49
+ alert
50
+ alike
51
+ alive
52
+ alleged
53
+ alluring
54
+ aloof
55
+ amazing
56
+ ambiguous
57
+ ambitious
58
+ amuck
59
+ amused
60
+ amusing
61
+ ancient
62
+ angry
63
+ animated
64
+ annoyed
65
+ annoying
66
+ anxious
67
+ apathetic
68
+ aquatic
69
+ aromatic
70
+ arrogant
71
+ ashamed
72
+ aspiring
73
+ assorted
74
+ astonishing
75
+ attractive
76
+ auspicious
77
+ automatic
78
+ available
79
+ average
80
+ awake
81
+ aware
82
+ awesome
83
+ awful
84
+ axiomatic
85
+ bad
86
+ barbarous
87
+ bashful
88
+ bawdy
89
+ beautiful
90
+ befitting
91
+ belligerent
92
+ beneficial
93
+ bent
94
+ berserk
95
+ best
96
+ better
97
+ bewildered
98
+ big
99
+ billowy
100
+ bite-sized
101
+ bitter
102
+ bizarre
103
+ black
104
+ black-and-white
105
+ bloody
106
+ blue
107
+ blue-eyed
108
+ blushing
109
+ boiling
110
+ boorish
111
+ bored
112
+ boring
113
+ bouncy
114
+ boundless
115
+ brainy
116
+ brash
117
+ brave
118
+ brawny
119
+ breakable
120
+ breezy
121
+ brief
122
+ bright
123
+ broad
124
+ broken
125
+ brown
126
+ bumpy
127
+ burly
128
+ bustling
129
+ busy
130
+ cagey
131
+ calculating
132
+ callous
133
+ calm
134
+ capable
135
+ capricious
136
+ careful
137
+ careless
138
+ caring
139
+ cautious
140
+ ceaseless
141
+ certain
142
+ changeable
143
+ charming
144
+ cheap
145
+ cheerful
146
+ chemical
147
+ chief
148
+ childlike
149
+ chilly
150
+ chivalrous
151
+ chubby
152
+ chunky
153
+ clammy
154
+ classy
155
+ clean
156
+ clear
157
+ clever
158
+ cloistered
159
+ closed
160
+ cloudy
161
+ clumsy
162
+ cluttered
163
+ coherent
164
+ cold
165
+ colorful
166
+ colossal
167
+ combative
168
+ comfortable
169
+ common
170
+ complete
171
+ complex
172
+ concerned
173
+ condemned
174
+ confused
175
+ conscious
176
+ cooing
177
+ cool
178
+ cooperative
179
+ coordinated
180
+ courageous
181
+ cowardly
182
+ crabby
183
+ craven
184
+ crazy
185
+ creepy
186
+ crooked
187
+ crowded
188
+ cruel
189
+ cuddly
190
+ cultured
191
+ cumbersome
192
+ curious
193
+ curly
194
+ curved
195
+ curvy
196
+ cut
197
+ cute
198
+ cynical
199
+ daffy
200
+ daily
201
+ damaged
202
+ damaging
203
+ damp
204
+ dangerous
205
+ dapper
206
+ dark
207
+ dashing
208
+ dazzling
209
+ dead
210
+ deadpan
211
+ deafening
212
+ dear
213
+ debonair
214
+ decisive
215
+ decorous
216
+ deep
217
+ deeply
218
+ defeated
219
+ defective
220
+ defiant
221
+ delicate
222
+ delicious
223
+ delightful
224
+ delirious
225
+ demonic
226
+ dependent
227
+ depressed
228
+ deranged
229
+ descriptive
230
+ deserted
231
+ detailed
232
+ determined
233
+ devilish
234
+ didactic
235
+ different
236
+ difficult
237
+ diligent
238
+ direful
239
+ dirty
240
+ disagreeable
241
+ disastrous
242
+ discreet
243
+ disgusted
244
+ disgusting
245
+ disillusioned
246
+ dispensable
247
+ distinct
248
+ disturbed
249
+ divergent
250
+ dizzy
251
+ domineering
252
+ doubtful
253
+ drab
254
+ draconian
255
+ dramatic
256
+ dreary
257
+ drunk
258
+ dry
259
+ dull
260
+ dusty
261
+ dynamic
262
+ dysfunctional
263
+ eager
264
+ early
265
+ earsplitting
266
+ earthy
267
+ easy
268
+ eatable
269
+ economic
270
+ educated
271
+ efficacious
272
+ efficient
273
+ eight
274
+ elastic
275
+ elated
276
+ elderly
277
+ electric
278
+ elegant
279
+ elfin
280
+ elite
281
+ embarrassed
282
+ eminent
283
+ empty
284
+ enchanted
285
+ enchanting
286
+ encouraging
287
+ endurable
288
+ energetic
289
+ enormous
290
+ entertaining
291
+ enthusiastic
292
+ envious
293
+ equable
294
+ equal
295
+ erect
296
+ erratic
297
+ ethereal
298
+ evanescent
299
+ evasive
300
+ even
301
+ excellent
302
+ excited
303
+ exciting
304
+ exclusive
305
+ exotic
306
+ expensive
307
+ extra-large
308
+ extra-small
309
+ exuberant
310
+ exultant
311
+ fabulous
312
+ faded
313
+ faint
314
+ fair
315
+ faithful
316
+ fallacious
317
+ false
318
+ familiar
319
+ famous
320
+ fanatical
321
+ fancy
322
+ fantastic
323
+ far
324
+ far-flung
325
+ fascinated
326
+ fast
327
+ fat
328
+ faulty
329
+ fearful
330
+ fearless
331
+ feeble
332
+ feigned
333
+ female
334
+ fertile
335
+ festive
336
+ few
337
+ fierce
338
+ filthy
339
+ fine
340
+ finicky
341
+ first
342
+ five
343
+ fixed
344
+ flagrant
345
+ flaky
346
+ flashy
347
+ flat
348
+ flawless
349
+ flimsy
350
+ flippant
351
+ flowery
352
+ fluffy
353
+ fluttering
354
+ foamy
355
+ foolish
356
+ foregoing
357
+ forgetful
358
+ fortunate
359
+ four
360
+ fragile
361
+ frail
362
+ frantic
363
+ free
364
+ freezing
365
+ frequent
366
+ fresh
367
+ fretful
368
+ friendly
369
+ frightened
370
+ frightening
371
+ full
372
+ fumbling
373
+ functional
374
+ funny
375
+ furry
376
+ furtive
377
+ future
378
+ futuristic
379
+ fuzzy
380
+ gabby
381
+ gainful
382
+ gamy
383
+ gaping
384
+ garrulous
385
+ gaudy
386
+ general
387
+ gentle
388
+ giant
389
+ giddy
390
+ gifted
391
+ gigantic
392
+ glamorous
393
+ gleaming
394
+ glib
395
+ glistening
396
+ glorious
397
+ glossy
398
+ godly
399
+ good
400
+ goofy
401
+ gorgeous
402
+ graceful
403
+ grandiose
404
+ grateful
405
+ gratis
406
+ gray
407
+ greasy
408
+ great
409
+ greedy
410
+ green
411
+ grey
412
+ grieving
413
+ groovy
414
+ grotesque
415
+ grouchy
416
+ grubby
417
+ gruesome
418
+ grumpy
419
+ guarded
420
+ guiltless
421
+ gullible
422
+ gusty
423
+ guttural
424
+ habitual
425
+ half
426
+ hallowed
427
+ halting
428
+ handsome
429
+ handsomely
430
+ handy
431
+ hanging
432
+ hapless
433
+ happy
434
+ hard
435
+ hard-to-find
436
+ harmonious
437
+ harsh
438
+ hateful
439
+ heady
440
+ healthy
441
+ heartbreaking
442
+ heavenly
443
+ heavy
444
+ hellish
445
+ helpful
446
+ helpless
447
+ hesitant
448
+ hideous
449
+ high
450
+ high-pitched
451
+ highfalutin
452
+ hilarious
453
+ hissing
454
+ historical
455
+ holistic
456
+ hollow
457
+ homeless
458
+ homely
459
+ honorable
460
+ horrible
461
+ hospitable
462
+ hot
463
+ huge
464
+ hulking
465
+ humdrum
466
+ humorous
467
+ hungry
468
+ hurried
469
+ hurt
470
+ hushed
471
+ husky
472
+ hypnotic
473
+ hysterical
474
+ icky
475
+ icy
476
+ idiotic
477
+ ignorant
478
+ ill
479
+ ill-fated
480
+ ill-informed
481
+ illegal
482
+ illustrious
483
+ imaginary
484
+ immense
485
+ imminent
486
+ impartial
487
+ imperfect
488
+ impolite
489
+ important
490
+ imported
491
+ impossible
492
+ incandescent
493
+ incompetent
494
+ inconclusive
495
+ incredible
496
+ industrious
497
+ inexpensive
498
+ infamous
499
+ innate
500
+ innocent
501
+ inquisitive
502
+ insidious
503
+ instinctive
504
+ intelligent
505
+ interesting
506
+ internal
507
+ invincible
508
+ irate
509
+ irritating
510
+ itchy
511
+ jaded
512
+ jagged
513
+ jazzy
514
+ jealous
515
+ jittery
516
+ jobless
517
+ jolly
518
+ joyous
519
+ judicious
520
+ juicy
521
+ jumbled
522
+ jumpy
523
+ juvenile
524
+ kaput
525
+ keen
526
+ kind
527
+ kindhearted
528
+ kindly
529
+ knotty
530
+ knowing
531
+ knowledgeable
532
+ known
533
+ labored
534
+ lackadaisical
535
+ lacking
536
+ lame
537
+ lamentable
538
+ languid
539
+ large
540
+ last
541
+ late
542
+ laughable
543
+ lavish
544
+ lazy
545
+ lean
546
+ learned
547
+ left
548
+ legal
549
+ lethal
550
+ level
551
+ lewd
552
+ light
553
+ like
554
+ likeable
555
+ limping
556
+ literate
557
+ little
558
+ lively
559
+ living
560
+ lonely
561
+ long
562
+ long-term
563
+ longing
564
+ loose
565
+ lopsided
566
+ loud
567
+ loutish
568
+ lovely
569
+ loving
570
+ low
571
+ lowly
572
+ lucky
573
+ ludicrous
574
+ lumpy
575
+ lush
576
+ luxuriant
577
+ lying
578
+ lyrical
579
+ macabre
580
+ macho
581
+ maddening
582
+ madly
583
+ magenta
584
+ magical
585
+ magnificent
586
+ majestic
587
+ makeshift
588
+ male
589
+ malicious
590
+ mammoth
591
+ maniacal
592
+ many
593
+ marked
594
+ married
595
+ marvelous
596
+ massive
597
+ material
598
+ materialistic
599
+ mature
600
+ mean
601
+ measly
602
+ meaty
603
+ medical
604
+ meek
605
+ mellow
606
+ melodic
607
+ melted
608
+ merciful
609
+ mere
610
+ messy
611
+ mighty
612
+ military
613
+ milky
614
+ mindless
615
+ miniature
616
+ minor
617
+ miscreant
618
+ misty
619
+ mixed
620
+ moaning
621
+ modern
622
+ moldy
623
+ momentous
624
+ motionless
625
+ mountainous
626
+ muddled
627
+ mundane
628
+ murky
629
+ mushy
630
+ mute
631
+ mysterious
632
+ naive
633
+ nappy
634
+ narrow
635
+ nasty
636
+ natural
637
+ naughty
638
+ nauseating
639
+ near
640
+ neat
641
+ nebulous
642
+ necessary
643
+ needless
644
+ needy
645
+ neighborly
646
+ nervous
647
+ new
648
+ next
649
+ nice
650
+ nifty
651
+ nimble
652
+ nine
653
+ nippy
654
+ noiseless
655
+ noisy
656
+ nonchalant
657
+ nondescript
658
+ nonstop
659
+ normal
660
+ nostalgic
661
+ nosy
662
+ noxious
663
+ null
664
+ numberless
665
+ numerous
666
+ nutritious
667
+ nutty
668
+ oafish
669
+ obedient
670
+ obeisant
671
+ obese
672
+ obnoxious
673
+ obscene
674
+ obsequious
675
+ observant
676
+ obsolete
677
+ obtainable
678
+ oceanic
679
+ odd
680
+ offbeat
681
+ old
682
+ old-fashioned
683
+ omniscient
684
+ one
685
+ onerous
686
+ open
687
+ opposite
688
+ optimal
689
+ orange
690
+ ordinary
691
+ organic
692
+ ossified
693
+ outgoing
694
+ outrageous
695
+ outstanding
696
+ oval
697
+ overconfident
698
+ overjoyed
699
+ overrated
700
+ overt
701
+ overwrought
702
+ painful
703
+ painstaking
704
+ pale
705
+ paltry
706
+ panicky
707
+ panoramic
708
+ parallel
709
+ parched
710
+ parsimonious
711
+ past
712
+ pastoral
713
+ pathetic
714
+ peaceful
715
+ penitent
716
+ perfect
717
+ periodic
718
+ permissible
719
+ perpetual
720
+ petite
721
+ phobic
722
+ physical
723
+ picayune
724
+ pink
725
+ piquant
726
+ placid
727
+ plain
728
+ plant
729
+ plastic
730
+ plausible
731
+ pleasant
732
+ plucky
733
+ pointless
734
+ poised
735
+ polite
736
+ political
737
+ poor
738
+ possessive
739
+ possible
740
+ powerful
741
+ precious
742
+ premium
743
+ present
744
+ pretty
745
+ previous
746
+ pricey
747
+ prickly
748
+ private
749
+ probable
750
+ productive
751
+ profuse
752
+ protective
753
+ proud
754
+ psychedelic
755
+ psychotic
756
+ public
757
+ puffy
758
+ pumped
759
+ puny
760
+ purple
761
+ purring
762
+ pushy
763
+ puzzled
764
+ puzzling
765
+ quack
766
+ quaint
767
+ quarrelsome
768
+ questionable
769
+ quick
770
+ quickest
771
+ quiet
772
+ quirky
773
+ quixotic
774
+ quizzical
775
+ rabid
776
+ racial
777
+ ragged
778
+ rainy
779
+ rambunctious
780
+ rampant
781
+ rapid
782
+ rare
783
+ raspy
784
+ ratty
785
+ ready
786
+ real
787
+ rebel
788
+ receptive
789
+ recondite
790
+ red
791
+ redundant
792
+ reflective
793
+ regular
794
+ relieved
795
+ remarkable
796
+ reminiscent
797
+ repulsive
798
+ resolute
799
+ resonant
800
+ responsible
801
+ rhetorical
802
+ rich
803
+ right
804
+ righteous
805
+ rightful
806
+ rigid
807
+ ripe
808
+ ritzy
809
+ roasted
810
+ robust
811
+ romantic
812
+ roomy
813
+ rotten
814
+ rough
815
+ round
816
+ royal
817
+ ruddy
818
+ rude
819
+ rural
820
+ rustic
821
+ ruthless
822
+ sable
823
+ sad
824
+ safe
825
+ salty
826
+ same
827
+ sassy
828
+ satisfying
829
+ savory
830
+ scandalous
831
+ scarce
832
+ scared
833
+ scary
834
+ scattered
835
+ scientific
836
+ scintillating
837
+ scrawny
838
+ screeching
839
+ second
840
+ second-hand
841
+ secret
842
+ secretive
843
+ sedate
844
+ seemly
845
+ selective
846
+ selfish
847
+ separate
848
+ serious
849
+ shaggy
850
+ shaky
851
+ shallow
852
+ sharp
853
+ shiny
854
+ shivering
855
+ shocking
856
+ short
857
+ shrill
858
+ shut
859
+ shy
860
+ sick
861
+ silent
862
+ silky
863
+ silly
864
+ simple
865
+ simplistic
866
+ sincere
867
+ six
868
+ skillful
869
+ skinny
870
+ sleepy
871
+ slim
872
+ slimy
873
+ slippery
874
+ sloppy
875
+ slow
876
+ small
877
+ smart
878
+ smelly
879
+ smiling
880
+ smoggy
881
+ smooth
882
+ sneaky
883
+ snobbish
884
+ snotty
885
+ soft
886
+ soggy
887
+ solid
888
+ somber
889
+ sophisticated
890
+ sordid
891
+ sore
892
+ sour
893
+ sparkling
894
+ special
895
+ spectacular
896
+ spicy
897
+ spiffy
898
+ spiky
899
+ spiritual
900
+ spiteful
901
+ splendid
902
+ spooky
903
+ spotless
904
+ spotted
905
+ spotty
906
+ spurious
907
+ squalid
908
+ square
909
+ squealing
910
+ squeamish
911
+ staking
912
+ stale
913
+ standing
914
+ statuesque
915
+ steadfast
916
+ steady
917
+ steep
918
+ stereotyped
919
+ sticky
920
+ stiff
921
+ stimulating
922
+ stingy
923
+ stormy
924
+ straight
925
+ strange
926
+ striped
927
+ strong
928
+ stupendous
929
+ stupid
930
+ sturdy
931
+ subdued
932
+ subsequent
933
+ substantial
934
+ successful
935
+ succinct
936
+ sudden
937
+ sulky
938
+ super
939
+ superb
940
+ superficial
941
+ supreme
942
+ swanky
943
+ sweet
944
+ sweltering
945
+ swift
946
+ symptomatic
947
+ synonymous
948
+ taboo
949
+ tacit
950
+ tacky
951
+ talented
952
+ tall
953
+ tame
954
+ tan
955
+ tangible
956
+ tangy
957
+ tart
958
+ tasteful
959
+ tasteless
960
+ tasty
961
+ tawdry
962
+ tearful
963
+ tedious
964
+ teeny
965
+ teeny-tiny
966
+ telling
967
+ temporary
968
+ ten
969
+ tender
970
+ tense
971
+ tenuous
972
+ terrible
973
+ terrific
974
+ tested
975
+ testy
976
+ thankful
977
+ therapeutic
978
+ thick
979
+ thin
980
+ thinkable
981
+ third
982
+ thirsty
983
+ thoughtful
984
+ thoughtless
985
+ threatening
986
+ three
987
+ thundering
988
+ tidy
989
+ tight
990
+ tightfisted
991
+ tiny
992
+ tired
993
+ tiresome
994
+ toothsome
995
+ torpid
996
+ tough
997
+ towering
998
+ tranquil
999
+ trashy
1000
+ tremendous
1001
+ tricky
1002
+ trite
1003
+ troubled
1004
+ truculent
1005
+ true
1006
+ truthful
1007
+ two
1008
+ typical
1009
+ ubiquitous
1010
+ ugliest
1011
+ ugly
1012
+ ultra
1013
+ unable
1014
+ unaccountable
1015
+ unadvised
1016
+ unarmed
1017
+ unbecoming
1018
+ unbiased
1019
+ uncovered
1020
+ understood
1021
+ undesirable
1022
+ unequal
1023
+ unequaled
1024
+ uneven
1025
+ unhealthy
1026
+ uninterested
1027
+ unique
1028
+ unkempt
1029
+ unknown
1030
+ unnatural
1031
+ unruly
1032
+ unsightly
1033
+ unsuitable
1034
+ untidy
1035
+ unused
1036
+ unusual
1037
+ unwieldy
1038
+ unwritten
1039
+ upbeat
1040
+ uppity
1041
+ upset
1042
+ uptight
1043
+ used
1044
+ useful
1045
+ useless
1046
+ utopian
1047
+ utter
1048
+ uttermost
1049
+ vacuous
1050
+ vagabond
1051
+ vague
1052
+ valuable
1053
+ various
1054
+ vast
1055
+ vengeful
1056
+ venomous
1057
+ verdant
1058
+ versed
1059
+ victorious
1060
+ vigorous
1061
+ violent
1062
+ violet
1063
+ vivacious
1064
+ voiceless
1065
+ volatile
1066
+ voracious
1067
+ vulgar
1068
+ wacky
1069
+ waggish
1070
+ waiting
1071
+ wakeful
1072
+ wandering
1073
+ wanting
1074
+ warlike
1075
+ warm
1076
+ wary
1077
+ wasteful
1078
+ watery
1079
+ weak
1080
+ wealthy
1081
+ weary
1082
+ well-groomed
1083
+ well-made
1084
+ well-off
1085
+ well-to-do
1086
+ wet
1087
+ whimsical
1088
+ whispering
1089
+ white
1090
+ whole
1091
+ wholesale
1092
+ wicked
1093
+ wide
1094
+ wide-eyed
1095
+ wiggly
1096
+ wild
1097
+ willing
1098
+ windy
1099
+ wiry
1100
+ wise
1101
+ wistful
1102
+ witty
1103
+ woebegone
1104
+ womanly
1105
+ wonderful
1106
+ wooden
1107
+ woozy
1108
+ workable
1109
+ worried
1110
+ worthless
1111
+ wrathful
1112
+ wretched
1113
+ wrong
1114
+ wry
1115
+ yellow
1116
+ yielding
1117
+ young
1118
+ youthful
1119
+ yummy
1120
+ zany
1121
+ zealous
1122
+ zesty
1123
+ zippy
1124
+ zonked