faker 2.0.0 → 3.8.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.
Files changed (584) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +1896 -11
  3. data/README.md +140 -307
  4. data/lib/faker/blockchain/aeternity.rb +70 -0
  5. data/lib/faker/blockchain/bitcoin.rb +27 -2
  6. data/lib/faker/blockchain/ethereum.rb +11 -1
  7. data/lib/faker/blockchain/tezos.rb +92 -9
  8. data/lib/faker/blockchain.rb +9 -0
  9. data/lib/faker/books/culture_series.rb +49 -0
  10. data/lib/faker/books/dune.rb +71 -5
  11. data/lib/faker/books/lovecraft.rb +182 -7
  12. data/lib/faker/books/the_kingkiller_chronicle.rb +61 -0
  13. data/lib/faker/books.rb +9 -0
  14. data/lib/faker/creature/animal.rb +9 -0
  15. data/lib/faker/creature/bird.rb +203 -0
  16. data/lib/faker/creature/cat.rb +27 -0
  17. data/lib/faker/creature/dog.rb +72 -0
  18. data/lib/faker/creature/horse.rb +18 -0
  19. data/lib/faker/creature.rb +9 -0
  20. data/lib/faker/default/address.rb +251 -6
  21. data/lib/faker/default/adjective.rb +35 -0
  22. data/lib/faker/default/alphanumeric.rb +49 -6
  23. data/lib/faker/default/ancient.rb +36 -0
  24. data/lib/faker/default/app.rb +45 -0
  25. data/lib/faker/default/appliance.rb +18 -0
  26. data/lib/faker/default/artist.rb +9 -0
  27. data/lib/faker/default/avatar.rb +32 -1
  28. data/lib/faker/default/bank.rb +117 -22
  29. data/lib/faker/default/barcode.rb +165 -0
  30. data/lib/faker/default/beer.rb +75 -3
  31. data/lib/faker/default/blood.rb +48 -0
  32. data/lib/faker/default/book.rb +61 -0
  33. data/lib/faker/default/boolean.rb +14 -1
  34. data/lib/faker/default/business.rb +27 -0
  35. data/lib/faker/default/camera.rb +46 -0
  36. data/lib/faker/default/cannabis.rb +90 -0
  37. data/lib/faker/default/chile_rut.rb +62 -8
  38. data/lib/faker/default/chuck_norris.rb +13 -2
  39. data/lib/faker/default/code.rb +165 -38
  40. data/lib/faker/default/coffee.rb +45 -0
  41. data/lib/faker/default/coin.rb +18 -0
  42. data/lib/faker/default/color.rb +123 -5
  43. data/lib/faker/default/commerce.rb +102 -11
  44. data/lib/faker/default/company.rb +445 -23
  45. data/lib/faker/default/compass.rb +135 -0
  46. data/lib/faker/default/computer.rb +63 -0
  47. data/lib/faker/default/construction.rb +54 -0
  48. data/lib/faker/default/cosmere.rb +90 -0
  49. data/lib/faker/default/crypto.rb +52 -5
  50. data/lib/faker/default/crypto_coin.rb +45 -0
  51. data/lib/faker/default/currency.rb +27 -0
  52. data/lib/faker/default/date.rb +145 -5
  53. data/lib/faker/default/dc_comics.rb +45 -0
  54. data/lib/faker/default/demographic.rb +57 -0
  55. data/lib/faker/default/dessert.rb +27 -0
  56. data/lib/faker/default/device.rb +54 -0
  57. data/lib/faker/default/driving_licence.rb +87 -14
  58. data/lib/faker/default/drone.rb +332 -0
  59. data/lib/faker/default/educator.rb +73 -6
  60. data/lib/faker/default/electrical_components.rb +27 -0
  61. data/lib/faker/default/emotion.rb +33 -0
  62. data/lib/faker/default/esport.rb +45 -0
  63. data/lib/faker/default/file.rb +53 -4
  64. data/lib/faker/default/finance.rb +74 -2
  65. data/lib/faker/default/food.rb +93 -3
  66. data/lib/faker/default/funny_name.rb +45 -0
  67. data/lib/faker/default/game.rb +48 -0
  68. data/lib/faker/default/gender.rb +31 -0
  69. data/lib/faker/default/greek_philosophers.rb +18 -0
  70. data/lib/faker/default/hacker.rb +59 -1
  71. data/lib/faker/default/hipster.rb +103 -7
  72. data/lib/faker/default/hobby.rb +22 -0
  73. data/lib/faker/default/house.rb +18 -0
  74. data/lib/faker/default/html.rb +230 -0
  75. data/lib/faker/default/id_number.rb +313 -8
  76. data/lib/faker/default/industry_segments.rb +36 -0
  77. data/lib/faker/default/invoice.rb +34 -7
  78. data/lib/faker/default/job.rb +36 -0
  79. data/lib/faker/default/json.rb +68 -8
  80. data/lib/faker/default/kpop.rb +54 -0
  81. data/lib/faker/default/lorem.rb +194 -21
  82. data/lib/faker/default/lorem_flickr.rb +67 -2
  83. data/lib/faker/default/markdown.rb +100 -9
  84. data/lib/faker/default/marketing.rb +9 -0
  85. data/lib/faker/default/measurement.rb +93 -2
  86. data/lib/faker/default/military.rb +71 -0
  87. data/lib/faker/default/mountain.rb +33 -0
  88. data/lib/faker/default/movie.rb +33 -0
  89. data/lib/faker/default/name.rb +98 -0
  90. data/lib/faker/default/nation.rb +45 -5
  91. data/lib/faker/default/{nhs.rb → national_health_service.rb} +27 -4
  92. data/lib/faker/default/nato_phonetic_alphabet.rb +9 -0
  93. data/lib/faker/default/number.rb +151 -12
  94. data/lib/faker/default/omniauth.rb +233 -92
  95. data/lib/faker/default/phone_number.rb +113 -11
  96. data/lib/faker/default/placeholdit.rb +24 -3
  97. data/lib/faker/default/programming_language.rb +18 -0
  98. data/lib/faker/default/quote.rb +124 -0
  99. data/lib/faker/default/relationship.rb +46 -1
  100. data/lib/faker/default/restaurant.rb +54 -2
  101. data/lib/faker/default/science.rb +135 -0
  102. data/lib/faker/default/slack_emoji.rb +81 -0
  103. data/lib/faker/default/source.rb +43 -0
  104. data/lib/faker/default/south_africa.rb +93 -3
  105. data/lib/faker/default/space.rb +128 -1
  106. data/lib/faker/default/sport.rb +116 -0
  107. data/lib/faker/default/string.rb +18 -4
  108. data/lib/faker/default/stripe.rb +64 -3
  109. data/lib/faker/default/subscription.rb +45 -0
  110. data/lib/faker/default/superhero.rb +45 -0
  111. data/lib/faker/default/tea.rb +41 -0
  112. data/lib/faker/default/team.rb +45 -0
  113. data/lib/faker/default/theater.rb +49 -0
  114. data/lib/faker/default/time.rb +80 -0
  115. data/lib/faker/default/types.rb +91 -11
  116. data/lib/faker/default/university.rb +45 -0
  117. data/lib/faker/default/vehicle.rb +225 -42
  118. data/lib/faker/default/verb.rb +45 -0
  119. data/lib/faker/default/vulnerability_identifier.rb +23 -0
  120. data/lib/faker/default/world_cup.rb +50 -0
  121. data/lib/faker/default/x.rb +189 -0
  122. data/lib/faker/default.rb +9 -0
  123. data/lib/faker/fantasy/tolkien.rb +67 -0
  124. data/lib/faker/fantasy.rb +9 -0
  125. data/lib/faker/games/clash_of_clans.rb +48 -0
  126. data/lib/faker/games/control.rb +113 -0
  127. data/lib/faker/games/dnd.rb +178 -0
  128. data/lib/faker/games/dota.rb +60 -0
  129. data/lib/faker/games/elder_scrolls.rb +98 -0
  130. data/lib/faker/games/fallout.rb +37 -0
  131. data/lib/faker/games/final_fantasy_xiv.rb +73 -0
  132. data/lib/faker/games/half_life.rb +27 -0
  133. data/lib/faker/games/heroes.rb +40 -0
  134. data/lib/faker/games/heroes_of_the_storm.rb +38 -2
  135. data/lib/faker/games/league_of_legends.rb +54 -0
  136. data/lib/faker/games/minecraft.rb +113 -0
  137. data/lib/faker/games/myst.rb +45 -0
  138. data/lib/faker/games/overwatch.rb +27 -0
  139. data/lib/faker/games/pokemon.rb +27 -0
  140. data/lib/faker/games/sonic_the_hedgehog.rb +27 -0
  141. data/lib/faker/games/street_fighter.rb +61 -0
  142. data/lib/faker/games/super_mario.rb +48 -0
  143. data/lib/faker/games/super_smash_bros.rb +18 -0
  144. data/lib/faker/games/tarkov.rb +205 -0
  145. data/lib/faker/games/touhou.rb +75 -0
  146. data/lib/faker/games/warhammer_fantasy.rb +74 -0
  147. data/lib/faker/games/witcher.rb +93 -0
  148. data/lib/faker/games/world_of_warcraft.rb +44 -1
  149. data/lib/faker/games/zelda.rb +37 -1
  150. data/lib/faker/games.rb +9 -0
  151. data/lib/faker/internet/http.rb +48 -0
  152. data/lib/faker/internet.rb +582 -0
  153. data/lib/faker/japanese_media/conan.rb +48 -0
  154. data/lib/faker/japanese_media/cowboy_bebop.rb +61 -0
  155. data/lib/faker/japanese_media/doraemon.rb +48 -0
  156. data/lib/faker/japanese_media/dragon_ball.rb +35 -0
  157. data/lib/faker/japanese_media/fullmetal_alchemist_brotherhood.rb +48 -0
  158. data/lib/faker/japanese_media/kamen_rider.rb +102 -0
  159. data/lib/faker/japanese_media/naruto.rb +61 -0
  160. data/lib/faker/japanese_media/one_piece.rb +55 -1
  161. data/lib/faker/japanese_media/studio_ghibli.rb +48 -0
  162. data/lib/faker/japanese_media/sword_art_online.rb +36 -0
  163. data/lib/faker/japanese_media.rb +9 -0
  164. data/lib/faker/locations/australia.rb +49 -0
  165. data/lib/faker/locations.rb +9 -0
  166. data/lib/faker/movies/avatar.rb +49 -0
  167. data/lib/faker/movies/back_to_the_future.rb +28 -0
  168. data/lib/faker/movies/departed.rb +49 -0
  169. data/lib/faker/movies/ghostbusters.rb +28 -0
  170. data/lib/faker/movies/hackers.rb +48 -0
  171. data/lib/faker/movies/harry_potter.rb +54 -0
  172. data/lib/faker/movies/hitchhikers_guide_to_the_galaxy.rb +69 -0
  173. data/lib/faker/movies/hobbit.rb +41 -4
  174. data/lib/faker/movies/how_to_train_your_dragon.rb +48 -0
  175. data/lib/faker/movies/lebowski.rb +27 -0
  176. data/lib/faker/movies/lord_of_the_rings.rb +31 -3
  177. data/lib/faker/movies/princess_bride.rb +19 -0
  178. data/lib/faker/movies/star_wars.rb +169 -5
  179. data/lib/faker/movies/the_room.rb +63 -0
  180. data/lib/faker/movies/tron.rb +161 -0
  181. data/lib/faker/movies/v_for_vendetta.rb +29 -0
  182. data/lib/faker/movies.rb +9 -0
  183. data/lib/faker/music/bossa_nova.rb +35 -0
  184. data/lib/faker/music/grateful_dead.rb +18 -2
  185. data/lib/faker/music/hiphop.rb +48 -0
  186. data/lib/faker/music/opera.rb +273 -1
  187. data/lib/faker/music/pearl_jam.rb +48 -0
  188. data/lib/faker/music/phish.rb +36 -1
  189. data/lib/faker/music/prince.rb +64 -0
  190. data/lib/faker/music/rock_band.rb +21 -0
  191. data/lib/faker/music/rush.rb +35 -0
  192. data/lib/faker/music/smashing_pumpkins.rb +62 -0
  193. data/lib/faker/music/umphreys_mcgee.rb +9 -0
  194. data/lib/faker/music.rb +149 -0
  195. data/lib/faker/quotes/chiquito.rb +80 -0
  196. data/lib/faker/quotes/rajnikanth.rb +27 -0
  197. data/lib/faker/quotes/shakespeare.rb +70 -0
  198. data/lib/faker/quotes.rb +9 -0
  199. data/lib/faker/religion/bible.rb +50 -0
  200. data/lib/faker/religion.rb +9 -0
  201. data/lib/faker/sports/basketball.rb +36 -0
  202. data/lib/faker/sports/chess.rb +90 -0
  203. data/lib/faker/sports/football.rb +45 -0
  204. data/lib/faker/sports/mountaineering.rb +22 -0
  205. data/lib/faker/sports/volleyball.rb +74 -0
  206. data/lib/faker/sports.rb +9 -0
  207. data/lib/faker/travel/airport.rb +43 -0
  208. data/lib/faker/travel/train_station.rb +54 -0
  209. data/lib/faker/travel.rb +9 -0
  210. data/lib/faker/tv_shows/aqua_teen_hunger_force.rb +22 -0
  211. data/lib/faker/tv_shows/archer.rb +51 -0
  212. data/lib/faker/tv_shows/big_bang_theory.rb +37 -0
  213. data/lib/faker/tv_shows/bojack_horseman.rb +28 -0
  214. data/lib/faker/tv_shows/breaking_bad.rb +18 -0
  215. data/lib/faker/tv_shows/brooklyn_nine_nine.rb +38 -0
  216. data/lib/faker/tv_shows/buffy.rb +47 -2
  217. data/lib/faker/tv_shows/community.rb +19 -0
  218. data/lib/faker/tv_shows/dr_who.rb +65 -2
  219. data/lib/faker/tv_shows/dumb_and_dumber.rb +28 -0
  220. data/lib/faker/tv_shows/family_guy.rb +28 -0
  221. data/lib/faker/tv_shows/final_space.rb +51 -0
  222. data/lib/faker/tv_shows/friends.rb +27 -0
  223. data/lib/faker/tv_shows/futurama.rb +65 -0
  224. data/lib/faker/tv_shows/game_of_thrones.rb +46 -0
  225. data/lib/faker/tv_shows/hey_arnold.rb +27 -0
  226. data/lib/faker/tv_shows/how_i_met_your_mother.rb +37 -0
  227. data/lib/faker/tv_shows/michael_scott.rb +10 -0
  228. data/lib/faker/tv_shows/new_girl.rb +19 -0
  229. data/lib/faker/tv_shows/parks_and_rec.rb +18 -0
  230. data/lib/faker/tv_shows/rick_and_morty.rb +28 -0
  231. data/lib/faker/tv_shows/ru_paul.rb +18 -0
  232. data/lib/faker/tv_shows/seinfeld.rb +28 -0
  233. data/lib/faker/tv_shows/silicon_valley.rb +75 -0
  234. data/lib/faker/tv_shows/simpsons.rb +42 -0
  235. data/lib/faker/tv_shows/south_park.rb +34 -0
  236. data/lib/faker/tv_shows/spongebob.rb +50 -0
  237. data/lib/faker/tv_shows/star_trek.rb +36 -0
  238. data/lib/faker/tv_shows/stargate.rb +28 -0
  239. data/lib/faker/tv_shows/stranger_things.rb +19 -0
  240. data/lib/faker/tv_shows/suits.rb +37 -0
  241. data/lib/faker/tv_shows/supernatural.rb +48 -0
  242. data/lib/faker/tv_shows/the_expanse.rb +36 -0
  243. data/lib/faker/tv_shows/the_fresh_prince_of_bel_air.rb +30 -2
  244. data/lib/faker/tv_shows/the_it_crowd.rb +37 -0
  245. data/lib/faker/tv_shows/the_office.rb +37 -0
  246. data/lib/faker/tv_shows/the_thick_of_it.rb +28 -0
  247. data/lib/faker/tv_shows/twin_peaks.rb +28 -0
  248. data/lib/faker/tv_shows/venture_bros.rb +38 -0
  249. data/lib/faker/tv_shows.rb +9 -0
  250. data/lib/faker/version.rb +2 -2
  251. data/lib/faker.rb +125 -45
  252. data/lib/helpers/base58.rb +1 -1
  253. data/lib/helpers/char.rb +22 -27
  254. data/lib/helpers/deprecator.rb +118 -0
  255. data/lib/helpers/positional_generator.rb +478 -0
  256. data/lib/helpers/unique_generator.rb +18 -14
  257. data/lib/locales/README.md +18 -2
  258. data/lib/locales/ar.yml +1608 -46
  259. data/lib/locales/bg.yml +937 -21
  260. data/lib/locales/ca-CAT.yml +347 -12
  261. data/lib/locales/ca.yml +580 -15
  262. data/lib/locales/da-DK.yml +530 -36
  263. data/lib/locales/de-AT.yml +3487 -25
  264. data/lib/locales/de-CH.yml +6051 -9
  265. data/lib/locales/de.yml +7185 -97
  266. data/lib/locales/ee.yml +1185 -27
  267. data/lib/locales/en/address.yml +1829 -559
  268. data/lib/locales/en/adjective.yml +179 -0
  269. data/lib/locales/en/airport.yml +381 -0
  270. data/lib/locales/en/ancient.yml +128 -4
  271. data/lib/locales/en/animal.yml +141 -2
  272. data/lib/locales/en/app.yml +89 -2
  273. data/lib/locales/en/appliance.yml +81 -2
  274. data/lib/locales/en/aqua_teen_hunger_force.yml +33 -1
  275. data/lib/locales/en/archer.yml +75 -0
  276. data/lib/locales/en/artist.yml +43 -1
  277. data/lib/locales/en/australia.yml +108 -0
  278. data/lib/locales/en/avatar.yml +57 -0
  279. data/lib/locales/en/back_to_the_future.yml +145 -117
  280. data/lib/locales/en/bank.yml +92 -3
  281. data/lib/locales/en/barcode.yml +24 -0
  282. data/lib/locales/en/beer.yml +232 -6
  283. data/lib/locales/en/bible.yml +87 -0
  284. data/lib/locales/en/big_bang_theory.yml +37 -0
  285. data/lib/locales/en/bird.yml +1280 -0
  286. data/lib/locales/en/blood.yml +13 -0
  287. data/lib/locales/en/bojack_horseman.yml +63 -3
  288. data/lib/locales/en/book.yml +486 -3
  289. data/lib/locales/en/bossa_nova.yml +110 -3
  290. data/lib/locales/en/breaking_bad.yml +110 -25
  291. data/lib/locales/en/brooklyn_nine_nine.yml +34 -0
  292. data/lib/locales/en/buffy.yml +239 -257
  293. data/lib/locales/en/business.yml +18 -2
  294. data/lib/locales/en/camera.yml +611 -0
  295. data/lib/locales/en/cannabis.yml +344 -10
  296. data/lib/locales/en/cat.yml +155 -3
  297. data/lib/locales/en/chess.yml +102 -0
  298. data/lib/locales/en/chiquito.yml +63 -0
  299. data/lib/locales/en/chuck_norris.yml +78 -79
  300. data/lib/locales/en/clash_of_clan.yml +99 -0
  301. data/lib/locales/en/code.yml +501 -1
  302. data/lib/locales/en/coffee.yml +450 -25
  303. data/lib/locales/en/color.yml +73 -1
  304. data/lib/locales/en/commerce.yml +117 -6
  305. data/lib/locales/en/community.yml +55 -30
  306. data/lib/locales/en/company.yml +1756 -13
  307. data/lib/locales/en/compass.yml +108 -12
  308. data/lib/locales/en/computer.yml +55 -0
  309. data/lib/locales/en/conan.yml +169 -0
  310. data/lib/locales/en/construction.yml +416 -422
  311. data/lib/locales/en/control.yml +247 -0
  312. data/lib/locales/en/cosmere.yml +219 -54
  313. data/lib/locales/en/cowboy_bebop.yml +160 -0
  314. data/lib/locales/en/culture_series.yml +298 -298
  315. data/lib/locales/en/currency.yml +358 -3
  316. data/lib/locales/en/dc_comics.yml +178 -49
  317. data/lib/locales/en/demographic.yml +218 -5
  318. data/lib/locales/en/departed.yml +46 -0
  319. data/lib/locales/en/dessert.yml +78 -3
  320. data/lib/locales/en/device.yml +112 -4
  321. data/lib/locales/en/dnd.yml +636 -0
  322. data/lib/locales/en/dog.yml +262 -7
  323. data/lib/locales/en/doraemon.yml +284 -0
  324. data/lib/locales/en/dota.yml +704 -63
  325. data/lib/locales/en/dr_who.yml +468 -93
  326. data/lib/locales/en/dragon_ball.yml +243 -1
  327. data/lib/locales/en/driving_license.yml +181 -0
  328. data/lib/locales/en/drone.yml +95 -0
  329. data/lib/locales/en/dumb_and_dumber.yml +72 -56
  330. data/lib/locales/en/dune.yml +270 -131
  331. data/lib/locales/en/educator.yml +75 -6
  332. data/lib/locales/en/elder_scrolls.yml +582 -9
  333. data/lib/locales/en/electrical_components.yml +49 -3
  334. data/lib/locales/en/emotion.yml +480 -0
  335. data/lib/locales/en/esport.yml +58 -5
  336. data/lib/locales/en/fallout.yml +311 -133
  337. data/lib/locales/en/family_guy.yml +54 -4
  338. data/lib/locales/en/file.yml +109 -2
  339. data/lib/locales/en/final_fantasy_xiv.yml +754 -0
  340. data/lib/locales/en/final_space.yml +35 -0
  341. data/lib/locales/en/finance.yml +80 -4
  342. data/lib/locales/en/food.yml +1067 -10
  343. data/lib/locales/en/football.yml +121 -5
  344. data/lib/locales/en/fresh_prince_of_bel_air.yml +119 -70
  345. data/lib/locales/en/friends.yml +162 -3
  346. data/lib/locales/en/fullmetal_alchemist_brotherhood.yml +78 -0
  347. data/lib/locales/en/funny_name.yml +752 -1
  348. data/lib/locales/en/futurama.yml +336 -0
  349. data/lib/locales/en/game.yml +11 -0
  350. data/lib/locales/en/game_of_thrones.yml +2487 -5
  351. data/lib/locales/en/gender.yml +15 -2
  352. data/lib/locales/en/ghostbusters.yml +101 -88
  353. data/lib/locales/en/grateful_dead.yml +47 -45
  354. data/lib/locales/en/greek_philosophers.yml +44 -23
  355. data/lib/locales/en/hacker.yml +110 -5
  356. data/lib/locales/en/hackers.yml +53 -0
  357. data/lib/locales/en/half_life.yml +84 -3
  358. data/lib/locales/en/harry_potter.yml +323 -6
  359. data/lib/locales/en/heroes.yml +408 -3
  360. data/lib/locales/en/heroes_of_the_storm.yml +131 -4
  361. data/lib/locales/en/hey_arnold.yml +104 -21
  362. data/lib/locales/en/hipster.yml +203 -1
  363. data/lib/locales/en/hitchhikers_guide_to_the_galaxy.yml +243 -42
  364. data/lib/locales/en/hobby.yml +170 -0
  365. data/lib/locales/en/horse.yml +446 -2
  366. data/lib/locales/en/house.yml +34 -2
  367. data/lib/locales/en/how_i_met_your_mother.yml +97 -25
  368. data/lib/locales/en/how_to_train_your_dragon.yml +173 -0
  369. data/lib/locales/en/id_number.yml +7 -2
  370. data/lib/locales/en/industry_segments.yml +188 -4
  371. data/lib/locales/en/internet.yml +136 -3
  372. data/lib/locales/en/jack_handey.yml +54 -0
  373. data/lib/locales/en/job.yml +98 -7
  374. data/lib/locales/en/kamen_rider.yml +718 -0
  375. data/lib/locales/en/kpop.yml +954 -80
  376. data/lib/locales/en/league_of_legends.yml +285 -6
  377. data/lib/locales/en/lebowski.yml +58 -40
  378. data/lib/locales/en/lorem.yml +1095 -6
  379. data/lib/locales/en/lovecraft.yml +76 -6
  380. data/lib/locales/en/markdown.yml +12 -2
  381. data/lib/locales/en/marketing.yml +54 -1
  382. data/lib/locales/en/measurement.yml +42 -8
  383. data/lib/locales/en/michael_scott.yml +41 -42
  384. data/lib/locales/en/military.yml +179 -5
  385. data/lib/locales/en/minecraft.yml +663 -0
  386. data/lib/locales/en/mitch_hedberg.yml +46 -0
  387. data/lib/locales/en/mountain.yml +171 -0
  388. data/lib/locales/en/mountaineering.yml +14 -0
  389. data/lib/locales/en/movie.yml +206 -2
  390. data/lib/locales/en/music.yml +461 -29
  391. data/lib/locales/en/myst.yml +87 -31
  392. data/lib/locales/en/name.yml +6068 -5
  393. data/lib/locales/en/naruto.yml +230 -0
  394. data/lib/locales/en/nato_phonetic_alphabet.yml +27 -1
  395. data/lib/locales/en/new_girl.yml +35 -37
  396. data/lib/locales/en/one_piece.yml +359 -6
  397. data/lib/locales/en/opera.yml +169 -1
  398. data/lib/locales/en/overwatch.yml +2648 -37
  399. data/lib/locales/en/parks_and_rec.yml +33 -4
  400. data/lib/locales/en/pearl_jam.yml +213 -0
  401. data/lib/locales/en/phish.yml +391 -1
  402. data/lib/locales/en/phone_number.yml +78 -3
  403. data/lib/locales/en/pokemon.yml +417 -4
  404. data/lib/locales/en/prince.yml +227 -0
  405. data/lib/locales/en/princess_bride.yml +48 -2
  406. data/lib/locales/en/programming_language.yml +753 -3
  407. data/lib/locales/en/quote.yml +606 -163
  408. data/lib/locales/en/rajnikanth.yml +77 -0
  409. data/lib/locales/en/relationship.yml +29 -6
  410. data/lib/locales/en/restaurant.yml +31 -31
  411. data/lib/locales/en/rick_and_morty.yml +116 -3
  412. data/lib/locales/en/rock_band.yml +228 -1
  413. data/lib/locales/en/rupaul.yml +120 -122
  414. data/lib/locales/en/rush.yml +32 -0
  415. data/lib/locales/en/science.yml +481 -3
  416. data/lib/locales/en/seinfeld.yml +110 -3
  417. data/lib/locales/en/shakespeare.yml +46 -53
  418. data/lib/locales/en/silicon_valley.yml +122 -50
  419. data/lib/locales/en/simpsons.yml +897 -23
  420. data/lib/locales/en/slack_emoji.yml +874 -8
  421. data/lib/locales/en/smashing_pumpkins.yml +382 -0
  422. data/lib/locales/en/source.yml +35 -0
  423. data/lib/locales/en/south_park.yml +360 -2
  424. data/lib/locales/en/space.yml +373 -14
  425. data/lib/locales/en/spongebob.yml +489 -0
  426. data/lib/locales/en/sport.yml +130 -0
  427. data/lib/locales/en/star_trek.yml +105 -4
  428. data/lib/locales/en/star_wars.yml +564 -219
  429. data/lib/locales/en/stargate.yml +65 -18
  430. data/lib/locales/en/stranger_thing.yml +31 -33
  431. data/lib/locales/en/street_fighter.yml +1524 -0
  432. data/lib/locales/en/stripe.yml +3 -3
  433. data/lib/locales/en/studio_ghibli.yml +107 -0
  434. data/lib/locales/en/subscription.yml +47 -5
  435. data/lib/locales/en/suits.yml +45 -0
  436. data/lib/locales/en/super_mario.yml +58 -0
  437. data/lib/locales/en/super_smash_bros.yml +23 -5
  438. data/lib/locales/en/superhero.yml +574 -4
  439. data/lib/locales/en/supernatural.yml +141 -0
  440. data/lib/locales/en/sword_art_online.yml +327 -331
  441. data/lib/locales/en/tarkov.yml +593 -0
  442. data/lib/locales/en/tea.yml +172 -0
  443. data/lib/locales/en/team.yml +125 -3
  444. data/lib/locales/en/the_expanse.yml +92 -4
  445. data/lib/locales/en/the_it_crowd.yml +148 -152
  446. data/lib/locales/en/the_kingkiller_chronicle.yml +56 -0
  447. data/lib/locales/en/the_office.yml +82 -0
  448. data/lib/locales/en/the_room.yml +68 -0
  449. data/lib/locales/en/the_thick_of_it.yml +83 -3
  450. data/lib/locales/en/theater.yml +597 -0
  451. data/lib/locales/en/tolkien.yml +2453 -0
  452. data/lib/locales/en/touhou.yml +839 -0
  453. data/lib/locales/en/train_station.yml +280 -0
  454. data/lib/locales/en/tron.yml +227 -0
  455. data/lib/locales/en/twin_peaks.yml +130 -3
  456. data/lib/locales/en/umphreys_mcgee.yml +266 -1
  457. data/lib/locales/en/university.yml +15 -2
  458. data/lib/locales/en/v_for_vendetta.yml +157 -160
  459. data/lib/locales/en/vehicle.yml +2809 -75
  460. data/lib/locales/en/venture_bros.yml +225 -4
  461. data/lib/locales/en/verbs.yml +3785 -5
  462. data/lib/locales/en/volleyball.yml +501 -0
  463. data/lib/locales/en/warhammer_fantasy.yml +549 -0
  464. data/lib/locales/en/witcher.yml +426 -7
  465. data/lib/locales/en/world_cup.yml +1132 -235
  466. data/lib/locales/en/world_of_warcraft.yml +122 -4
  467. data/lib/locales/en/yoda.yml +38 -1
  468. data/lib/locales/en/zelda.yml +962 -4
  469. data/lib/locales/en-AU.yml +728 -17
  470. data/lib/locales/en-BORK.yml +104 -1
  471. data/lib/locales/en-CA.yml +373 -15
  472. data/lib/locales/en-GB.yml +118 -8
  473. data/lib/locales/en-IND.yml +1259 -16
  474. data/lib/locales/en-KE.yml +212 -0
  475. data/lib/locales/en-MS.yml +364 -16
  476. data/lib/locales/en-NEP.yml +213 -36
  477. data/lib/locales/en-NG.yml +737 -65
  478. data/lib/locales/en-NZ.yml +1183 -27
  479. data/lib/locales/en-PAK.yml +392 -9
  480. data/lib/locales/en-SG.yml +581 -15
  481. data/lib/locales/en-TH.yml +360 -0
  482. data/lib/locales/en-UG.yml +374 -75
  483. data/lib/locales/en-US.yml +6937 -71
  484. data/lib/locales/en-ZA.yml +1394 -13
  485. data/lib/locales/en-au-ocker.yml +266 -21
  486. data/lib/locales/en.yml +0 -50
  487. data/lib/locales/es-AR.yml +4570 -0
  488. data/lib/locales/es-MX.yml +1910 -41
  489. data/lib/locales/es.yml +2172 -52
  490. data/lib/locales/fa.yml +1624 -3
  491. data/lib/locales/fi-FI.yml +316 -16
  492. data/lib/locales/fr/address.yml +773 -0
  493. data/lib/locales/fr/adjective.yml +266 -0
  494. data/lib/locales/fr/ancient.yml +141 -0
  495. data/lib/locales/fr/animal.yml +122 -0
  496. data/lib/locales/fr/appliance.yml +69 -0
  497. data/lib/locales/fr/book.yml +31 -0
  498. data/lib/locales/fr/color.yml +34 -0
  499. data/lib/locales/fr/company.yml +497 -0
  500. data/lib/locales/fr/compass.yml +71 -0
  501. data/lib/locales/fr/demographic.yml +6 -0
  502. data/lib/locales/fr/gender.yml +21 -0
  503. data/lib/locales/fr/internet.yml +15 -0
  504. data/lib/locales/fr/lorem.yml +1094 -0
  505. data/lib/locales/fr/measurement.yml +34 -0
  506. data/lib/locales/fr/name.yml +1193 -0
  507. data/lib/locales/fr/phone_number.yml +38 -0
  508. data/lib/locales/fr/pokemon.yml +421 -0
  509. data/lib/locales/fr-CA.yml +2756 -44
  510. data/lib/locales/fr-CH.yml +2455 -42
  511. data/lib/locales/fr.yml +2 -111
  512. data/lib/locales/he.yml +255 -9
  513. data/lib/locales/hy.yml +3630 -124
  514. data/lib/locales/id.yml +840 -10
  515. data/lib/locales/it.yml +1310 -31
  516. data/lib/locales/ja/README.md +13 -0
  517. data/lib/locales/ja/address.yml +363 -0
  518. data/lib/locales/ja/adjective.yml +148 -0
  519. data/lib/locales/ja/ancient.yml +18 -0
  520. data/lib/locales/ja/animal.yml +87 -0
  521. data/lib/locales/ja/artist.yml +46 -0
  522. data/lib/locales/ja/bank.yml +139 -0
  523. data/lib/locales/ja/book.yml +496 -0
  524. data/lib/locales/ja/cat.yml +79 -0
  525. data/lib/locales/ja/coffee.yml +22 -0
  526. data/lib/locales/ja/color.yml +35 -0
  527. data/lib/locales/ja/commerce.yml +103 -0
  528. data/lib/locales/ja/company.yml +26 -0
  529. data/lib/locales/ja/dog.yml +339 -0
  530. data/lib/locales/ja/emotion.yml +49 -0
  531. data/lib/locales/ja/food.yml +41 -0
  532. data/lib/locales/ja/football.yml +115 -0
  533. data/lib/locales/ja/gender.yml +6 -0
  534. data/lib/locales/ja/lorem.yml +1020 -0
  535. data/lib/locales/ja/name.yml +213 -0
  536. data/lib/locales/ja/naruto.yml +230 -0
  537. data/lib/locales/ja/overwatch.yml +37 -0
  538. data/lib/locales/ja/phone_number.yml +13 -0
  539. data/lib/locales/ja/pokemon.yml +441 -0
  540. data/lib/locales/ja/relationship.yml +33 -0
  541. data/lib/locales/ja/restaurant.yml +82 -0
  542. data/lib/locales/ja/space.yml +23 -0
  543. data/lib/locales/ja/sport.yml +130 -0
  544. data/lib/locales/ja/studio_ghibli.yml +112 -0
  545. data/lib/locales/ja/subscription.yml +50 -0
  546. data/lib/locales/ja/super_mario.yml +73 -0
  547. data/lib/locales/ja/super_smash_bros.yml +8 -0
  548. data/lib/locales/ja/touhou.yml +466 -0
  549. data/lib/locales/ja/university.yml +22 -0
  550. data/lib/locales/ja/zelda.yml +19 -0
  551. data/lib/locales/ko.yml +1450 -17
  552. data/lib/locales/lt.yml +315 -0
  553. data/lib/locales/lv.yml +1221 -27
  554. data/lib/locales/mi-NZ.yml +283 -0
  555. data/lib/locales/nb-NO.yml +518 -27
  556. data/lib/locales/nl.yml +33514 -55
  557. data/lib/locales/pl.yml +4008 -38
  558. data/lib/locales/pt-BR.yml +8210 -641
  559. data/lib/locales/pt.yml +846 -45
  560. data/lib/locales/ru.yml +1355 -30
  561. data/lib/locales/sk.yml +4416 -41
  562. data/lib/locales/sv.yml +731 -41
  563. data/lib/locales/th.yml +380 -0
  564. data/lib/locales/tr.yml +77 -19
  565. data/lib/locales/uk.yml +1814 -48
  566. data/lib/locales/vi.yml +392 -48
  567. data/lib/locales/zh-CN/bank.yml +17 -0
  568. data/lib/locales/zh-CN.yml +541 -19
  569. data/lib/locales/zh-TW.yml +1031 -15
  570. metadata +230 -125
  571. data/History.md +0 -176
  572. data/lib/faker/books/book.rb +0 -25
  573. data/lib/faker/default/bossa_nova.rb +0 -15
  574. data/lib/faker/default/fillmurray.rb +0 -15
  575. data/lib/faker/default/internet.rb +0 -207
  576. data/lib/faker/default/lorem_pixel.rb +0 -38
  577. data/lib/faker/default/twitter.rb +0 -174
  578. data/lib/faker/games/game.rb +0 -21
  579. data/lib/faker/movies/movie.rb +0 -11
  580. data/lib/faker/music/music.rb +0 -47
  581. data/lib/faker/quotes/quote.rb +0 -32
  582. data/lib/locales/en/hobbit.yml +0 -19
  583. data/lib/locales/en/lord_of_the_rings.yml +0 -6
  584. data/lib/locales/ja.yml +0 -98
@@ -1,166 +1,609 @@
1
1
  en:
2
2
  faker:
3
3
  quote:
4
- famous_last_words: ["I don't know.", "No comment.", "Van Halen!", "Is it not meningitis?", "I love you too, honey. Good luck with your show.", "Am I dying, or is this my birthday?", "I want your bunk!", "I went the distance.", "Goodnight, my darlings, I'll see you tomorrow.", "I am confound.", "That was the best ice-cream soda I ever tasted.", "All my possessions for a moment of time.", "Hurrah for anarchy! This is the happiest moment of my life.", "It's stopped.", "You can get anything you want at Alice's restaurant.", "Yes, it's tough, but not as tough as doing comedy.", "That's good. Go on, read some more.", "I love you.", "One! Two! Three!", "Do you want me to come with you?", "Does nobody understand?", "I wish I could go with you.", "I'll be in Hell before you start breakfast! Let her rip!", "Tape Seinfeld for me.", "Strike the tent.", "I don't think they even heard me.", "I regret that I should leave this world without again beholding him.", "Well, this is certainly a pleasant surprise.", "Okay, I won't.", "I want to go home.", "Happy.", "I forgot something.", "My vocabulary did this to me. Your love will let you go on…"]
5
- matz: [
6
- "I believe consistency and orthogonality are tools of design, not the primary goal in design.",
7
- "From the viewpoint of what you can do, therefore, languages do differ - but the differences are limited. For example, Python and Ruby provide almost the same power to the programmer.",
8
- "The orthogonal features, when combined, can explode into complexity.",
9
- "I didn't work hard to make Ruby perfect for everyone, because you feel differently from me. No language can be perfect for everyone. I tried to make Ruby perfect for me, but maybe it's not perfect for you. The perfect language for Guido van Rossum is probably Python.",
10
- "Because of the Turing completeness theory, everything one Turing-complete language can do can theoretically be done by another Turing-complete language, but at a different cost. You can do everything in assembler, but no one wants to program in assembler anymore.",
11
- "Ruby inherited the Perl philosophy of having more than one way to do the same thing. I inherited that philosophy from Larry Wall, who is my hero actually. I want to make Ruby users free. I want to give them the freedom to choose.",
12
- "You want to enjoy life, don't you? If you get your job done quickly and your job is fun, that's good isn't it? That's the purpose of life, partly. Your life is better.",
13
- "People are different. People choose different criteria. But if there is a better way among many alternatives, I want to encourage that way by making it comfortable. So that's what I've tried to do.",
14
- "In our daily lives as programmers, we process text strings a lot. So I tried to work hard on text processing, namely the string class and regular expressions. Regular expressions are built into the language and are very tuned up for use.",
15
- "Most of the tasks we do are for humans. For example, a tax calculation is counting numbers so the government can pull money out from my wallet, but government consists of humans.",
16
- "Actually, I didn't make the claim that Ruby follows the principle of least surprise. Someone felt the design of Ruby follows that philosophy, so they started saying that. I didn't bring that up, actually.",
17
- "Smart people underestimate the ordinarity of ordinary people.",
18
- "Language designers want to design the perfect language. They want to be able to say, 'My language is perfect. It can do everything.' But it's just plain impossible to design a perfect language, because there are two ways to look at a language. One way is by looking at what can be done with that language. The other is by looking at how we feel using that language-how we feel while programming.",
19
- "I believe that the purpose of life is, at least in part, to be happy. Based on this belief, Ruby is designed to make programming not only easy but also fun. It allows you to concentrate on the creative side of programming, with less stress.",
20
- "Most programs are not write-once. They are reworked and rewritten again and again in their lived. Bugs must be debugged. Changing requirements and the need for increased functionality mean the program itself may be modified on an ongoing basis. During this process, human beings must be able to read and understand the original code. It is therefore more important by far for humans to be able to understand the program than it is for the computer.",
21
- "I hope to see Ruby help every programmer in the world to be productive, and to enjoy programming, and to be happy. That is the primary purpose of Ruby language.",
22
- "Man is driven to create; I know I really love to create things. And while I'm not good at painting, drawing, or music, I can write software.",
23
- "It is not the responsibility of the language to force good looking code, but the language should make good looking code possible.",
24
- "Plant a memory, plant a tree, do it today for tomorrow.",
25
- "Imagine you are writing an email. You are in front of the computer. You are operating the computer, clicking a mouse and typing on a keyboard, but the message will be sent to a human over the internet. So you are working before the computer, but with a human behind the computer.",
26
- "Often people, especially computer engineers, focus on the machines. But in fact we need to focus on humans, on how humans care about doing programming or operating the application of the machines.",
27
- "Everyone has an individual background. Someone may come from Python, someone else may come from Perl, and they may be surprised by different aspects of the language. Then they come up to me and say, 'I was surprised by this feature of the language, so therefore Ruby violates the principle of least surprise.' Wait. Wait. The principle of least surprise is not for you only.",
28
- "Sometimes people jot down pseudo-code on paper. If that pseudo-code runs directly on their computers, its best, isn't it? Ruby tries to be like that, like pseudo-code that runs. Python people say that too."
29
- ]
30
- most_interesting_man_in_the_world: [
31
- "His only regret is not knowing what regret feels like.",
32
- "When in Rome, they do as HE does",
33
- "He is considered a national treasure in countries he’s never visited.",
34
- "He has won the lifetime achievement award… twice",
35
- "He can kill two stones with one bird",
36
- "When a tree falls in a forest and no one is there, he hears it",
37
- "His lovemaking has been detected by a seismograph",
38
- "He once had an awkward moment, just to see how it feels",
39
- "He is fluent in all languages, including three that he only speaks",
40
- "If opportunity knocks, and he’s not at home, opportunity waits",
41
- "Mosquitoes refuse to bite him purely out of respect",
42
- "He has taught old dogs a variety of new tricks",
43
- "In museums, he is allowed to touch the art",
44
- "His business card simply says I’ll Call You”",
45
- "If he was to pat you on the back, you would list it on your resume.",
46
- "Freemasons strive to learn HIS secret handshake.",
47
- "He played a game of Russian Roulette with a fully loaded magnum, and won",
48
- "He is the life of parties that he has never attended",
49
- "He once won the Tour-de-France, but was disqualified for riding a unicycle",
50
- "His organ donation card also lists his beard",
51
- "He is left-handed. And right-handed",
52
- "Sharks have a week dedicated to him",
53
- "Presidents take his birthday off",
54
- "Time waits on no one, but him",
55
- "He never wears a watch because time is always on his side",
56
- "He taught Chuck Norris martial arts",
57
- "When he holds a lady’s purse, he looks manly",
58
- "He once won a staring contest with his own reflection",
59
- "When he meets the Pope, the Pope kisses his ring",
60
- "His beard alone has experienced more than a lesser man’s entire body",
61
- "Superman has pijamas with his logo",
62
- "If he were to punch you in the face you would have to fight off a strong urge to thank him",
63
- "He once went to the psychic, to warn her",
64
- "His feet don’t get blisters, but his shoes do",
65
- "When he drives a car off the lot, its price increases in value",
66
- "On every continent in the world, there is a sandwich named after him.",
67
- "Once a rattlesnake bit him, after 5 days of excruciating pain, the snake finally died",
68
- "His passport requires no photograph",
69
- "He gave his father “the talk”",
70
- "He can speak Russian… in French",
71
- "His signature won a Pulitzer",
72
- "Once while sailing around the world, he discovered a short cut",
73
- "He once got pulled over for speeding, and the cop got the ticket",
74
- "The dark is afraid of him",
75
- "If he were to visit the dark side of the moon, it wouldn’t be dark",
76
- "He once brought a knife to a gunfight… just to even the odds",
77
- "He bowls overhand",
78
- "A bird in his hand is worth three in the bush",
79
- "He once started a fire using only dental floss and water",
80
- "Roses stop to smell him",
81
- "Bigfoot tries to get pictures of him",
82
- "He once turned a vampire into a vegetarian",
83
- "Batman watches Saturday morning cartoons about him",
84
- "When he was young he once sent his parents to his room",
85
- "His blood smells like cologne",
86
- "When he goes to Spain, he chases the bulls",
87
- "His shadow has been on the ‘best dressed’ list twice",
88
- "Two countries went to war to dispute HIS nationality",
89
- "His pillow is cool on BOTH sides",
90
- "The Nobel Academy was awarded a prize from HIM",
91
- "His mother has a tattoo that says “Son”",
92
- "His shirts never wrinkle",
93
- "Respected archaeologists fight over his discarded apple cores",
94
- "His garden maze is responsible for more missing persons than the bermuda triangle",
95
- "He doesn’t believe in using oven mitts, nor potholders",
96
- "His cereal never gets soggy. It sits there, staying crispy, just for him",
97
- "The police often question him, just because they find him interesting",
98
- "He has never walked into a spider web",
99
- "The star on his Christmas tree is tracked by NASA",
100
- "He’s never lost a game of chance",
101
- "He once caught the Loch Ness Monster….with a cane pole, but threw it back",
102
- "His wallet is woven out of chupacabra leather",
103
- "Cars look both ways for him, before driving down a street",
104
- "His 5 de Mayo party starts on the 8th of March",
105
- "His tears can cure cancer, too bad he never cries",
106
- "His friends call him by his name, his enemies don’t call him anything because they are all dead",
107
- "No less than 25 Mexican folk songs have been written about his beard",
108
- "He once taught a german shepherd how to bark in Spanish",
109
- "The Holy Grail is looking for him",
110
- "Werewolves are jealous of his beard",
111
- "Once he ran a marathon because it was “on the way”",
112
- "He was on a recent archaeological dig and came across prehistoric foot prints that lead out of Africa into all parts of the world. On close inspection, it turned out that the prints were his",
113
- "Whatever side of the tracks he’s currently on is the right side, even if he crosses the tracks he’ll still be on the right side",
114
- "The circus ran away to join him",
115
- "He once made a weeping willow laugh",
116
- "He is allowed to talk about the fight club",
117
- "His sweat is the cure for the common cold",
118
- "While swimming off the coast of Australia, he once scratched the underbelly of the Great White with his right hand",
119
- "If he were to say something costs an arm and a leg, it would",
120
- "He never says something tastes like chicken.. not even chicken",
121
- "Panhandlers give him money",
122
- "He once tried to acquire a cold just to see what it felt like, but it didn’t take",
123
- "His ten gallon hat holds twenty gallons",
124
- "He once won the world series of poker using UNO cards",
125
- "He has inside jokes with people he’s never met.",
126
- "Bear hugs are what he gives bears",
127
- "Even his tree houses have fully finished basements",
128
- "He has never waited 15 minutes after finishing a meal before returning to the pool",
129
- "He lives vicariously through himself"
130
- ]
131
- robin: ["Holy Agility", "Holy Almost", "Holy Alphabet", "Holy Alps", "Holy Alter Ego", "Holy Anagram", "Holy Apparition", "Holy Armadillo", "Holy Armour Plate", "Holy Ashtray", "Holy Asp", "Holy Astronomy", "Holy Astringent Plum-like Fruit", "Holy Audubon", "Holy Backfire", "Holy Ball And Chain", "Holy Bank Balance", "Holy Bankruptcy", "Holy Banks", "Holy Bargain Basements", "Holy Barracuda", "Holy Bat Logic", "Holy Bat Trap", "Holy Batman", "Holy Benedict Arnold", "Holy Bijou", "Holy Bikini", "Holy Bill Of Rights", "Holy Birthday Cake", "Holy Black Beard", "Holy Blackout", "Holy Blank Cartridge", "Holy Blizzard", "Holy Blonde Mackerel Ash", "Holy Bluebeard", "Holy Bouncing Boiler Plate", "Holy Bowler", "Holy Bullseye", "Holy Bunions", "Holy Caffeine", "Holy Camouflage", "Holy Captain Nemo", "Holy Caruso", "Holy Catastrophe", "Holy Cat(s)", "Holy Chicken Coop", "Holy Chilblains", "Holy Chocolate Eclair", "Holy Cinderella", "Holy Cinemascope", "Holy Cliche", "Holy Cliffhangers", "Holy Clockwork", "Holy Clockworks", "Holy Cofax You Mean", "Holy Coffin Nails", "Holy Cold Creeps", "Holy Complications", "Holy Conflagration", "Holy Contributing to the Delinquency of Minors", "Holy Corpuscles", "Holy Cosmos", "Holy Costume Party", "Holy Crack Up", "Holy Crickets", "Holy Crossfire", "Holy Crucial Moment", "Holy Cryptology", "Holy D'artagnan", "Holy Davy Jones", "Holy Detonator", "Holy Disappearing Act", "Holy Distortion", "Holy Diversionary Tactics", "Holy Dr. Jekyll and Mr. Hyde", "Holy Egg Shells", "Holy Encore", "Holy Endangered Species", "Holy Epigrams", "Holy Escape-hatch", "Holy Explosion", "Holy Fate-worse-than-death", "Holy Felony", "Holy Finishing-touches", "Holy Fireworks", "Holy Firing Squad", "Holy Fishbowl", "Holy Flight Plan", "Holy Flip-flop", "Holy Flood Gate", "Holy Floor Covering", "Holy Flypaper", "Holy Fly Trap", "Holy Fog", "Holy Forecast", "Holy Fork In The Road", "Holy Fourth Amendment", "Holy Fourth Of July", "Holy Frankenstein", "Holy Frankenstein It's Alive", "Holy Fratricide", "Holy Frogman", "Holy Fruit Salad", "Holy Frying Towels", "Holy Funny Bone", "Holy Gall", "Holy Gambles", "Holy Gemini", "Holy Geography", "Holy Ghost Writer", "Holy Giveaways", "Holy Glow Pot", "Holy Golden Gate", "Holy Graf Zeppelin", "Holy Grammar", "Holy Graveyards", "Holy Greed", "Holy Green Card", "Holy Greetings-cards", "Holy Guacamole", "Holy Guadalcanal", "Holy Gullibility", "Holy Gunpowder", "Holy Haberdashery", "Holy Hailstorm", "Holy Hairdo", "Holy Hallelujah", "Holy Halloween", "Holy Hallucination", "Holy Hamburger", "Holy Hamlet", "Holy Hamstrings", "Holy Happenstance", "Holy Hardest Metal In The World", "Holy Harem", "Holy Harshin", "Holy Haziness", "Holy Headache", "Holy Headline", "Holy Heart Failure", "Holy Heartbreak", "Holy Heidelberg", "Holy Helmets", "Holy Helplessness", "Holy Here We Go Again", "Holy Hi-fi", "Holy Hieroglyphic", "Holy High-wire", "Holy Hijack", "Holy Hijackers", "Holy History", "Holy Hoaxes", "Holy Hole In A Donut", "Holy Hollywood", "Holy Holocaust", "Holy Homecoming", "Holy Homework", "Holy Homicide", "Holy Hoodwink", "Holy Hoof Beats", "Holy Hors D'Oeuvre", "Holy Horseshoes", "Holy Hostage", "Holy Hot Foot", "Holy Houdini", "Holy Human Collectors Item", "Holy Human Pearls", "Holy Human Pressure Cookers", "Holy Human Surfboards", "Holy Hunting Horn", "Holy Hurricane", "Holy Hutzpa", "Holy Hydraulics", "Holy Hypnotism", "Holy Hypodermics", "Holy Ice Picks", "Holy Ice Skates", "Holy Iceberg", "Holy Impossibility", "Holy Impregnability", "Holy Incantation", "Holy Inquisition", "Holy Interplanetary Yardstick", "Holy Interruptions", "Holy Iodine", "Holy IT and T", "Holy Jack In The Box", "Holy Jackpot", "Holy Jail Break", "Holy Jaw Breaker", "Holy Jelly Molds", "Holy Jet Set", "Holy Jigsaw Puzzles", "Holy Jitter Bugs", "Holy Joe", "Holy Journey To The Center Of The Earth", "Holy Jumble", "Holy Jumpin' Jiminy", "Holy Karats", "Holy Key Hole", "Holy Key Ring", "Holy Kilowatts", "Holy Kindergarten", "Holy Knit One Purl Two", "Holy Knock Out Drops", "Holy Known Unknown Flying Objects", "Holy Kofax", "Holy Las Vegas", "Holy Leopard", "Holy Levitation", "Holy Liftoff", "Holy Living End", "Holy Lodestone", "Holy Long John Silver", "Holy Looking Glass", "Holy Love Birds", "Holy Luther Burbank", "Holy Madness", "Holy Magic Lantern", "Holy Magician", "Holy Main Springs", "Holy Marathon", "Holy Mashed Potatoes", "Holy Masquerade", "Holy Matador", "Holy Mechanical Armies", "Holy Memory Bank", "Holy Merlin Magician", "Holy Mermaid", "Holy Merry Go Around", "Holy Mesmerism", "Holy Metronome", "Holy Miracles", "Holy Miscast", "Holy Missing Relatives", "Holy Molars", "Holy Mole Hill", "Holy Mucilage", "Holy Multitudes", "Holy Murder", "Holy Mush", "Holy Naive", "Holy New Year's Eve", "Holy Nick Of Time", "Holy Nightmare", "Holy Non Sequiturs", "Holy Oleo", "Holy Olfactory", "Holy One Track Bat Computer Mind", "Holy Oversight", "Holy Oxygen", "Holy Paderewski", "Holy Paraffin", "Holy Perfect Pitch", "Holy Pianola", "Holy Pin Cushions", "Holy Polar Front", "Holy Polar Ice Sheet", "Holy Polaris", "Holy Popcorn", "Holy Potluck", "Holy Pressure Cooker", "Holy Priceless Collection of Etruscan Snoods", "Holy Pseudonym", "Holy Purple Cannibals", "Holy Puzzlers", "Holy Rainbow", "Holy Rats In A Trap", "Holy Ravioli", "Holy Razors Edge", "Holy Recompense", "Holy Red Herring", "Holy Red Snapper", "Holy Reincarnation", "Holy Relief", "Holy Remote Control Robot", "Holy Reshevsky", "Holy Return From Oblivion", "Holy Reverse Polarity", "Holy Rheostat", "Holy Ricochet", "Holy Rip Van Winkle", "Holy Rising Hemlines", "Holy Roadblocks", "Holy Robert Louis Stevenson", "Holy Rock Garden", "Holy Rocking Chair", "Holy Romeo And Juliet", "Holy Rudder", "Holy Safari", "Holy Sarcophagus", "Holy Sardine", "Holy Scalding", "Holy Schizophrenia", "Holy Sedatives", "Holy Self Service", "Holy Semantics", "Holy Serpentine", "Holy Sewer Pipe", "Holy Shamrocks", "Holy Sherlock Holmes", "Holy Show-Ups", "Holy Showcase", "Holy Shrinkage", "Holy Shucks", "Holy Skull Tap", "Holy Sky Rocket", "Holy Slipped Disc", "Holy Smoke", "Holy Smokes", "Holy Smokestack", "Holy Snowball", "Holy Sonic Booms", "Holy Special Delivery", "Holy Spider Webs", "Holy Split Seconds", "Holy Squirrel Cage", "Holy Stalactites", "Holy Stampede", "Holy Standstills", "Holy Steam Valve", "Holy Stew Pot", "Holy Stomach Aches", "Holy Stratosphere", "Holy Stuffing", "Holy Subliminal", "Holy Sudden Incapacitation", "Holy Sundials", "Holy Surprise Party", "Holy Switch A Roo", "Holy Taj Mahal", "Holy Tartars", "Holy Taxation", "Holy Taxidermy", "Holy Tee Shot", "Holy Ten Toes", "Holy Terminology", "Holy Time Bomb", "Holy Tintinnabulation", "Holy Tipoffs", "Holy Titanic", "Holy Tome", "Holy Toreador", "Holy Trampoline", "Holy Transistors", "Holy Travel Agent", "Holy Trickery", "Holy Triple Feature", "Holy Trolls And Goblins", "Holy Tuxedo", "Holy Uncanny Photographic Mental Processes", "Holy Understatements", "Holy Underwritten Metropolis", "Holy Unlikelihood", "Holy Unrefillable Prescriptions", "Holy Vat", "Holy Venezuela", "Holy Vertebrae", "Holy Voltage", "Holy Waste Of Energy", "Holy Wayne Manor", "Holy Weaponry", "Holy Wedding Cake", "Holy Wernher von Braun", "Holy Whiskers", "Holy Wigs", "Holy Zorro"]
132
- singular_siegler: [
133
- "Texas!",
134
- "Come on now",
135
- "Turd gone wrong",
136
- "I want my 5$ back",
137
- "I tell you what",
138
- "My buddy Harlen",
139
- "Goin' hog huntin'",
140
- "C'mon Naomi",
141
- "Might be DQ time",
142
- "That goddamn Datamate",
143
- "That damn gimble",
144
- "That Barbala couldn't fly his way out of a wet paper bag",
145
- "So I was walking Oscar",
146
- "How 'bout them Cowboys",
147
- "Always the last one to the party",
148
- "Standby",
149
- "No one tells me shit",
150
- "My boss gonna fire me",
151
- "That damn Bill Stull",
152
- "Like a red-headed stepchild",
153
- "Y'all never listen to me",
154
- "It's around here somewhere",
155
- "Reminds me of my old girlfriend Olga Goodntight",
156
- "Let me tell ya",
157
- "I got that scurvy",
158
- "Got depression, Smith and Wessen",
159
- "I'm washing my hands of it",
160
- "Yup",
161
- "Contact the tower",
162
- "That damn diabetes",
163
- "That's messed up",
164
- "I want my damn cart back"
165
- ]
166
- yoda: ["Use your feelings, Obi-Wan, and find him you will.", "Already know you that which you need.", "Adventure. Excitement. A Jedi craves not these things.", "At an end your rule is, and not short enough it was!", "Around the survivors a perimeter create.", "Soon will I rest, yes, forever sleep. Earned it I have. Twilight is upon me, soon night must fall.", "Not if anything to say about it I have", "Through the Force, things you will see. Other places. The future - the past. Old friends long gone.", "Ow, ow, OW! On my ear you are!", "The dark side clouds everything. Impossible to see the future is.", "Size matters not. Look at me. Judge me by my size, do you? Hmm? Hmm. And well you should not. For my ally is the Force, and a powerful ally it is. Life creates it, makes it grow. Its energy surrounds us and binds us. Luminous beings are we, not this crude matter. You must feel the Force around you; here, between you, me, the tree, the rock, everywhere, yes. Even between the land and the ship.", "Younglings, younglings gather ’round.", "Luminous beings are we - not this crude matter.", "Clear your mind must be, if you are to find the villains behind this plot.", "Always two there are, no more, no less. A master and an apprentice.", "Do. Or do not. There is no try.", "Much to learn you still have my old padawan. ... This is just the beginning!", "Good relations with the Wookiees, I have.", "Ready are you? What know you of ready? For eight hundred years have I trained Jedi. My own counsel will I keep on who is to be trained. A Jedi must have the deepest commitment, the most serious mind. This one a long time have I watched. All his life has he looked away - to the future, to the horizon. Never his mind on where he was. Hmm? What he was doing. Hmph. Adventure. Heh. Excitement. Heh. A Jedi craves not these things. You are reckless.", "Truly wonderful, the mind of a child is.", "Always pass on what you have learned.", "Once you start down the dark path, forever will it dominate your destiny, consume you it will.", "Mudhole? Slimy? My home this is!", "Yes, a Jedi’s strength flows from the Force. But beware of the dark side. Anger, fear, aggression; the dark side of the Force are they. Easily they flow, quick to join you in a fight. If once you start down the dark path, forever will it dominate your destiny, consume you it will, as it did Obi-Wan’s apprentice.", "Do not assume anything Obi-Wan. Clear your mind must be if you are to discover the real villains behind this plot.", "Death is a natural part of life. Rejoice for those around you who transform into the Force. Mourn them do not. Miss them do not. Attachment leads to jealously. The shadow of greed, that is.", "Like fire across the galaxy the Clone Wars spread. In league with the wicked Count Dooku, more and more planets slip. Against this threat, upon the Jedi Knights falls the duty to lead the newly formed army of the Republic. And as the heat of war grows, so, to, grows the prowess of one most gifted student of the Force.", "Hmm. In the end, cowards are those who follow the dark side.", "Strong is Vader. Mind what you have learned. Save you it can.", "Pain, suffering, death I feel. Something terrible has happened. Young Skywalker is in pain. Terrible pain", "Difficult to see. Always in motion is the future...", "You will find only what you bring in.", "Feel the force!", "Reckless he is. Matters are worse.", "That is why you fail.", "Your weapons, you will not need them.", "To answer power with power, the Jedi way this is not. In this war, a danger there is, of losing who we are."]
4
+ famous_last_words:
5
+ - I don't know.
6
+ - No comment.
7
+ - Van Halen!
8
+ - Is it not meningitis?
9
+ - I love you too, honey. Good luck with your show.
10
+ - Am I dying, or is this my birthday?
11
+ - I want your bunk!
12
+ - I went the distance.
13
+ - Goodnight, my darlings, I'll see you tomorrow.
14
+ - I am confound.
15
+ - That was the best ice-cream soda I ever tasted.
16
+ - All my possessions for a moment of time.
17
+ - Hurrah for anarchy! This is the happiest moment of my life.
18
+ - It's stopped.
19
+ - You can get anything you want at Alice's restaurant.
20
+ - Yes, it's tough, but not as tough as doing comedy.
21
+ - That's good. Go on, read some more.
22
+ - I love you.
23
+ - One! Two! Three!
24
+ - Do you want me to come with you?
25
+ - Does nobody understand?
26
+ - I wish I could go with you.
27
+ - I'll be in Hell before you start breakfast! Let her rip!
28
+ - Tape Seinfeld for me.
29
+ - Strike the tent.
30
+ - I don't think they even heard me.
31
+ - I regret that I should leave this world without again beholding him.
32
+ - Well, this is certainly a pleasant surprise.
33
+ - Okay, I won't.
34
+ - I want to go home.
35
+ - Happy.
36
+ - I forgot something.
37
+ - My vocabulary did this to me. Your love will let you go on…
38
+ matz:
39
+ - I believe consistency and orthogonality are tools of design, not the primary goal in design.
40
+ - From the viewpoint of what you can do, therefore, languages do differ - but the differences are limited. For example, Python and Ruby provide almost the same power to the programmer.
41
+ - The orthogonal features, when combined, can explode into complexity.
42
+ - I didn't work hard to make Ruby perfect for everyone, because you feel differently from me. No language can be perfect for everyone. I tried to make Ruby perfect for me, but maybe it's not perfect for you. The perfect language for Guido van Rossum is probably Python.
43
+ - Because of the Turing completeness theory, everything one Turing-complete language can do can theoretically be done by another Turing-complete language, but at a different cost. You can do everything in assembler, but no one wants to program in assembler anymore.
44
+ - Ruby inherited the Perl philosophy of having more than one way to do the same thing. I inherited that philosophy from Larry Wall, who is my hero actually. I want to make Ruby users free. I want to give them the freedom to choose.
45
+ - You want to enjoy life, don't you? If you get your job done quickly and your job is fun, that's good isn't it? That's the purpose of life, partly. Your life is better.
46
+ - People are different. People choose different criteria. But if there is a better way among many alternatives, I want to encourage that way by making it comfortable. So that's what I've tried to do.
47
+ - In our daily lives as programmers, we process text strings a lot. So I tried to work hard on text processing, namely the string class and regular expressions. Regular expressions are built into the language and are very tuned up for use.
48
+ - Most of the tasks we do are for humans. For example, a tax calculation is counting numbers so the government can pull money out from my wallet, but government consists of humans.
49
+ - Actually, I didn't make the claim that Ruby follows the principle of least surprise. Someone felt the design of Ruby follows that philosophy, so they started saying that. I didn't bring that up, actually.
50
+ - Smart people underestimate the ordinarity of ordinary people.
51
+ - Language designers want to design the perfect language. They want to be able to say, 'My language is perfect. It can do everything.' But it's just plain impossible to design a perfect language, because there are two ways to look at a language. One way is by looking at what can be done with that language. The other is by looking at how we feel using that language-how we feel while programming.
52
+ - I believe that the purpose of life is, at least in part, to be happy. Based on this belief, Ruby is designed to make programming not only easy but also fun. It allows you to concentrate on the creative side of programming, with less stress.
53
+ - Most programs are not write-once. They are reworked and rewritten again and again in their lived. Bugs must be debugged. Changing requirements and the need for increased functionality mean the program itself may be modified on an ongoing basis. During this process, human beings must be able to read and understand the original code. It is therefore more important by far for humans to be able to understand the program than it is for the computer.
54
+ - I hope to see Ruby help every programmer in the world to be productive, and to enjoy programming, and to be happy. That is the primary purpose of Ruby language.
55
+ - Man is driven to create; I know I really love to create things. And while I'm not good at painting, drawing, or music, I can write software.
56
+ - It is not the responsibility of the language to force good looking code, but the language should make good looking code possible.
57
+ - Plant a memory, plant a tree, do it today for tomorrow.
58
+ - Imagine you are writing an email. You are in front of the computer. You are operating the computer, clicking a mouse and typing on a keyboard, but the message will be sent to a human over the internet. So you are working before the computer, but with a human behind the computer.
59
+ - Often people, especially computer engineers, focus on the machines. But in fact we need to focus on humans, on how humans care about doing programming or operating the application of the machines.
60
+ - Everyone has an individual background. Someone may come from Python, someone else may come from Perl, and they may be surprised by different aspects of the language. Then they come up to me and say, 'I was surprised by this feature of the language, so therefore Ruby violates the principle of least surprise.' Wait. Wait. The principle of least surprise is not for you only.
61
+ - Sometimes people jot down pseudo-code on paper. If that pseudo-code runs directly on their computers, its best, isn't it? Ruby tries to be like that, like pseudo-code that runs. Python people say that too.
62
+ most_interesting_man_in_the_world:
63
+ - His only regret is not knowing what regret feels like.
64
+ - When in Rome, they do as HE does
65
+ - He is considered a national treasure in countries he’s never visited.
66
+ - He has won the lifetime achievement award… twice
67
+ - He can kill two stones with one bird
68
+ - When a tree falls in a forest and no one is there, he hears it
69
+ - His lovemaking has been detected by a seismograph
70
+ - He once had an awkward moment, just to see how it feels
71
+ - He is fluent in all languages, including three that he only speaks
72
+ - If opportunity knocks, and he’s not at home, opportunity waits
73
+ - Mosquitoes refuse to bite him purely out of respect
74
+ - He has taught old dogs a variety of new tricks
75
+ - In museums, he is allowed to touch the art
76
+ - His business card simply says ‘I’ll Call You”
77
+ - If he was to pat you on the back, you would list it on your resume.
78
+ - Freemasons strive to learn HIS secret handshake.
79
+ - He played a game of Russian Roulette with a fully loaded magnum, and won
80
+ - He is the life of parties that he has never attended
81
+ - He once won the Tour-de-France, but was disqualified for riding a unicycle
82
+ - His organ donation card also lists his beard
83
+ - He is left-handed. And right-handed
84
+ - Sharks have a week dedicated to him
85
+ - Presidents take his birthday off
86
+ - Time waits on no one, but him
87
+ - He never wears a watch because time is always on his side
88
+ - He taught Chuck Norris martial arts
89
+ - When he holds a lady’s purse, he looks manly
90
+ - He once won a staring contest with his own reflection
91
+ - When he meets the Pope, the Pope kisses his ring
92
+ - His beard alone has experienced more than a lesser man’s entire body
93
+ - Superman has pijamas with his logo
94
+ - If he were to punch you in the face you would have to fight off a strong urge to thank him
95
+ - He once went to the psychic, to warn her
96
+ - His feet don’t get blisters, but his shoes do
97
+ - When he drives a car off the lot, its price increases in value
98
+ - On every continent in the world, there is a sandwich named after him.
99
+ - Once a rattlesnake bit him, after 5 days of excruciating pain, the snake finally died
100
+ - His passport requires no photograph
101
+ - He gave his father “the talk”
102
+ - He can speak Russian… in French
103
+ - His signature won a Pulitzer
104
+ - Once while sailing around the world, he discovered a short cut
105
+ - He once got pulled over for speeding, and the cop got the ticket
106
+ - The dark is afraid of him
107
+ - If he were to visit the dark side of the moon, it wouldn’t be dark
108
+ - He once brought a knife to a gunfight… just to even the odds
109
+ - He bowls overhand
110
+ - A bird in his hand is worth three in the bush
111
+ - He once started a fire using only dental floss and water
112
+ - Roses stop to smell him
113
+ - Bigfoot tries to get pictures of him
114
+ - He once turned a vampire into a vegetarian
115
+ - Batman watches Saturday morning cartoons about him
116
+ - When he was young he once sent his parents to his room
117
+ - His blood smells like cologne
118
+ - When he goes to Spain, he chases the bulls
119
+ - His shadow has been on the ‘best dressed’ list twice
120
+ - Two countries went to war to dispute HIS nationality
121
+ - His pillow is cool on BOTH sides
122
+ - The Nobel Academy was awarded a prize from HIM
123
+ - His mother has a tattoo that says “Son”
124
+ - His shirts never wrinkle
125
+ - Respected archaeologists fight over his discarded apple cores
126
+ - His garden maze is responsible for more missing persons than the bermuda triangle
127
+ - He doesn’t believe in using oven mitts, nor potholders
128
+ - His cereal never gets soggy. It sits there, staying crispy, just for him
129
+ - The police often question him, just because they find him interesting
130
+ - He has never walked into a spider web
131
+ - The star on his Christmas tree is tracked by NASA
132
+ - He’s never lost a game of chance
133
+ - He once caught the Loch Ness Monster….with a cane pole, but threw it back
134
+ - His wallet is woven out of chupacabra leather
135
+ - Cars look both ways for him, before driving down a street
136
+ - His 5 de Mayo party starts on the 8th of March
137
+ - His tears can cure cancer, too bad he never cries
138
+ - His friends call him by his name, his enemies don’t call him anything because they are all dead
139
+ - No less than 25 Mexican folk songs have been written about his beard
140
+ - He once taught a german shepherd how to bark in Spanish
141
+ - The Holy Grail is looking for him
142
+ - Werewolves are jealous of his beard
143
+ - Once he ran a marathon because it was “on the way”
144
+ - He was on a recent archaeological dig and came across prehistoric foot prints that lead out of Africa into all parts of the world. On close inspection, it turned out that the prints were his
145
+ - Whatever side of the tracks he’s currently on is the right side, even if he crosses the tracks he’ll still be on the right side
146
+ - The circus ran away to join him
147
+ - He once made a weeping willow laugh
148
+ - He is allowed to talk about the fight club
149
+ - His sweat is the cure for the common cold
150
+ - While swimming off the coast of Australia, he once scratched the underbelly of the Great White with his right hand
151
+ - If he were to say something costs an arm and a leg, it would
152
+ - He never says something tastes like chicken.. not even chicken
153
+ - Panhandlers give him money
154
+ - He once tried to acquire a cold just to see what it felt like, but it didn’t take
155
+ - His ten gallon hat holds twenty gallons
156
+ - He once won the world series of poker using UNO cards
157
+ - He has inside jokes with people he’s never met.
158
+ - Bear hugs are what he gives bears
159
+ - Even his tree houses have fully finished basements
160
+ - He has never waited 15 minutes after finishing a meal before returning to the pool
161
+ - He lives vicariously through himself
162
+ robin:
163
+ - Holy Agility
164
+ - Holy Almost
165
+ - Holy Alphabet
166
+ - Holy Alps
167
+ - Holy Alter Ego
168
+ - Holy Anagram
169
+ - Holy Apparition
170
+ - Holy Armadillo
171
+ - Holy Armour Plate
172
+ - Holy Ashtray
173
+ - Holy Asp
174
+ - Holy Astronomy
175
+ - Holy Astringent Plum-like Fruit
176
+ - Holy Audubon
177
+ - Holy Backfire
178
+ - Holy Ball And Chain
179
+ - Holy Bank Balance
180
+ - Holy Bankruptcy
181
+ - Holy Banks
182
+ - Holy Bargain Basements
183
+ - Holy Barracuda
184
+ - Holy Bat Logic
185
+ - Holy Bat Trap
186
+ - Holy Batman
187
+ - Holy Benedict Arnold
188
+ - Holy Bijou
189
+ - Holy Bikini
190
+ - Holy Bill Of Rights
191
+ - Holy Birthday Cake
192
+ - Holy Black Beard
193
+ - Holy Blackout
194
+ - Holy Blank Cartridge
195
+ - Holy Blizzard
196
+ - Holy Blonde Mackerel Ash
197
+ - Holy Bluebeard
198
+ - Holy Bouncing Boiler Plate
199
+ - Holy Bowler
200
+ - Holy Bullseye
201
+ - Holy Bunions
202
+ - Holy Caffeine
203
+ - Holy Camouflage
204
+ - Holy Captain Nemo
205
+ - Holy Caruso
206
+ - Holy Catastrophe
207
+ - Holy Cat(s)
208
+ - Holy Chicken Coop
209
+ - Holy Chilblains
210
+ - Holy Chocolate Eclair
211
+ - Holy Cinderella
212
+ - Holy Cinemascope
213
+ - Holy Cliche
214
+ - Holy Cliffhangers
215
+ - Holy Clockwork
216
+ - Holy Clockworks
217
+ - Holy Cofax You Mean
218
+ - Holy Coffin Nails
219
+ - Holy Cold Creeps
220
+ - Holy Complications
221
+ - Holy Conflagration
222
+ - Holy Contributing to the Delinquency of Minors
223
+ - Holy Corpuscles
224
+ - Holy Cosmos
225
+ - Holy Costume Party
226
+ - Holy Crack Up
227
+ - Holy Crickets
228
+ - Holy Crossfire
229
+ - Holy Crucial Moment
230
+ - Holy Cryptology
231
+ - Holy D'artagnan
232
+ - Holy Davy Jones
233
+ - Holy Detonator
234
+ - Holy Disappearing Act
235
+ - Holy Distortion
236
+ - Holy Diversionary Tactics
237
+ - Holy Dr. Jekyll and Mr. Hyde
238
+ - Holy Egg Shells
239
+ - Holy Encore
240
+ - Holy Endangered Species
241
+ - Holy Epigrams
242
+ - Holy Escape-hatch
243
+ - Holy Explosion
244
+ - Holy Fate-worse-than-death
245
+ - Holy Felony
246
+ - Holy Finishing-touches
247
+ - Holy Fireworks
248
+ - Holy Firing Squad
249
+ - Holy Fishbowl
250
+ - Holy Flight Plan
251
+ - Holy Flip-flop
252
+ - Holy Flood Gate
253
+ - Holy Floor Covering
254
+ - Holy Flypaper
255
+ - Holy Fly Trap
256
+ - Holy Fog
257
+ - Holy Forecast
258
+ - Holy Fork In The Road
259
+ - Holy Fourth Amendment
260
+ - Holy Fourth Of July
261
+ - Holy Frankenstein
262
+ - Holy Frankenstein It's Alive
263
+ - Holy Fratricide
264
+ - Holy Frogman
265
+ - Holy Fruit Salad
266
+ - Holy Frying Towels
267
+ - Holy Funny Bone
268
+ - Holy Gall
269
+ - Holy Gambles
270
+ - Holy Gemini
271
+ - Holy Geography
272
+ - Holy Ghost Writer
273
+ - Holy Giveaways
274
+ - Holy Glow Pot
275
+ - Holy Golden Gate
276
+ - Holy Graf Zeppelin
277
+ - Holy Grammar
278
+ - Holy Graveyards
279
+ - Holy Greed
280
+ - Holy Green Card
281
+ - Holy Greetings-cards
282
+ - Holy Guacamole
283
+ - Holy Guadalcanal
284
+ - Holy Gullibility
285
+ - Holy Gunpowder
286
+ - Holy Haberdashery
287
+ - Holy Hailstorm
288
+ - Holy Hairdo
289
+ - Holy Hallelujah
290
+ - Holy Halloween
291
+ - Holy Hallucination
292
+ - Holy Hamburger
293
+ - Holy Hamlet
294
+ - Holy Hamstrings
295
+ - Holy Happenstance
296
+ - Holy Hardest Metal In The World
297
+ - Holy Harem
298
+ - Holy Harshin
299
+ - Holy Haziness
300
+ - Holy Headache
301
+ - Holy Headline
302
+ - Holy Heart Failure
303
+ - Holy Heartbreak
304
+ - Holy Heidelberg
305
+ - Holy Helmets
306
+ - Holy Helplessness
307
+ - Holy Here We Go Again
308
+ - Holy Hi-fi
309
+ - Holy Hieroglyphic
310
+ - Holy High-wire
311
+ - Holy Hijack
312
+ - Holy Hijackers
313
+ - Holy History
314
+ - Holy Hoaxes
315
+ - Holy Hole In A Donut
316
+ - Holy Hollywood
317
+ - Holy Holocaust
318
+ - Holy Homecoming
319
+ - Holy Homework
320
+ - Holy Homicide
321
+ - Holy Hoodwink
322
+ - Holy Hoof Beats
323
+ - Holy Hors D'Oeuvre
324
+ - Holy Horseshoes
325
+ - Holy Hostage
326
+ - Holy Hot Foot
327
+ - Holy Houdini
328
+ - Holy Human Collectors Item
329
+ - Holy Human Pearls
330
+ - Holy Human Pressure Cookers
331
+ - Holy Human Surfboards
332
+ - Holy Hunting Horn
333
+ - Holy Hurricane
334
+ - Holy Hutzpa
335
+ - Holy Hydraulics
336
+ - Holy Hypnotism
337
+ - Holy Hypodermics
338
+ - Holy Ice Picks
339
+ - Holy Ice Skates
340
+ - Holy Iceberg
341
+ - Holy Impossibility
342
+ - Holy Impregnability
343
+ - Holy Incantation
344
+ - Holy Inquisition
345
+ - Holy Interplanetary Yardstick
346
+ - Holy Interruptions
347
+ - Holy Iodine
348
+ - Holy IT and T
349
+ - Holy Jack In The Box
350
+ - Holy Jackpot
351
+ - Holy Jail Break
352
+ - Holy Jaw Breaker
353
+ - Holy Jelly Molds
354
+ - Holy Jet Set
355
+ - Holy Jigsaw Puzzles
356
+ - Holy Jitter Bugs
357
+ - Holy Joe
358
+ - Holy Journey To The Center Of The Earth
359
+ - Holy Jumble
360
+ - Holy Jumpin' Jiminy
361
+ - Holy Karats
362
+ - Holy Key Hole
363
+ - Holy Key Ring
364
+ - Holy Kilowatts
365
+ - Holy Kindergarten
366
+ - Holy Knit One Purl Two
367
+ - Holy Knock Out Drops
368
+ - Holy Known Unknown Flying Objects
369
+ - Holy Kofax
370
+ - Holy Las Vegas
371
+ - Holy Leopard
372
+ - Holy Levitation
373
+ - Holy Liftoff
374
+ - Holy Living End
375
+ - Holy Lodestone
376
+ - Holy Long John Silver
377
+ - Holy Looking Glass
378
+ - Holy Love Birds
379
+ - Holy Luther Burbank
380
+ - Holy Madness
381
+ - Holy Magic Lantern
382
+ - Holy Magician
383
+ - Holy Main Springs
384
+ - Holy Marathon
385
+ - Holy Mashed Potatoes
386
+ - Holy Masquerade
387
+ - Holy Matador
388
+ - Holy Mechanical Armies
389
+ - Holy Memory Bank
390
+ - Holy Merlin Magician
391
+ - Holy Mermaid
392
+ - Holy Merry Go Around
393
+ - Holy Mesmerism
394
+ - Holy Metronome
395
+ - Holy Miracles
396
+ - Holy Miscast
397
+ - Holy Missing Relatives
398
+ - Holy Molars
399
+ - Holy Mole Hill
400
+ - Holy Mucilage
401
+ - Holy Multitudes
402
+ - Holy Murder
403
+ - Holy Mush
404
+ - Holy Naive
405
+ - Holy New Year's Eve
406
+ - Holy Nick Of Time
407
+ - Holy Nightmare
408
+ - Holy Non Sequiturs
409
+ - Holy Oleo
410
+ - Holy Olfactory
411
+ - Holy One Track Bat Computer Mind
412
+ - Holy Oversight
413
+ - Holy Oxygen
414
+ - Holy Paderewski
415
+ - Holy Paraffin
416
+ - Holy Perfect Pitch
417
+ - Holy Pianola
418
+ - Holy Pin Cushions
419
+ - Holy Polar Front
420
+ - Holy Polar Ice Sheet
421
+ - Holy Polaris
422
+ - Holy Popcorn
423
+ - Holy Potluck
424
+ - Holy Pressure Cooker
425
+ - Holy Priceless Collection of Etruscan Snoods
426
+ - Holy Pseudonym
427
+ - Holy Purple Cannibals
428
+ - Holy Puzzlers
429
+ - Holy Rainbow
430
+ - Holy Rats In A Trap
431
+ - Holy Ravioli
432
+ - Holy Razors Edge
433
+ - Holy Recompense
434
+ - Holy Red Herring
435
+ - Holy Red Snapper
436
+ - Holy Reincarnation
437
+ - Holy Relief
438
+ - Holy Remote Control Robot
439
+ - Holy Reshevsky
440
+ - Holy Return From Oblivion
441
+ - Holy Reverse Polarity
442
+ - Holy Rheostat
443
+ - Holy Ricochet
444
+ - Holy Rip Van Winkle
445
+ - Holy Rising Hemlines
446
+ - Holy Roadblocks
447
+ - Holy Robert Louis Stevenson
448
+ - Holy Rock Garden
449
+ - Holy Rocking Chair
450
+ - Holy Romeo And Juliet
451
+ - Holy Rudder
452
+ - Holy Safari
453
+ - Holy Sarcophagus
454
+ - Holy Sardine
455
+ - Holy Scalding
456
+ - Holy Schizophrenia
457
+ - Holy Sedatives
458
+ - Holy Self Service
459
+ - Holy Semantics
460
+ - Holy Serpentine
461
+ - Holy Sewer Pipe
462
+ - Holy Shamrocks
463
+ - Holy Sherlock Holmes
464
+ - Holy Show-Ups
465
+ - Holy Showcase
466
+ - Holy Shrinkage
467
+ - Holy Shucks
468
+ - Holy Skull Tap
469
+ - Holy Sky Rocket
470
+ - Holy Slipped Disc
471
+ - Holy Smoke
472
+ - Holy Smokes
473
+ - Holy Smokestack
474
+ - Holy Snowball
475
+ - Holy Sonic Booms
476
+ - Holy Special Delivery
477
+ - Holy Spider Webs
478
+ - Holy Split Seconds
479
+ - Holy Squirrel Cage
480
+ - Holy Stalactites
481
+ - Holy Stampede
482
+ - Holy Standstills
483
+ - Holy Steam Valve
484
+ - Holy Stew Pot
485
+ - Holy Stomach Aches
486
+ - Holy Stratosphere
487
+ - Holy Stuffing
488
+ - Holy Subliminal
489
+ - Holy Sudden Incapacitation
490
+ - Holy Sundials
491
+ - Holy Surprise Party
492
+ - Holy Switch A Roo
493
+ - Holy Taj Mahal
494
+ - Holy Tartars
495
+ - Holy Taxation
496
+ - Holy Taxidermy
497
+ - Holy Tee Shot
498
+ - Holy Ten Toes
499
+ - Holy Terminology
500
+ - Holy Time Bomb
501
+ - Holy Tintinnabulation
502
+ - Holy Tipoffs
503
+ - Holy Titanic
504
+ - Holy Tome
505
+ - Holy Toreador
506
+ - Holy Trampoline
507
+ - Holy Transistors
508
+ - Holy Travel Agent
509
+ - Holy Trickery
510
+ - Holy Triple Feature
511
+ - Holy Trolls And Goblins
512
+ - Holy Tuxedo
513
+ - Holy Uncanny Photographic Mental Processes
514
+ - Holy Understatements
515
+ - Holy Underwritten Metropolis
516
+ - Holy Unlikelihood
517
+ - Holy Unrefillable Prescriptions
518
+ - Holy Vat
519
+ - Holy Venezuela
520
+ - Holy Vertebrae
521
+ - Holy Voltage
522
+ - Holy Waste Of Energy
523
+ - Holy Wayne Manor
524
+ - Holy Weaponry
525
+ - Holy Wedding Cake
526
+ - Holy Wernher von Braun
527
+ - Holy Whiskers
528
+ - Holy Wigs
529
+ - Holy Zorro
530
+ singular_siegler:
531
+ - Texas!
532
+ - Come on now
533
+ - Turd gone wrong
534
+ - I want my 5$ back
535
+ - I tell you what
536
+ - My buddy Harlen
537
+ - Goin' hog huntin'
538
+ - C'mon Naomi
539
+ - Might be DQ time
540
+ - That goddamn Datamate
541
+ - That damn gimble
542
+ - That Barbala couldn't fly his way out of a wet paper bag
543
+ - So I was walking Oscar
544
+ - How 'bout them Cowboys
545
+ - Always the last one to the party
546
+ - Standby
547
+ - No one tells me shit
548
+ - My boss gonna fire me
549
+ - That damn Bill Stull
550
+ - Like a red-headed stepchild
551
+ - Y'all never listen to me
552
+ - It's around here somewhere
553
+ - Reminds me of my old girlfriend Olga Goodntight
554
+ - Let me tell ya
555
+ - I got that scurvy
556
+ - Got depression, Smith and Wessen
557
+ - I'm washing my hands of it
558
+ - Yup
559
+ - Contact the tower
560
+ - That damn diabetes
561
+ - That's messed up
562
+ - I want my damn cart back
563
+ yoda:
564
+ - Use your feelings, Obi-Wan, and find him you will.
565
+ - Already know you that which you need.
566
+ - Adventure. Excitement. A Jedi craves not these things.
567
+ - At an end your rule is, and not short enough it was!
568
+ - Around the survivors a perimeter create.
569
+ - Soon will I rest, yes, forever sleep. Earned it I have. Twilight is upon me, soon night must fall.
570
+ - Not if anything to say about it I have
571
+ - Through the Force, things you will see. Other places. The future - the past. Old friends long gone.
572
+ - Ow, ow, OW! On my ear you are!
573
+ - The dark side clouds everything. Impossible to see the future is.
574
+ - Size matters not. Look at me. Judge me by my size, do you? Hmm? Hmm. And well you should not. For my ally is the Force, and a powerful ally it is. Life creates it, makes it grow. Its energy surrounds us and binds us. Luminous beings are we, not this crude matter. You must feel the Force around you; here, between you, me, the tree, the rock, everywhere, yes. Even between the land and the ship.
575
+ - Younglings, younglings gather ’round.
576
+ - Luminous beings are we - not this crude matter.
577
+ - Clear your mind must be, if you are to find the villains behind this plot.
578
+ - Always two there are, no more, no less. A master and an apprentice.
579
+ - Do. Or do not. There is no try.
580
+ - Much to learn you still have my old padawan. ... This is just the beginning!
581
+ - Good relations with the Wookiees, I have.
582
+ - Ready are you? What know you of ready? For eight hundred years have I trained Jedi. My own counsel will I keep on who is to be trained. A Jedi must have the deepest commitment, the most serious mind. This one a long time have I watched. All his life has he looked away - to the future, to the horizon. Never his mind on where he was. Hmm? What he was doing. Hmph. Adventure. Heh. Excitement. Heh. A Jedi craves not these things. You are reckless.
583
+ - Truly wonderful, the mind of a child is.
584
+ - Always pass on what you have learned.
585
+ - Once you start down the dark path, forever will it dominate your destiny, consume you it will.
586
+ - Mudhole? Slimy? My home this is!
587
+ - Yes, a Jedi’s strength flows from the Force. But beware of the dark side. Anger, fear, aggression; the dark side of the Force are they. Easily they flow, quick to join you in a fight. If once you start down the dark path, forever will it dominate your destiny, consume you it will, as it did Obi-Wan’s apprentice.
588
+ - Do not assume anything Obi-Wan. Clear your mind must be if you are to discover the real villains behind this plot.
589
+ - Death is a natural part of life. Rejoice for those around you who transform into the Force. Mourn them do not. Miss them do not. Attachment leads to jealously. The shadow of greed, that is.
590
+ - Like fire across the galaxy the Clone Wars spread. In league with the wicked Count Dooku, more and more planets slip. Against this threat, upon the Jedi Knights falls the duty to lead the newly formed army of the Republic. And as the heat of war grows, so, to, grows the prowess of one most gifted student of the Force.
591
+ - Hmm. In the end, cowards are those who follow the dark side.
592
+ - Strong is Vader. Mind what you have learned. Save you it can.
593
+ - Pain, suffering, death I feel. Something terrible has happened. Young Skywalker is in pain. Terrible pain
594
+ - Difficult to see. Always in motion is the future...
595
+ - You will find only what you bring in.
596
+ - Feel the force!
597
+ - Reckless he is. Matters are worse.
598
+ - That is why you fail.
599
+ - Your weapons, you will not need them.
600
+ - To answer power with power, the Jedi way this is
601
+ fortune_cookie:
602
+ - This cookie senses that you are superstitious; it is an inclination that is bad for your mental health.
603
+ - Goodness comes to those who wait.
604
+ - Two wrongs do not make a right.
605
+ - A rolling stone gathers no moss.
606
+ - Destiny is what you choose it to be; fate is what happens when you relinquish your freedom
607
+ - Failure is fuel for victory
608
+ - A black cat is not bad luck for a blind man.
609
+ - To hesitate is to be lost.