mnemorandom 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (358) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +5 -0
  3. data/CODE_OF_CONDUCT.md +70 -0
  4. data/Gemfile +12 -0
  5. data/Gemfile.lock +49 -0
  6. data/LICENSE.txt +21 -0
  7. data/README.md +43 -0
  8. data/Rakefile +12 -0
  9. data/bin/console +15 -0
  10. data/bin/setup +8 -0
  11. data/lib/mnemorandom/version.rb +5 -0
  12. data/lib/mnemorandom.rb +30 -0
  13. data/vendor/git/corpora.git/.editorconfig +16 -0
  14. data/vendor/git/corpora.git/.github/workflows/test.yml +39 -0
  15. data/vendor/git/corpora.git/.gitignore +4 -0
  16. data/vendor/git/corpora.git/.travis.yml +17 -0
  17. data/vendor/git/corpora.git/Gruntfile.js +23 -0
  18. data/vendor/git/corpora.git/README.md +46 -0
  19. data/vendor/git/corpora.git/data/animals/ant_anatomy.json +107 -0
  20. data/vendor/git/corpora.git/data/animals/birds_antarctica.json +106 -0
  21. data/vendor/git/corpora.git/data/animals/birds_north_america.json +1448 -0
  22. data/vendor/git/corpora.git/data/animals/cats.json +100 -0
  23. data/vendor/git/corpora.git/data/animals/cephalopod_anatomy.json +281 -0
  24. data/vendor/git/corpora.git/data/animals/collateral_adjectives.json +1103 -0
  25. data/vendor/git/corpora.git/data/animals/common.json +139 -0
  26. data/vendor/git/corpora.git/data/animals/dinosaurs.json +1455 -0
  27. data/vendor/git/corpora.git/data/animals/dog_names.json +1005 -0
  28. data/vendor/git/corpora.git/data/animals/dogs-en-de.json +1814 -0
  29. data/vendor/git/corpora.git/data/animals/dogs.json +459 -0
  30. data/vendor/git/corpora.git/data/animals/donkeys.json +174 -0
  31. data/vendor/git/corpora.git/data/animals/horses.json +349 -0
  32. data/vendor/git/corpora.git/data/animals/ponies.json +175 -0
  33. data/vendor/git/corpora.git/data/animals/rabbits.json +55 -0
  34. data/vendor/git/corpora.git/data/archetypes/artifact.json +53 -0
  35. data/vendor/git/corpora.git/data/archetypes/character.json +257 -0
  36. data/vendor/git/corpora.git/data/archetypes/event.json +107 -0
  37. data/vendor/git/corpora.git/data/archetypes/setting.json +179 -0
  38. data/vendor/git/corpora.git/data/architecture/passages.json +35 -0
  39. data/vendor/git/corpora.git/data/architecture/rooms.json +113 -0
  40. data/vendor/git/corpora.git/data/art/isms.json +146 -0
  41. data/vendor/git/corpora.git/data/books/academic_subjects.json +261 -0
  42. data/vendor/git/corpora.git/data/books/bestsellers.json +258 -0
  43. data/vendor/git/corpora.git/data/colors/crayola.json +485 -0
  44. data/vendor/git/corpora.git/data/colors/dulux.json +42242 -0
  45. data/vendor/git/corpora.git/data/colors/fictional.json +47 -0
  46. data/vendor/git/corpora.git/data/colors/google_material_colors.json +294 -0
  47. data/vendor/git/corpora.git/data/colors/paints.json +4005 -0
  48. data/vendor/git/corpora.git/data/colors/palettes.json +1403 -0
  49. data/vendor/git/corpora.git/data/colors/web_colors.json +565 -0
  50. data/vendor/git/corpora.git/data/colors/wikipedia.json +4070 -0
  51. data/vendor/git/corpora.git/data/colors/xkcd.json +4749 -0
  52. data/vendor/git/corpora.git/data/corporations/cars.json +71 -0
  53. data/vendor/git/corpora.git/data/corporations/charities.json +105 -0
  54. data/vendor/git/corpora.git/data/corporations/djia.json +125 -0
  55. data/vendor/git/corpora.git/data/corporations/fortune500.json +506 -0
  56. data/vendor/git/corpora.git/data/corporations/industries.json +155 -0
  57. data/vendor/git/corpora.git/data/corporations/nasdaq.json +409 -0
  58. data/vendor/git/corpora.git/data/corporations/newspapers.json +107 -0
  59. data/vendor/git/corpora.git/data/divination/hexagrams.json +261 -0
  60. data/vendor/git/corpora.git/data/divination/tarot_interpretations.json +2593 -0
  61. data/vendor/git/corpora.git/data/divination/zodiac.json +274 -0
  62. data/vendor/git/corpora.git/data/film-tv/Westworld_quotes.json +326 -0
  63. data/vendor/git/corpora.git/data/film-tv/extended-netflix-categories.json +605 -0
  64. data/vendor/git/corpora.git/data/film-tv/game-of-thrones-houses.json +277 -0
  65. data/vendor/git/corpora.git/data/film-tv/iab_categories.json +1571 -0
  66. data/vendor/git/corpora.git/data/film-tv/look-around-you-shakespeare.json +28 -0
  67. data/vendor/git/corpora.git/data/film-tv/netflix-categories.json +216 -0
  68. data/vendor/git/corpora.git/data/film-tv/popular-movies.json +263 -0
  69. data/vendor/git/corpora.git/data/film-tv/tv_shows.json +1005 -0
  70. data/vendor/git/corpora.git/data/foods/apple_cultivars.json +1005 -0
  71. data/vendor/git/corpora.git/data/foods/bad_beers.json +104 -0
  72. data/vendor/git/corpora.git/data/foods/beer_categories.json +631 -0
  73. data/vendor/git/corpora.git/data/foods/beer_styles.json +144 -0
  74. data/vendor/git/corpora.git/data/foods/breads_and_pastries.json +62 -0
  75. data/vendor/git/corpora.git/data/foods/combine.json +96 -0
  76. data/vendor/git/corpora.git/data/foods/condiments.json +104 -0
  77. data/vendor/git/corpora.git/data/foods/curds.json +1969 -0
  78. data/vendor/git/corpora.git/data/foods/fruits.json +85 -0
  79. data/vendor/git/corpora.git/data/foods/herbs_n_spices.json +202 -0
  80. data/vendor/git/corpora.git/data/foods/hot_peppers.json +69 -0
  81. data/vendor/git/corpora.git/data/foods/iba_cocktails.json +82 -0
  82. data/vendor/git/corpora.git/data/foods/menuItems.json +1005 -0
  83. data/vendor/git/corpora.git/data/foods/pizzaToppings.json +30 -0
  84. data/vendor/git/corpora.git/data/foods/sandwiches.json +855 -0
  85. data/vendor/git/corpora.git/data/foods/sausages.json +208 -0
  86. data/vendor/git/corpora.git/data/foods/scotch_whiskey.json +82 -0
  87. data/vendor/git/corpora.git/data/foods/tea.json +533 -0
  88. data/vendor/git/corpora.git/data/foods/vegetable_cooking_times.json +310 -0
  89. data/vendor/git/corpora.git/data/foods/vegetables.json +125 -0
  90. data/vendor/git/corpora.git/data/foods/verbs.json +287 -0
  91. data/vendor/git/corpora.git/data/foods/wine_descriptions.json +108 -0
  92. data/vendor/git/corpora.git/data/games/League_of_legends_champion_names.json +150 -0
  93. data/vendor/git/corpora.git/data/games/bannedGames/argentina/bannedList.json +9 -0
  94. data/vendor/git/corpora.git/data/games/bannedGames/brazil/bannedList.json +53 -0
  95. data/vendor/git/corpora.git/data/games/bannedGames/china/bannedList.json +25 -0
  96. data/vendor/git/corpora.git/data/games/bannedGames/denmark/bannedList.json +9 -0
  97. data/vendor/git/corpora.git/data/games/bannedGames/germany/bannedList.json +457 -0
  98. data/vendor/git/corpora.git/data/games/bannedGames/saudi_arabia/bannedList.json +69 -0
  99. data/vendor/git/corpora.git/data/games/board_games.json +218 -0
  100. data/vendor/git/corpora.git/data/games/cluedo.json +65 -0
  101. data/vendor/git/corpora.git/data/games/dark_souls_iii_messages.json +367 -0
  102. data/vendor/git/corpora.git/data/games/jeopardy_questions.json +9005 -0
  103. data/vendor/git/corpora.git/data/games/pokemon.json +20684 -0
  104. data/vendor/git/corpora.git/data/games/rpg/rpg_designers.json +202 -0
  105. data/vendor/git/corpora.git/data/games/rpg/rpg_games.json +859 -0
  106. data/vendor/git/corpora.git/data/games/rpg/rpg_settings.json +103 -0
  107. data/vendor/git/corpora.git/data/games/scrabble.json +33 -0
  108. data/vendor/git/corpora.git/data/games/street_fighter_ii.json +73 -0
  109. data/vendor/git/corpora.git/data/games/trivial_pursuit.json +29 -0
  110. data/vendor/git/corpora.git/data/games/wrestling_moves.json +284 -0
  111. data/vendor/git/corpora.git/data/games/zelda.json +372 -0
  112. data/vendor/git/corpora.git/data/geography/anthropogenic_features.json +143 -0
  113. data/vendor/git/corpora.git/data/geography/canada_provinces_and_territories.json +16 -0
  114. data/vendor/git/corpora.git/data/geography/canadian_municipalities.json +606 -0
  115. data/vendor/git/corpora.git/data/geography/countries.json +203 -0
  116. data/vendor/git/corpora.git/data/geography/countries_with_capitals.json +202 -0
  117. data/vendor/git/corpora.git/data/geography/english_towns_cities.json +997 -0
  118. data/vendor/git/corpora.git/data/geography/environmental_hazards.json +76 -0
  119. data/vendor/git/corpora.git/data/geography/geographic_features.json +514 -0
  120. data/vendor/git/corpora.git/data/geography/japanese_prefectures.json +99 -0
  121. data/vendor/git/corpora.git/data/geography/london_underground_stations.json +1352 -0
  122. data/vendor/git/corpora.git/data/geography/nationalities.json +232 -0
  123. data/vendor/git/corpora.git/data/geography/norwegian_cities.json +370 -0
  124. data/vendor/git/corpora.git/data/geography/nyc_neighborhood_zips.json +395 -0
  125. data/vendor/git/corpora.git/data/geography/oceans.json +305 -0
  126. data/vendor/git/corpora.git/data/geography/rivers.json +1101 -0
  127. data/vendor/git/corpora.git/data/geography/sf_neighborhoods.json +455 -0
  128. data/vendor/git/corpora.git/data/geography/us_airport_codes.json +373 -0
  129. data/vendor/git/corpora.git/data/geography/us_cities.json +5006 -0
  130. data/vendor/git/corpora.git/data/geography/us_counties.json +2979 -0
  131. data/vendor/git/corpora.git/data/geography/us_metropolitan_areas.json +4488 -0
  132. data/vendor/git/corpora.git/data/geography/us_state_capitals.json +205 -0
  133. data/vendor/git/corpora.git/data/geography/venues.json +3656 -0
  134. data/vendor/git/corpora.git/data/geography/winds.json +117 -0
  135. data/vendor/git/corpora.git/data/governments/governmentForms.json +28 -0
  136. data/vendor/git/corpora.git/data/governments/mass-surveillance-project-names.json +215 -0
  137. data/vendor/git/corpora.git/data/governments/nsa_projects.json +213 -0
  138. data/vendor/git/corpora.git/data/governments/uk_political_parties.json +623 -0
  139. data/vendor/git/corpora.git/data/governments/us_federal_agencies.json +128 -0
  140. data/vendor/git/corpora.git/data/governments/us_mil_operations.json +3613 -0
  141. data/vendor/git/corpora.git/data/humans/2016_us_presidential_candidates.json +7329 -0
  142. data/vendor/git/corpora.git/data/humans/atus_activities.json +4617 -0
  143. data/vendor/git/corpora.git/data/humans/authors.json +506 -0
  144. data/vendor/git/corpora.git/data/humans/bodyParts.json +46 -0
  145. data/vendor/git/corpora.git/data/humans/britishActors.json +705 -0
  146. data/vendor/git/corpora.git/data/humans/celebrities.json +998 -0
  147. data/vendor/git/corpora.git/data/humans/descriptions.json +398 -0
  148. data/vendor/git/corpora.git/data/humans/englishHonorifics.json +226 -0
  149. data/vendor/git/corpora.git/data/humans/familyRelations.json +77 -0
  150. data/vendor/git/corpora.git/data/humans/famousDuos.json +194 -0
  151. data/vendor/git/corpora.git/data/humans/firstNames.json +400 -0
  152. data/vendor/git/corpora.git/data/humans/genders.json +82 -0
  153. data/vendor/git/corpora.git/data/humans/human_universals.json +374 -0
  154. data/vendor/git/corpora.git/data/humans/lastNames.json +205 -0
  155. data/vendor/git/corpora.git/data/humans/moods.json +771 -0
  156. data/vendor/git/corpora.git/data/humans/norwayFirstNamesBoys.json +822 -0
  157. data/vendor/git/corpora.git/data/humans/norwayFirstNamesGirls.json +929 -0
  158. data/vendor/git/corpora.git/data/humans/norwayLastNames.json +1003 -0
  159. data/vendor/git/corpora.git/data/humans/occupations.json +976 -0
  160. data/vendor/git/corpora.git/data/humans/prefixes.json +88 -0
  161. data/vendor/git/corpora.git/data/humans/richpeople.json +305 -0
  162. data/vendor/git/corpora.git/data/humans/scientists.json +333 -0
  163. data/vendor/git/corpora.git/data/humans/spanishFirstNames.json +460 -0
  164. data/vendor/git/corpora.git/data/humans/spanishLastNames.json +108 -0
  165. data/vendor/git/corpora.git/data/humans/spinalTapDrummers.json +93 -0
  166. data/vendor/git/corpora.git/data/humans/suffixes.json +50 -0
  167. data/vendor/git/corpora.git/data/humans/thirdPersonPronouns.json +9749 -0
  168. data/vendor/git/corpora.git/data/humans/tolkienCharacterNames.json +600 -0
  169. data/vendor/git/corpora.git/data/humans/us_presidents.json +2743 -0
  170. data/vendor/git/corpora.git/data/humans/wrestlers.json +99 -0
  171. data/vendor/git/corpora.git/data/instructions/burroughsinstructionset.json +216 -0
  172. data/vendor/git/corpora.git/data/instructions/laundry_care.json +149 -0
  173. data/vendor/git/corpora.git/data/materials/abridged-body-fluids.json +34 -0
  174. data/vendor/git/corpora.git/data/materials/building-materials.json +50 -0
  175. data/vendor/git/corpora.git/data/materials/carbon-allotropes.json +19 -0
  176. data/vendor/git/corpora.git/data/materials/decorative-stones.json +99 -0
  177. data/vendor/git/corpora.git/data/materials/fabrics.json +211 -0
  178. data/vendor/git/corpora.git/data/materials/fibers.json +33 -0
  179. data/vendor/git/corpora.git/data/materials/fictional-materials.json +170 -0
  180. data/vendor/git/corpora.git/data/materials/gemstones.json +357 -0
  181. data/vendor/git/corpora.git/data/materials/layperson-metals.json +23 -0
  182. data/vendor/git/corpora.git/data/materials/metals.json +97 -0
  183. data/vendor/git/corpora.git/data/materials/natural-materials.json +15 -0
  184. data/vendor/git/corpora.git/data/materials/packaging.json +32 -0
  185. data/vendor/git/corpora.git/data/materials/plastic-brands.json +9 -0
  186. data/vendor/git/corpora.git/data/materials/sculpture-materials.json +49 -0
  187. data/vendor/git/corpora.git/data/materials/technical-fabrics.json +16 -0
  188. data/vendor/git/corpora.git/data/mathematics/fibonnaciSequence.json +1492 -0
  189. data/vendor/git/corpora.git/data/mathematics/primes.json +1015 -0
  190. data/vendor/git/corpora.git/data/mathematics/primes_binary.json +1005 -0
  191. data/vendor/git/corpora.git/data/mathematics/trigonometry.json +24 -0
  192. data/vendor/git/corpora.git/data/medicine/cancer.json +1007 -0
  193. data/vendor/git/corpora.git/data/medicine/diagnoses.json +1006 -0
  194. data/vendor/git/corpora.git/data/medicine/diseases.json +1007 -0
  195. data/vendor/git/corpora.git/data/medicine/drugNameStems.json +470 -0
  196. data/vendor/git/corpora.git/data/medicine/drugs.json +1006 -0
  197. data/vendor/git/corpora.git/data/medicine/hospitals.json +963 -0
  198. data/vendor/git/corpora.git/data/medicine/infectious_diseases.json +122 -0
  199. data/vendor/git/corpora.git/data/medicine/symptoms.json +551 -0
  200. data/vendor/git/corpora.git/data/music/a_list_of_guitar_manufacturers.json +722 -0
  201. data/vendor/git/corpora.git/data/music/bands_that_have_opened_for_tool.json +37 -0
  202. data/vendor/git/corpora.git/data/music/female_classical_guitarists.json +260 -0
  203. data/vendor/git/corpora.git/data/music/genres.json +375 -0
  204. data/vendor/git/corpora.git/data/music/hamilton_musical_obcrecording_actors_characters.json +63 -0
  205. data/vendor/git/corpora.git/data/music/instruments.json +60 -0
  206. data/vendor/git/corpora.git/data/music/media-formats.json +62 -0
  207. data/vendor/git/corpora.git/data/music/mtv_day_one.json +1257 -0
  208. data/vendor/git/corpora.git/data/music/rock_hall_of_fame.json +891 -0
  209. data/vendor/git/corpora.git/data/music/xxl_freshman.json +17 -0
  210. data/vendor/git/corpora.git/data/mythology/egyptian_gods.json +279 -0
  211. data/vendor/git/corpora.git/data/mythology/greek_gods.json +36 -0
  212. data/vendor/git/corpora.git/data/mythology/greek_monsters.json +29 -0
  213. data/vendor/git/corpora.git/data/mythology/greek_myths_master.json +98 -0
  214. data/vendor/git/corpora.git/data/mythology/greek_titans.json +38 -0
  215. data/vendor/git/corpora.git/data/mythology/hebrew_god.json +69 -0
  216. data/vendor/git/corpora.git/data/mythology/lovecraft.json +100 -0
  217. data/vendor/git/corpora.git/data/mythology/monsters.json +91 -0
  218. data/vendor/git/corpora.git/data/mythology/norse_gods.json +75 -0
  219. data/vendor/git/corpora.git/data/mythology/roman_deities.json +30 -0
  220. data/vendor/git/corpora.git/data/objects/clothing.json +95 -0
  221. data/vendor/git/corpora.git/data/objects/corpora_winners.json +32 -0
  222. data/vendor/git/corpora.git/data/objects/objects.json +452 -0
  223. data/vendor/git/corpora.git/data/objects/premodern_weapons.json +55 -0
  224. data/vendor/git/corpora.git/data/plants/cannabis.json +426 -0
  225. data/vendor/git/corpora.git/data/plants/flowers.json +67 -0
  226. data/vendor/git/corpora.git/data/plants/plants.json +2526 -0
  227. data/vendor/git/corpora.git/data/psychology/personality_test.json +305 -0
  228. data/vendor/git/corpora.git/data/religion/christian_saints.json +6982 -0
  229. data/vendor/git/corpora.git/data/religion/fictional_religions.json +267 -0
  230. data/vendor/git/corpora.git/data/religion/parody_religions.json +20 -0
  231. data/vendor/git/corpora.git/data/religion/religions.json +880 -0
  232. data/vendor/git/corpora.git/data/science/elements.json +2835 -0
  233. data/vendor/git/corpora.git/data/science/hail_size.json +85 -0
  234. data/vendor/git/corpora.git/data/science/meteorology.json +659 -0
  235. data/vendor/git/corpora.git/data/science/minor_planets.json +1005 -0
  236. data/vendor/git/corpora.git/data/science/planets.json +241 -0
  237. data/vendor/git/corpora.git/data/science/pregnancy.json +220 -0
  238. data/vendor/git/corpora.git/data/science/toxic_chemicals.json +385 -0
  239. data/vendor/git/corpora.git/data/science/weather_conditions.json +269 -0
  240. data/vendor/git/corpora.git/data/societies_and_groups/animal_welfare.json +408 -0
  241. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/australia.json +24 -0
  242. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/canada.json +54 -0
  243. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/china.json +6 -0
  244. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/egypt.json +9 -0
  245. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/european_union.json +31 -0
  246. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/india.json +35 -0
  247. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/iran.json +7 -0
  248. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/israel.json +13 -0
  249. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/kazakhstan.json +11 -0
  250. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/russia.json +23 -0
  251. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/saudi_arabia.json +9 -0
  252. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/tunisia.json +3 -0
  253. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/turkey.json +15 -0
  254. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/ukraine.json +4 -0
  255. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/united_arab_emirates.json +31 -0
  256. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/united_kingdom.json +82 -0
  257. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/united_nations.json +37 -0
  258. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/united_states.json +73 -0
  259. data/vendor/git/corpora.git/data/societies_and_groups/fraternities/coeducational_fraternities.json +107 -0
  260. data/vendor/git/corpora.git/data/societies_and_groups/fraternities/defunct.json +107 -0
  261. data/vendor/git/corpora.git/data/societies_and_groups/fraternities/fraternities.json +884 -0
  262. data/vendor/git/corpora.git/data/societies_and_groups/fraternities/professional.json +574 -0
  263. data/vendor/git/corpora.git/data/societies_and_groups/fraternities/service.json +90 -0
  264. data/vendor/git/corpora.git/data/societies_and_groups/fraternities/sororities.json +674 -0
  265. data/vendor/git/corpora.git/data/societies_and_groups/semi_secret.json +146 -0
  266. data/vendor/git/corpora.git/data/sports/football/epl_teams.json +145 -0
  267. data/vendor/git/corpora.git/data/sports/football/laliga_teams.json +125 -0
  268. data/vendor/git/corpora.git/data/sports/football/serieA.json +104 -0
  269. data/vendor/git/corpora.git/data/sports/mlb_teams.json +245 -0
  270. data/vendor/git/corpora.git/data/sports/nba_mvps.json +254 -0
  271. data/vendor/git/corpora.git/data/sports/nba_teams.json +244 -0
  272. data/vendor/git/corpora.git/data/sports/nfl_teams.json +261 -0
  273. data/vendor/git/corpora.git/data/sports/nhl_teams.json +244 -0
  274. data/vendor/git/corpora.git/data/sports/olympics.json +572 -0
  275. data/vendor/git/corpora.git/data/sports/sports.json +972 -0
  276. data/vendor/git/corpora.git/data/technology/appliances.json +112 -0
  277. data/vendor/git/corpora.git/data/technology/computer_sciences.json +203 -0
  278. data/vendor/git/corpora.git/data/technology/fireworks.json +45 -0
  279. data/vendor/git/corpora.git/data/technology/guns_n_rifles.json +65 -0
  280. data/vendor/git/corpora.git/data/technology/knots.json +217 -0
  281. data/vendor/git/corpora.git/data/technology/lisp.json +70 -0
  282. data/vendor/git/corpora.git/data/technology/new_technologies.json +534 -0
  283. data/vendor/git/corpora.git/data/technology/photo_sharing_websites.json +42 -0
  284. data/vendor/git/corpora.git/data/technology/programming_languages.json +707 -0
  285. data/vendor/git/corpora.git/data/technology/programming_languages_popular.json +38 -0
  286. data/vendor/git/corpora.git/data/technology/social_networking_websites.json +217 -0
  287. data/vendor/git/corpora.git/data/technology/video_hosting_websites.json +98 -0
  288. data/vendor/git/corpora.git/data/transportation/commercial-aircraft.json +242 -0
  289. data/vendor/git/corpora.git/data/transportation/launchVehicleList.json +549 -0
  290. data/vendor/git/corpora.git/data/travel/lcc.json +378 -0
  291. data/vendor/git/corpora.git/data/words/adjs.json +965 -0
  292. data/vendor/git/corpora.git/data/words/adverbs.json +330 -0
  293. data/vendor/git/corpora.git/data/words/closed_pairs.json +203 -0
  294. data/vendor/git/corpora.git/data/words/common.json +986 -0
  295. data/vendor/git/corpora.git/data/words/compounds.json +13380 -0
  296. data/vendor/git/corpora.git/data/words/crash_blossoms.json +68 -0
  297. data/vendor/git/corpora.git/data/words/eggcorns.json +183 -0
  298. data/vendor/git/corpora.git/data/words/emoji/codePage437.json +261 -0
  299. data/vendor/git/corpora.git/data/words/emoji/cute_kaomoji.json +36 -0
  300. data/vendor/git/corpora.git/data/words/emoji/emoji.json +869 -0
  301. data/vendor/git/corpora.git/data/words/encouraging_words.json +53 -0
  302. data/vendor/git/corpora.git/data/words/ergative_verbs.json +286 -0
  303. data/vendor/git/corpora.git/data/words/expletives.json +615 -0
  304. data/vendor/git/corpora.git/data/words/harvard_sentences.json +728 -0
  305. data/vendor/git/corpora.git/data/words/infinitive_verbs.json +635 -0
  306. data/vendor/git/corpora.git/data/words/interjections.json +223 -0
  307. data/vendor/git/corpora.git/data/words/literature/infinitejest.json +155 -0
  308. data/vendor/git/corpora.git/data/words/literature/lovecraft_words.json +61 -0
  309. data/vendor/git/corpora.git/data/words/literature/mr_men_little_miss.json +94 -0
  310. data/vendor/git/corpora.git/data/words/literature/shakespeare_phrases.json +161 -0
  311. data/vendor/git/corpora.git/data/words/literature/shakespeare_sonnets.json +2929 -0
  312. data/vendor/git/corpora.git/data/words/literature/shakespeare_words.json +324 -0
  313. data/vendor/git/corpora.git/data/words/literature/technology_quotes.json +79 -0
  314. data/vendor/git/corpora.git/data/words/nouns.json +997 -0
  315. data/vendor/git/corpora.git/data/words/oprah_quotes.json +47 -0
  316. data/vendor/git/corpora.git/data/words/personal_nouns.json +9314 -0
  317. data/vendor/git/corpora.git/data/words/personal_pronouns.json +61 -0
  318. data/vendor/git/corpora.git/data/words/possessive_pronouns.json +43 -0
  319. data/vendor/git/corpora.git/data/words/prefix_root_suffix.json +3688 -0
  320. data/vendor/git/corpora.git/data/words/prepositions.json +135 -0
  321. data/vendor/git/corpora.git/data/words/proverbs.json +533 -0
  322. data/vendor/git/corpora.git/data/words/resume_action_words.json +142 -0
  323. data/vendor/git/corpora.git/data/words/rhymeless_words.json +125 -0
  324. data/vendor/git/corpora.git/data/words/spells.json +460 -0
  325. data/vendor/git/corpora.git/data/words/state_verbs.json +25 -0
  326. data/vendor/git/corpora.git/data/words/states_of_drunkenness.json +39 -0
  327. data/vendor/git/corpora.git/data/words/stopwords/ar.json +169 -0
  328. data/vendor/git/corpora.git/data/words/stopwords/bg.json +265 -0
  329. data/vendor/git/corpora.git/data/words/stopwords/cs.json +412 -0
  330. data/vendor/git/corpora.git/data/words/stopwords/da.json +70 -0
  331. data/vendor/git/corpora.git/data/words/stopwords/de.json +599 -0
  332. data/vendor/git/corpora.git/data/words/stopwords/en.json +862 -0
  333. data/vendor/git/corpora.git/data/words/stopwords/es.json +450 -0
  334. data/vendor/git/corpora.git/data/words/stopwords/fi.json +754 -0
  335. data/vendor/git/corpora.git/data/words/stopwords/fr.json +501 -0
  336. data/vendor/git/corpora.git/data/words/stopwords/gr.json +159 -0
  337. data/vendor/git/corpora.git/data/words/stopwords/it.json +439 -0
  338. data/vendor/git/corpora.git/data/words/stopwords/jp.json +50 -0
  339. data/vendor/git/corpora.git/data/words/stopwords/lv.json +171 -0
  340. data/vendor/git/corpora.git/data/words/stopwords/nl.json +275 -0
  341. data/vendor/git/corpora.git/data/words/stopwords/no.json +125 -0
  342. data/vendor/git/corpora.git/data/words/stopwords/pl.json +281 -0
  343. data/vendor/git/corpora.git/data/words/stopwords/pt.json +449 -0
  344. data/vendor/git/corpora.git/data/words/stopwords/ru.json +428 -0
  345. data/vendor/git/corpora.git/data/words/stopwords/sk.json +185 -0
  346. data/vendor/git/corpora.git/data/words/stopwords/sv.json +393 -0
  347. data/vendor/git/corpora.git/data/words/stopwords/tr.json +236 -0
  348. data/vendor/git/corpora.git/data/words/strange_words.json +65 -0
  349. data/vendor/git/corpora.git/data/words/ultraconserved.json +1673 -0
  350. data/vendor/git/corpora.git/data/words/units_of_time.json +32 -0
  351. data/vendor/git/corpora.git/data/words/us_president_quotes.json +202 -0
  352. data/vendor/git/corpora.git/data/words/verbs.json +2537 -0
  353. data/vendor/git/corpora.git/data/words/verbs_with_conjugations.json +13313 -0
  354. data/vendor/git/corpora.git/data/words/word_clues/clues_five.json +10296 -0
  355. data/vendor/git/corpora.git/data/words/word_clues/clues_four.json +6329 -0
  356. data/vendor/git/corpora.git/data/words/word_clues/clues_six.json +10909 -0
  357. data/vendor/git/corpora.git/package.json +23 -0
  358. metadata +403 -0
@@ -0,0 +1,135 @@
1
+ {
2
+ "description": "A list of English prepositions, sourced from Wikipedia.",
3
+ "prepositions": [
4
+ "aboard",
5
+ "about",
6
+ "above",
7
+ "absent",
8
+ "across",
9
+ "after",
10
+ "against",
11
+ "along",
12
+ "alongside",
13
+ "amid",
14
+ "amidst",
15
+ "among",
16
+ "amongst",
17
+ "around",
18
+ "as",
19
+ "astride",
20
+ "at",
21
+ "atop",
22
+ "before",
23
+ "afore",
24
+ "behind",
25
+ "below",
26
+ "beneath",
27
+ "beside",
28
+ "besides",
29
+ "between",
30
+ "beyond",
31
+ "by",
32
+ "circa",
33
+ "despite",
34
+ "down",
35
+ "during",
36
+ "except",
37
+ "for",
38
+ "from",
39
+ "in",
40
+ "inside",
41
+ "into",
42
+ "less",
43
+ "like",
44
+ "minus",
45
+ "near",
46
+ "nearer",
47
+ "nearest",
48
+ "notwithstanding",
49
+ "of",
50
+ "off",
51
+ "on",
52
+ "onto",
53
+ "opposite",
54
+ "outside",
55
+ "over",
56
+ "past",
57
+ "per",
58
+ "save",
59
+ "since",
60
+ "through",
61
+ "throughout",
62
+ "to",
63
+ "toward",
64
+ "towards",
65
+ "under",
66
+ "underneath",
67
+ "until",
68
+ "up",
69
+ "upon",
70
+ "upside",
71
+ "versus",
72
+ "via",
73
+ "with",
74
+ "within",
75
+ "without",
76
+ "worth",
77
+ "according to",
78
+ "adjacent to",
79
+ "ahead of",
80
+ "apart from",
81
+ "as of",
82
+ "as per",
83
+ "as regards",
84
+ "aside from",
85
+ "astern of",
86
+ "back to",
87
+ "because of",
88
+ "close to",
89
+ "due to",
90
+ "except for",
91
+ "far from",
92
+ "inside of",
93
+ "instead of",
94
+ "left of",
95
+ "near to",
96
+ "next to",
97
+ "opposite of",
98
+ "opposite to",
99
+ "out from",
100
+ "out of",
101
+ "outside of",
102
+ "owing to",
103
+ "prior to",
104
+ "pursuant to",
105
+ "rather than",
106
+ "regardless of",
107
+ "right of",
108
+ "subsequent to",
109
+ "such as",
110
+ "thanks to",
111
+ "up to",
112
+ "as far as",
113
+ "as opposed to",
114
+ "as soon as",
115
+ "as well as",
116
+ "at the behest of",
117
+ "by means of",
118
+ "by virtue of",
119
+ "for the sake of",
120
+ "in accordance with",
121
+ "in addition to",
122
+ "in case of",
123
+ "in front of",
124
+ "in lieu of",
125
+ "in place of",
126
+ "in point of",
127
+ "in spite of",
128
+ "on account of",
129
+ "on behalf of",
130
+ "on top of",
131
+ "with regard to",
132
+ "with respect to",
133
+ "with a view to"
134
+ ]
135
+ }
@@ -0,0 +1,533 @@
1
+ {
2
+ "description": "A list of proverbs sourced from http://tww.id.au/proverbs/proverbs.html",
3
+ "proverbs": [
4
+ {
5
+ "Friendship": [
6
+ "A friend's frown is better than a fool's smile.",
7
+ "A friend in need is a friend indeed.",
8
+ "A friend is easier lost than found.",
9
+ "A friend to everybody is a friend to nobody.",
10
+ "A problem shared is a problem halved.",
11
+ "A true friend is someone who reaches for your hand, but touches your heart.",
12
+ "False friends are worse than open enemies.",
13
+ "Flattery is all right so long as you don't inhale.",
14
+ "Give credit where credit is due.",
15
+ "Grief divided is made lighter.",
16
+ "Memory is the treasure of the mind.",
17
+ "Nothing dries sooner than a tear.",
18
+ "Old friends and old wine are best.",
19
+ "The best of friends must part.",
20
+ "The best things are not bought and sold.",
21
+ "There is no better looking-glass than an old friend.",
22
+ "To err is human (To forgive divine).",
23
+ "Two cannot fall out if one does not choose."
24
+ ]
25
+ },
26
+ {
27
+ "Love": [
28
+ "A loveless life is a living death.",
29
+ "Absence makes the heart grow fonder.",
30
+ "All's fair in love and war.",
31
+ "Beauty is in the eye of the beholder.",
32
+ "Before you meet the handsome prince you have to kiss a lot of toads.",
33
+ "Better to have loved and lost, than to have never loved at all.",
34
+ "Cold hands, warm heart.",
35
+ "Distance makes the heart grow fonder.",
36
+ "Faint heart never won fair lady.",
37
+ "First impressions are the most lasting.",
38
+ "Hatred is as blind as love.",
39
+ "Love and a cough cannot be hid.",
40
+ "Love does much but money does all.",
41
+ "Love levels all inequalities.",
42
+ "Love makes a good eye squint.",
43
+ "Love sees no faults.",
44
+ "Love sought is good, but given unsought is better.",
45
+ "Love to live and live to love.",
46
+ "Love with life is heaven; and life unloving, hell.",
47
+ "Man is the head but woman turns it.",
48
+ "Marry in haste, repent at leisure.",
49
+ "The course of love never did run smooth.",
50
+ "The Lord loveth a cheerful liar.",
51
+ "There is a thin line between love and hate.",
52
+ "To eat one's heart out.",
53
+ "True beauty lies within.",
54
+ "You can't live on bread alone."
55
+ ]
56
+ },
57
+ {
58
+ "Relationships": [
59
+ "A good friend is one's nearest relation.",
60
+ "A man is known by the company he keeps.",
61
+ "A man of straw needs a woman of gold.",
62
+ "A wink is as good as a nod, to a blind man.",
63
+ "An injury is forgiven better than an injury revenged.",
64
+ "Anger and hate hinder good counsel.",
65
+ "Appearances are deceptive.",
66
+ "At a round table there's no dispute about the place.",
67
+ "Attack is the best form of defense.",
68
+ "Be slow in choosing, but slower in changing.",
69
+ "Behind every great man stands a strong woman.",
70
+ "Blood is thicker than water.",
71
+ "Cheerfulness smooths the road of life.",
72
+ "Confess and be hanged.",
73
+ "Conscience makes cowards of us all.",
74
+ "Don't blow your own trumpet.",
75
+ "Do as you would be done by.",
76
+ "Do unto others as you would have them do to you.",
77
+ "Grow angry slowly; there's plenty of time.",
78
+ "He bears misery best that hides it most.",
79
+ "He that hurts another, hurts himself.",
80
+ "He who wronged you will hate you.",
81
+ "Heavy givers are light complainers.",
82
+ "I am rubber and you are glue. Your words bounce off me and stick to you.",
83
+ "If you lose your temper, don't look for it.",
84
+ "It's not over till it's over.",
85
+ "Joy shared is double joy; grief shared is (only) half grief.",
86
+ "Laugh and the world laughs with you. Cry and you cry alone.",
87
+ "Never let the sun set on angry heart.",
88
+ "Never let the sun go down on your anger.",
89
+ "Never let the sun set on thy wrath.",
90
+ "Never quarrel with one's bread and butter.",
91
+ "No man or woman is worth your tears, and the one who is, won't make you cry.",
92
+ "Open confession is good for the soul.",
93
+ "Out of sight, out of mind.",
94
+ "Patience is a virtue.",
95
+ "Persuasion is better than force.",
96
+ "Spare the rod and spoil the child.",
97
+ "Temper is so good a thing that we should never lose it.",
98
+ "To the world you may be one person, but to one person, you may be the world.",
99
+ "Wondrous is the strength of cheerfulness.",
100
+ "You made your bed, now you must lie in it."
101
+ ]
102
+ },
103
+ {
104
+ "Life": [
105
+ "A bully is always a coward.",
106
+ "A handsome shoe often pinches the foot.",
107
+ "A good thing is all the sweeter when won with pain.",
108
+ "A man too careful of danger lives in continual torment.",
109
+ "A miss is as good as a mile.",
110
+ "Adversity flatters no man.",
111
+ "Adversity and loss make a man wise.",
112
+ "All promises are either broken or kept.",
113
+ "All things come to those that wait.",
114
+ "An eye for an eye and a tooth for a tooth.",
115
+ "An open door may tempt a saint.",
116
+ "As one door closes, another always opens.",
117
+ "As you go through life, make this your goal, watch the doughnut and not the hole.",
118
+ "Brevity is the soul of wit.",
119
+ "Cut your coat according to the cloth.",
120
+ "Discretion is the better part of valour.",
121
+ "Do right and fear no man.",
122
+ "Easy come, easy go.",
123
+ "Experience is the hardest teacher. She gives the test first and the lesson afterwards.",
124
+ "Familiarity breeds contempt.",
125
+ "Fortune favours the brave.",
126
+ "He who laughs last, laughs longest.",
127
+ "Home is where the heart is.",
128
+ "Hope for the best and prepare for the worst.",
129
+ "If wishes were horses, beggars would ride.",
130
+ "In the country of the blind, the one-eyed man is king.",
131
+ "It never rains but it pours.",
132
+ "Leave tomorrow till tomorrow.",
133
+ "Life begins at forty.",
134
+ "Lifes trials may be hard to bear, but patience can outlive them.",
135
+ "Live and learn.",
136
+ "Manners maketh the man.",
137
+ "No man is worse for knowing the worst of himself.",
138
+ "Only the good die young.",
139
+ "Procrastination is the thief of time.",
140
+ "The best things in life are free.",
141
+ "The family that prays together, stays together.",
142
+ "The longer you live the more you see.",
143
+ "The meek shall inherit the earth.",
144
+ "The receiver is as bad as the thief.",
145
+ "To wait and be patient soothes many a pang.",
146
+ "Up and down like a fiddler's elbow.",
147
+ "Useless as a screen door on a submarine.",
148
+ "We cannot erase the sad records from our past.",
149
+ "What the eye doesn't see, the heart doesn't grieve over.",
150
+ "While there's life there's hope."
151
+ ]
152
+ },
153
+ {
154
+ "Health & Food": [
155
+ "After dinner rest a while, after supper walk a mile.",
156
+ "An apple a day keeps the doctor away.",
157
+ "A drowning man will clutch at a straw.",
158
+ "An onion a day keeps everyone away.",
159
+ "Another pot ! Try the teapot.",
160
+ "As fit as a fiddle.",
161
+ "As hard as nails.",
162
+ "As sick as a dog.",
163
+ "As you go through life, make this your goal, watch the doughnut and not the hole.",
164
+ "Be not a baker if your head is made of butter.",
165
+ "Beauty is but skin deep.",
166
+ "Better late thrive than never do well.",
167
+ "Better to be poor and healthy rather than rich and sick.",
168
+ "Better to wear out than rust out.",
169
+ "Bread never falls but on its buttered side.",
170
+ "Cleanliness is next to Godliness.",
171
+ "Content is health to the sick and riches to the poor.",
172
+ "Don't bite the hand that feeds you.",
173
+ "Drink like a fish, water only.",
174
+ "Early to bed, early to rise, makes you healthy, wealthy & wise.",
175
+ "Fair words butter no cabbage.",
176
+ "Good wine ruins the purse, and bad wine ruins the stomach.",
177
+ "Greediness burst the bag.",
178
+ "Grumbling makes the loaf no larger.",
179
+ "Half a loaf is better than none.",
180
+ "He who drinks a little too much drinks much too much.",
181
+ "He who rises late must trot all day.",
182
+ "His eyes are bigger than his belly.",
183
+ "Hunger is the best sauce.",
184
+ "It is no use crying over spilt milk.",
185
+ "Old friends and old wine are best.",
186
+ "One man's meat is another man's poison.",
187
+ "Ready money is ready medicine.",
188
+ "Sound as a bell.",
189
+ "The nearer the bone the sweeter the meat.",
190
+ "The proof of the pudding is in the eating.",
191
+ "There's many a slip, twixt cup and the lip.",
192
+ "To add insult to injury.",
193
+ "To look as if butter will not melt in his mouth.",
194
+ "Too many cooks spoil the broth.",
195
+ "What can't be cured must be endured.",
196
+ "What you eat today walks and talks tomorrow.",
197
+ "You are what you eat.",
198
+ "You can't have your cake and eat it too.",
199
+ "You can eat an elephant if you do it one mouthful at a time.",
200
+ "You can't unscramble a scrambled egg.",
201
+ "Wondrous is the strength of cheerfulness."
202
+ ]
203
+ },
204
+ {
205
+ "Conversation": [
206
+ "A fool uttereth all his mind.",
207
+ "A bad excuse is better then none.",
208
+ "Actions speak louder than words.",
209
+ "Angry words fan the fire like wind.",
210
+ "Bad news travels fast.",
211
+ "Call a spade a spade.",
212
+ "Do as I say not as I do.",
213
+ "Don't advertise: Tell it to a gossip.",
214
+ "Don't go off half-cocked.",
215
+ "Few words and many deeds.",
216
+ "For donkeys' ages.",
217
+ "Gossips are frogs, they drink and talk.",
218
+ "He who sings drives away sorrow.",
219
+ "If you don't say it you will not have to unsay it.",
220
+ "It takes two to have an argument.",
221
+ "Keep your mouth shut and your eyes open.",
222
+ "Listen to the pot calling the kettle black.",
223
+ "Many a true word spoken in jest.",
224
+ "No news is good news.",
225
+ "Nothing is ill said if it is not ill taken.",
226
+ "One picture is worth a thousand words.",
227
+ "Say what you mean and mean what you say.",
228
+ "Self praise is no recomendation.",
229
+ "Silence is an excellent remedy against slander.",
230
+ "Silence is golden.",
231
+ "Silence is less injurious than a bad reply.",
232
+ "Since before cocky was an egg.",
233
+ "Speak clearly, if you speak at all.",
234
+ "Sticks and stones may break my bones but words will never hurt me.",
235
+ "Stop beating around the bush.",
236
+ "Take your wife's first advice.",
237
+ "Talking comes by nature, silence by wisdom."
238
+ ]
239
+ },
240
+ {
241
+ "Wisdom": [
242
+ "A change is as good as a rest.",
243
+ "A stitch in time saves nine.",
244
+ "A throne is only a bench covered in purple velvet.",
245
+ "A wise man shall hold his tongue till he sees his opportunity.",
246
+ "Accidents will happen.",
247
+ "All's well that ends well.",
248
+ "Attack is the best means of defence.",
249
+ "Charity begins at home.",
250
+ "Different strokes for different folks.",
251
+ "Do not in an instant what an age cannot recompense.",
252
+ "Don't knock on death's door, ring the doorbell and run.",
253
+ "Don't try to teach your grand-mother to suck eggs.",
254
+ "Empty vessels make the most sound.",
255
+ "Empty barrels make the most noise.",
256
+ "Four eyes are better than two.",
257
+ "He who fights and runs away, lives to fight another day.",
258
+ "Innocent as a new born babe.",
259
+ "It's an ill wind that blows no-one some good.",
260
+ "It is better to stay silent and be thought a fool, than to open one's mouth and remove all doubt.",
261
+ "Necessity is the mother of invention.",
262
+ "No one can be caught in places he does not visit.",
263
+ "No wise man ever wishes to be younger.",
264
+ "Not in a month of Sundays.",
265
+ "One mans junk is another man's treasure.",
266
+ "Out of the frying pan into the fire.",
267
+ "Show a clean pair of heels.",
268
+ "Still waters run deep.",
269
+ "The darkest hour is before the dawn.",
270
+ "The wise shall understand.",
271
+ "Those who don't learn from history are doomed to repeat it.",
272
+ "Tomorrow is a new day.",
273
+ "Two heads are better than one.",
274
+ "You can't tell a book by its cover.",
275
+ "Where observation is concerned, chance favours only the prepared mind.",
276
+ "Where there's smoke there's fire.",
277
+ "Wisdom is better than strength.",
278
+ "Wisdom is neither inheritance nor a legacy.",
279
+ "Wisdom is the wealth of the wise.",
280
+ "Wise it is to comprehend the whole.",
281
+ "You can't put an old head on young shoulders.",
282
+ "You never know what you can do till you try."
283
+ ]
284
+ },
285
+ {
286
+ "Work": [
287
+ "A bad workman blames his tools.",
288
+ "A good reputation is a fair estate.",
289
+ "All work and no play makes Jack a dull boy.",
290
+ "An idle man is the devil's playfellow.",
291
+ "Diligence is the mother of good luck.",
292
+ "Don't try kicking against the wind.",
293
+ "Everybody must row with the oars he has.",
294
+ "Hard work never did anyone any harm.",
295
+ "If a job is worth doing it is worth doing well.",
296
+ "If at first you don't succeed, try, try again.",
297
+ "If you can't help, don't hinder.",
298
+ "If you see something you like, take it and make it better.",
299
+ "It's all in a days work.",
300
+ "Laziness travels so slowly that poverty soon overtakes it.",
301
+ "Least talk most work.",
302
+ "Many hands make light work.",
303
+ "More haste less speed.",
304
+ "Needs must when the devil drives.",
305
+ "Never put off 'til tomorrow what you can do today.",
306
+ "No life can be dreary when work is a delight.",
307
+ "Not to break is better than to mend.",
308
+ "The devil finds work for idle hands.",
309
+ "The harder you work, the luckier you are.",
310
+ "The hardest work is to do nothing.",
311
+ "Work as if everything depends on me, but pray as if everything depends on God."
312
+ ]
313
+ },
314
+ {
315
+ "Animal related": [
316
+ "A bird in the hand is worth two in the bush.",
317
+ "A bird makes his nest little by little.",
318
+ "A cat has nine lives.",
319
+ "All cats are grey in the dark.",
320
+ "An elephant never forgets.",
321
+ "An old fox need learn no craft.",
322
+ "Birds of a feather flock together.",
323
+ "Curiosity killed the cat; Satisfaction brought it back.",
324
+ "Curses, like chickens come home to roost.",
325
+ "Don't count your chickens before they hatch.",
326
+ "Every dog has its day.",
327
+ "His bark is louder than his bite.",
328
+ "If you lie down with dogs, you'll get up with fleas.",
329
+ "It's an ill bird that fouls its own nest.",
330
+ "It's an old dog for a hard road.",
331
+ "It's no use closing the stable door, after the horse has bolted.",
332
+ "Kill two birds with the one stone.",
333
+ "Let sleeping dogs lie.",
334
+ "Like a fish out of water.",
335
+ "Never look a gift horse in the mouth.",
336
+ "No sense closing the barn door after the horse has bolted.",
337
+ "Nothing falls into the mouth of a sleeping fox.",
338
+ "Putting the cart before the horse.",
339
+ "Sauce for the goose is sauce for the gander.",
340
+ "The early bird catches the worm.",
341
+ "The leopard does not change his spots.",
342
+ "The sleepy fox catches no chickens.",
343
+ "There's no use in flogging a dead horse.",
344
+ "To scare a bird is not the way to catch it.",
345
+ "What do you expect from a pig, but a grunt?",
346
+ "When a fox hears a rabbit screaming it comes running, but not to help.",
347
+ "While the cats away the mice play.",
348
+ "You can lead a horse to water, but you can't make him drink.",
349
+ "You can't make a silk purse out of a sow's ear."
350
+ ]
351
+ },
352
+ {
353
+ "Rural": [
354
+ "A chain is no stronger than its weakest link.",
355
+ "A rolling stone gathers no moss.",
356
+ "After the storm comes the calm.",
357
+ "All aren't hunters that blow the horn.",
358
+ "As green as grass.",
359
+ "As is the gardener so is the garden.",
360
+ "As you sow, so shall you reap.",
361
+ "Best to bend it while it's a twig.",
362
+ "Better to go back than go wrong.",
363
+ "By hook or by crook.",
364
+ "Deeds are fruits, words are but leaves.",
365
+ "Distance lends enhancement to the view.",
366
+ "Don't count your chickens before they are hatched.",
367
+ "Don't cross your bridges until you come to them.",
368
+ "Empty bags cannot stand upright.",
369
+ "Every cloud has a silver lining.",
370
+ "Every path has its puddle.",
371
+ "Fresh as a daisy.",
372
+ "Good company on the road is the shortest cut.",
373
+ "It is better to be green and growing than ripe and rotten.",
374
+ "Leave no stone unturned.",
375
+ "Like looking for a needle in a haystack.",
376
+ "Make hay while the sun shines.",
377
+ "Milk the cow but don't pull off the udder.",
378
+ "Never cackle unless you lay.",
379
+ "Oaks may fall when reeds take the storm.",
380
+ "Shake the hand before you plough the field.",
381
+ "Strike while the iron's hot.",
382
+ "The beaten path is safest.",
383
+ "The best ground bears weeds as well as flowers.",
384
+ "The grass is always greener on the other side of the fence.",
385
+ "The longest journey begins with the first step.",
386
+ "The longest way round is the sweetest way home.",
387
+ "The more you stir, the more it stinks.",
388
+ "The sun shines on both sides of the hedge.",
389
+ "The worst wheel always creaks most.",
390
+ "Too many irons in the fire.",
391
+ "You can't get blood out of a stone."
392
+ ]
393
+ },
394
+ {
395
+ "Growth": [
396
+ "A little body doth often harbour a great soul.",
397
+ "A point is the beginning of magnitude.",
398
+ "A spark can start a great fire.",
399
+ "A short cut is often a wrong cut.",
400
+ "Big fish eat little fish.",
401
+ "Everything has an end.",
402
+ "Fall seven times. Stand up eight.",
403
+ "First in best dressed.",
404
+ "From trivial things, great contests often arise.",
405
+ "Give them an inch and they'll take a mile.",
406
+ "Grow angry slowly, there's plenty of time.",
407
+ "He who hesitates is lost.",
408
+ "It's either all or nothing.",
409
+ "It is easier to destroy than to build.",
410
+ "It is the first step that is difficult.",
411
+ "Little strokes fell great oaks.",
412
+ "Lost time is never found again.",
413
+ "Many drops make a shower.",
414
+ "Mighty oaks from tiny acorns grow.",
415
+ "Necessity is a hard nurse, but she raises strong children.",
416
+ "Rome wasn't built in a day.",
417
+ "Seize the day.",
418
+ "Small faults indulged let in greater.",
419
+ "Some of the best gifts come in small packages.",
420
+ "Step by step one goes far.",
421
+ "You have to crawl before you walk."
422
+ ]
423
+ },
424
+ {
425
+ "Money": [
426
+ "A bad penny always comes back.",
427
+ "A light purse makes a heavy heart.",
428
+ "A little each day is much in a year.",
429
+ "A man's intentions seldom add to his income.",
430
+ "A penny saved is a penny earned.",
431
+ "A poor man is better than a liar.",
432
+ "A single penny fairly got is worth a thousand that are not.",
433
+ "Always you are to be rich next year.",
434
+ "Beggars can't be choosers.",
435
+ "Better to have than to wish.",
436
+ "Diamonds are forever.",
437
+ "Every man has his price.",
438
+ "Every man is the architect of his destiny.",
439
+ "Experience is the father of wisdom.",
440
+ "Fair exchange is no robbery.",
441
+ "He has enough who is content.",
442
+ "He that pays last never pays twice.",
443
+ "He is rich that is satisfied.",
444
+ "In for a penny, in for a pound.",
445
+ "It is better to be born lucky than rich.",
446
+ "Little and often fill the purse.",
447
+ "Little thieves are hanged, but great ones escape.",
448
+ "Money burns a hole in your pocket.",
449
+ "Never spend your money before you have it.",
450
+ "One today is worth two tomorrows.",
451
+ "Penny wise, pound foolish.",
452
+ "Take care of the pence and the pounds will take care of themselves.",
453
+ "The best cast at dice is not to play.",
454
+ "The love of money is the root of all evil.",
455
+ "There is no honour among thieves.",
456
+ "Waste not, want not."
457
+ ]
458
+ },
459
+ {
460
+ "Business": [
461
+ "A good conscience is a soft pillow.",
462
+ "A good thing is soon snatched up.",
463
+ "A little knowledge is a dangerous thing.",
464
+ "Better safe than sorry.",
465
+ "Better late than never.",
466
+ "Business before pleasure.",
467
+ "Credit won by lying is quick in dying.",
468
+ "Damage suffered makes you knowing, but seldom rich.",
469
+ "Desperate diseases must have desperate remedies.",
470
+ "Divide and conquer.",
471
+ "Don't rely on the label on the bag.",
472
+ "Don't throw the baby out with the bath-water.",
473
+ "Don't put all your eggs in one basket.",
474
+ "Experience is the best teacher.",
475
+ "First come, first served.",
476
+ "Fore-warned is fore-armed.",
477
+ "Hasty climbers have sudden falls.",
478
+ "Hasty judgements are generally faulty.",
479
+ "Honesty is the best policy.",
480
+ "If anything can go wrong, it will.",
481
+ "If you don't know where you're going, then the journey is never ending.",
482
+ "It's a poor job that can't carry one boss.",
483
+ "Keep It Simple (The KISS principal).",
484
+ "Let the buyer beware.",
485
+ "Look before you leap.",
486
+ "Nobody can serve two masters.",
487
+ "One false move may lose the game.",
488
+ "One man's loss, is another man's gain.",
489
+ "Peace begins just where ambition ends.",
490
+ "Possession is nine tenths of the law.",
491
+ "Rules are made to be broken.",
492
+ "The customer is always right.",
493
+ "The gods help them that help themselves.",
494
+ "The golden age never was the present one.",
495
+ "To each his own.",
496
+ "We do not always gain by changing.",
497
+ "Where there's a will there's a way."
498
+ ]
499
+ },
500
+ {
501
+ "Fools": [
502
+ "A fool and his money are soon parted.",
503
+ "A fool in a gown is none the wiser.",
504
+ "A wise man doesn't need advice, and a fool won't take it.",
505
+ "Advice when most needed is least heeded.",
506
+ "Always in a hurry, always behind.",
507
+ "Cheap is dear in the long run.",
508
+ "Confess and be hanged.",
509
+ "Cut off one's nose to spite one's face.",
510
+ "Empty vessels make the most noise.",
511
+ "Facts do not cease to exist because they are ignored.",
512
+ "Fools rush in where angels fear to tread.",
513
+ "He who won't be advised, can't be helped.",
514
+ "If the cap fits, wear it.",
515
+ "In one ear and out the other.",
516
+ "It can't happen here is number one on the list of famous last words.",
517
+ "It is better to stay silent and be thought a fool, than to open one's mouth and remove all doubt.",
518
+ "One of these days is none of these days.",
519
+ "Pride cometh before a fall.",
520
+ "Pride feels no pain.",
521
+ "See nothing, say nothing, know nothing.",
522
+ "The bigger they are the harder they fall.",
523
+ "The fool wanders, the wise man travels.",
524
+ "The hood does not make the monk.",
525
+ "The wise man is deceived once but the fool twice.",
526
+ "There is no fool like an old fool.",
527
+ "Use not today what tomorrow will need.",
528
+ "What's the good of home, if you are never in it?",
529
+ "You cannot lose what you never had."
530
+ ]
531
+ }
532
+ ]
533
+ }