Merge pull request #338 from DiUS/new-loading

New loading
This commit is contained in:
Ricky Yim
2018-12-19 20:54:07 +11:00
committed by GitHub
171 changed files with 6343 additions and 897 deletions
+3 -3
View File
@@ -9,14 +9,14 @@ public class Cat {
}
public String name() {
return faker.fakeValuesService().resolve("cat.name", this, faker);
return faker.fakeValuesService().resolve("creature.cat.name", this, faker);
}
public String breed() {
return faker.fakeValuesService().resolve("cat.breed", this, faker);
return faker.fakeValuesService().resolve("creature.cat.breed", this, faker);
}
public String registry() {
return faker.fakeValuesService().resolve("cat.registry", this, faker);
return faker.fakeValuesService().resolve("creature.cat.registry", this, faker);
}
}
+8 -8
View File
@@ -9,34 +9,34 @@ public class Dog {
}
public String name() {
return faker.fakeValuesService().resolve("dog.name", this, faker);
return faker.fakeValuesService().resolve("creature.dog.name", this, faker);
}
public String breed() {
return faker.fakeValuesService().resolve("dog.breed", this, faker);
return faker.fakeValuesService().resolve("creature.dog.breed", this, faker);
}
public String sound() {
return faker.fakeValuesService().resolve("dog.sound", this, faker);
return faker.fakeValuesService().resolve("creature.dog.sound", this, faker);
}
public String memePhrase() {
return faker.fakeValuesService().resolve("dog.meme_phrase", this, faker);
return faker.fakeValuesService().resolve("creature.dog.meme_phrase", this, faker);
}
public String age() {
return faker.fakeValuesService().resolve("dog.age", this, faker);
return faker.fakeValuesService().resolve("creature.dog.age", this, faker);
}
public String coatLength() {
return faker.fakeValuesService().resolve("dog.coat_length", this, faker);
return faker.fakeValuesService().resolve("creature.dog.coat_length", this, faker);
}
public String gender() {
return faker.fakeValuesService().resolve("dog.gender", this, faker);
return faker.fakeValuesService().resolve("creature.dog.gender", this, faker);
}
public String size() {
return faker.fakeValuesService().resolve("dog.size", this, faker);
return faker.fakeValuesService().resolve("creature.dog.size", this, faker);
}
}
@@ -15,9 +15,9 @@ public class Educator {
}
public String course() {
return faker.fakeValuesService().resolve("educator.tertiary.course.type", this, faker)
return faker.fakeValuesService().resolve("educator.tertiary.degree.type", this, faker)
+ " "
+ faker.fakeValuesService().resolve("educator.tertiary.course.subject", this, faker);
+ faker.fakeValuesService().resolve("educator.tertiary.degree.subject", this, faker);
}
public String secondarySchool() {
@@ -8,22 +8,22 @@ public class Esports {
}
public String player() {
return faker.resolve("esports.players");
return faker.resolve("esport.players");
}
public String team() {
return faker.resolve("esports.teams");
return faker.resolve("esport.teams");
}
public String event() {
return faker.resolve("esports.events");
return faker.resolve("esport.events");
}
public String league() {
return faker.resolve("esports.leagues");
return faker.resolve("esport.leagues");
}
public String game() {
return faker.resolve("esports.games");
return faker.resolve("esport.games");
}
}
@@ -20,7 +20,7 @@ public class Finance {
createCountryCodeToBasicBankAccountNumberPatternMap();
public String creditCard(CreditCardType creditCardType) {
final String key = String.format("credit_card.%s", creditCardType.toString().toLowerCase());
final String key = String.format("finance.credit_card.%s", creditCardType.toString().toLowerCase());
String value = faker.fakeValuesService().resolve(key, this, faker);
final String template = faker.numerify(value);
@@ -8,26 +8,26 @@ public class LeagueOfLegends {
}
public String champion() {
return faker.fakeValuesService().resolve("league_of_legends.champion", this, faker);
return faker.fakeValuesService().resolve("games.league_of_legends.champion", this, faker);
}
public String location() {
return faker.fakeValuesService().resolve("league_of_legends.location", this, faker);
return faker.fakeValuesService().resolve("games.league_of_legends.location", this, faker);
}
public String quote() {
return faker.fakeValuesService().resolve("league_of_legends.quote", this, faker);
return faker.fakeValuesService().resolve("games.league_of_legends.quote", this, faker);
}
public String summonerSpell() {
return faker.fakeValuesService().resolve("league_of_legends.summoner_spell", this, faker);
return faker.fakeValuesService().resolve("games.league_of_legends.summoner_spell", this, faker);
}
public String masteries() {
return faker.fakeValuesService().resolve("league_of_legends.masteries", this, faker);
return faker.fakeValuesService().resolve("games.league_of_legends.masteries", this, faker);
}
public String rank() {
return faker.fakeValuesService().resolve("league_of_legends.rank", this, faker);
return faker.fakeValuesService().resolve("games.league_of_legends.rank", this, faker);
}
}
@@ -25,6 +25,6 @@ public class Music {
}
public String genre() {
return faker.resolve("music.genre");
return faker.resolve("music.genres");
}
}
@@ -8,14 +8,14 @@ public class Overwatch {
}
public String hero() {
return faker.fakeValuesService().resolve("overwatch.heroes", this, faker);
return faker.fakeValuesService().resolve("games.overwatch.heroes", this, faker);
}
public String location() {
return faker.fakeValuesService().resolve("overwatch.locations", this, faker);
return faker.fakeValuesService().resolve("games.overwatch.locations", this, faker);
}
public String quote() {
return faker.fakeValuesService().resolve("overwatch.quotes", this, faker);
return faker.fakeValuesService().resolve("games.overwatch.quotes", this, faker);
}
}
@@ -9,10 +9,10 @@ public class Pokemon {
}
public String name() {
return faker.resolve("pokemon.names");
return faker.resolve("games.pokemon.names");
}
public String location() {
return faker.resolve("pokemon.locations");
return faker.resolve("games.pokemon.locations");
}
}
@@ -8,26 +8,26 @@ public class Witcher {
}
public String character() {
return faker.fakeValuesService().resolve("witcher.characters", this, faker);
return faker.fakeValuesService().resolve("games.witcher.characters", this, faker);
}
public String witcher() {
return faker.fakeValuesService().resolve("witcher.witchers", this, faker);
return faker.fakeValuesService().resolve("games.witcher.witchers", this, faker);
}
public String school() {
return faker.fakeValuesService().resolve("witcher.schools", this, faker);
return faker.fakeValuesService().resolve("games.witcher.schools", this, faker);
}
public String location() {
return faker.fakeValuesService().resolve("witcher.locations", this, faker);
return faker.fakeValuesService().resolve("games.witcher.locations", this, faker);
}
public String quote() {
return faker.fakeValuesService().resolve("witcher.quotes", this, faker);
return faker.fakeValuesService().resolve("games.witcher.quotes", this, faker);
}
public String monster() {
return faker.fakeValuesService().resolve("witcher.monsters", this, faker);
return faker.fakeValuesService().resolve("games.witcher.monsters", this, faker);
}
}
@@ -8,10 +8,10 @@ public class Zelda {
}
public String game() {
return faker.resolve("zelda.games");
return faker.resolve("games.zelda.games");
}
public String character() {
return faker.resolve("zelda.characters");
return faker.resolve("games.zelda.characters");
}
}
@@ -8,10 +8,12 @@ import org.apache.commons.lang3.ClassUtils;
import org.apache.commons.lang3.StringUtils;
import org.yaml.snakeyaml.Yaml;
import java.io.File;
import java.io.InputStream;
import java.lang.reflect.Constructor;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.net.URL;
import java.util.*;
import java.util.logging.Level;
import java.util.logging.Logger;
@@ -57,19 +59,36 @@ public class FakeValuesService {
final List<Locale> locales = localeChain(locale);
final List<Map<String,Object>> all = new ArrayList(locales.size());
final Set<Locale> loadedLocales = new HashSet<Locale>();
for (final Locale l : locales) {
final StringBuilder filename = new StringBuilder(language(l));
if (!"".equals(l.getCountry())) {
filename.append("-").append(l.getCountry());
}
// list the files on the classpath... so if we pass in "en"
// it will look for a folder "en" and list all the files underneath it
File[] files = listFilesInDirectoryOnClasspath(filename.toString());
for (File resourceFolderFile : files) {
String fileToLoad = filename + "/" + resourceFolderFile.getName();
final InputStream stream = getClass().getClassLoader().getResourceAsStream(fileToLoad);
if (stream != null) {
Map map = fakerFromStream(stream, filename.toString());
all.add(map);
loadedLocales.add(l);
}
}
final InputStream stream = findStream(filename.toString());
if (stream != null) {
all.add(fakerFromStream(stream, filename.toString()));
loadedLocales.add(l);
}
}
if (all.size() == 1 && !locale.equals(Locale.ENGLISH)) {
if (loadedLocales.size() == 1 && loadedLocales.contains(Locale.ENGLISH) && !locale.equals(Locale.ENGLISH)) {
// if we have only successfully loaded ENGLISH and the requested locale
// wasn't english that means we were unable to load the requested locale
// in that case we vomit.
@@ -82,6 +101,12 @@ public class FakeValuesService {
this.fakeValuesMaps = Collections.unmodifiableList(all);
}
private File[] listFilesInDirectoryOnClasspath(String dir) {
ClassLoader loader = getClass().getClassLoader();
URL url = loader.getResource(dir);
return (url != null) ? new File(url.getPath()).listFiles() : new File[0];
}
/**
* If you new up a locale with "he", it gets converted to "iw" which is old.
* This addresses that unfortunate condition.
File diff suppressed because one or more lines are too long
+575
View File
@@ -0,0 +1,575 @@
en:
faker:
address:
city_prefix: [North, East, West, South, New, Lake, Port]
city_suffix: [town, ton, land, ville, berg, burgh, borough, bury, view, port, mouth, stad, furt, chester, mouth, fort, haven, side, shire]
country: [Afghanistan, Albania, Algeria, American Samoa, Andorra, Angola, Anguilla, Antarctica (the territory South of 60 deg S), Antigua and Barbuda, Argentina, Armenia, Aruba, Australia, Austria, Azerbaijan, Bahamas, Bahrain, Bangladesh, Barbados, Belarus, Belgium, Belize, Benin, Bermuda, Bhutan, Bolivia, Bosnia and Herzegovina, Botswana, Bouvet Island (Bouvetoya), Brazil, British Indian Ocean Territory (Chagos Archipelago), Brunei Darussalam, Bulgaria, Burkina Faso, Burundi, Cambodia, Cameroon, Canada, Cape Verde, Cayman Islands, Central African Republic, Chad, Chile, China, Christmas Island, Cocos (Keeling) Islands, Colombia, Comoros, Congo, Congo, Cook Islands, Costa Rica, Cote d'Ivoire, Croatia, Cuba, Cyprus, Czech Republic, Denmark, Djibouti, Dominica, Dominican Republic, Ecuador, Egypt, El Salvador, Equatorial Guinea, Eritrea, Estonia, Ethiopia, Faroe Islands, Falkland Islands (Malvinas), Fiji, Finland, France, French Guiana, French Polynesia, French Southern Territories, Gabon, Gambia, Georgia, Germany, Ghana, Gibraltar, Greece, Greenland, Grenada, Guadeloupe, Guam, Guatemala, Guernsey, Guinea, Guinea-Bissau, Guyana, Haiti, Heard Island and McDonald Islands, Holy See (Vatican City State), Honduras, Hong Kong, Hungary, Iceland, India, Indonesia, Iran, Iraq, Isle of Man, Israel, Italy, Jamaica, Japan, Jersey, Jordan, Kazakhstan, Kenya, Kiribati, Democratic People's Republic of Korea, Republic of Korea, Kuwait, Kyrgyz Republic, Lao People's Democratic Republic, Latvia, Lebanon, Lesotho, Liberia, Libyan Arab Jamahiriya, Liechtenstein, Lithuania, Luxembourg, Macao, Macedonia, Madagascar, Malawi, Malaysia, Maldives, Mali, Malta, Marshall Islands, Martinique, Mauritania, Mauritius, Mayotte, Mexico, Micronesia, Moldova, Monaco, Mongolia, Montenegro, Montserrat, Morocco, Mozambique, Myanmar, Namibia, Nauru, Nepal, Netherlands Antilles, Netherlands, New Caledonia, New Zealand, Nicaragua, Niger, Nigeria, Niue, Norfolk Island, Northern Mariana Islands, Norway, Oman, Pakistan, Palau, Palestinian Territory, Panama, Papua New Guinea, Paraguay, Peru, Philippines, Pitcairn Islands, Poland, Portugal, Puerto Rico, Qatar, Reunion, Romania, Russian Federation, Rwanda, Saint Barthelemy, Saint Helena, Saint Kitts and Nevis, Saint Lucia, Saint Martin, Saint Pierre and Miquelon, Saint Vincent and the Grenadines, Samoa, San Marino, Sao Tome and Principe, Saudi Arabia, Senegal, Serbia, Seychelles, Sierra Leone, Singapore, Slovakia (Slovak Republic), Slovenia, Solomon Islands, Somalia, South Africa, South Georgia and the South Sandwich Islands, Spain, Sri Lanka, Sudan, Suriname, Svalbard & Jan Mayen Islands, Swaziland, Sweden, Switzerland, Syrian Arab Republic, Taiwan, Tajikistan, Tanzania, Thailand, Timor-Leste, Togo, Tokelau, Tonga, Trinidad and Tobago, Tunisia, Turkey, Turkmenistan, Turks and Caicos Islands, Tuvalu, Uganda, Ukraine, United Arab Emirates, United Kingdom, United States of America, United States Minor Outlying Islands, Uruguay, Uzbekistan, Vanuatu, Venezuela, Vietnam, 'Virgin Islands, British', 'Virgin Islands, U.S.', Wallis and Futuna, Western Sahara, Yemen, Zambia, Zimbabwe]
country_by_code:
AF: "Afghanistan"
AL: "Albania"
DZ: "Algeria"
AS: "American Samoa"
AD: "Andorra"
AO: "Angola"
AI: "Anguilla"
AQ: "Antarctica"
AG: "Antigua And Barbuda"
AR: "Argentina"
AM: "Armenia"
AW: "Aruba"
AU: "Australia"
AT: "Austria"
AZ: "Azerbaijan"
BS: "Bahamas"
BH: "Bahrain"
BD: "Bangladesh"
BB: "Barbados"
BY: "Belarus"
BE: "Belgium"
BZ: "Belize"
BJ: "Benin"
BM: "Bermuda"
BT: "Bhutan"
BO: "Bolivia"
BA: "Bosnia And Herzegovina"
BW: "Botswana"
BV: "Bouvet Island"
BR: "Brazil"
IO: "British Indian Ocean Territory"
BN: "Brunei Darussalam"
BG: "Bulgaria"
BF: "Burkina Faso"
BI: "Burundi"
KH: "Cambodia"
CM: "Cameroon"
CA: "Canada"
CV: "Cape Verde"
KY: "Cayman Islands"
CF: "Central African Republic"
TD: "Chad"
CL: "Chile"
CN: "China"
CX: "Christmas Island"
CC: "Cocos (keeling) Islands"
CO: "Colombia"
KM: "Comoros"
CG: "Congo"
CD: "Congo, The Democratic Republic Of The"
CK: "Cook Islands"
CR: "Costa Rica"
CI: "Cote D'ivoire"
HR: "Croatia"
CU: "Cuba"
CY: "Cyprus"
CZ: "Czech Republic"
DK: "Denmark"
DJ: "Djibouti"
DM: "Dominica"
DO: "Dominican Republic"
TP: "East Timor"
EC: "Ecuador"
EG: "Egypt"
SV: "El Salvador"
GQ: "Equatorial Guinea"
ER: "Eritrea"
EE: "Estonia"
ET: "Ethiopia"
FK: "Falkland Islands (malvinas)"
FO: "Faroe Islands"
FJ: "Fiji"
FI: "Finland"
FR: "France"
GF: "French Guiana"
PF: "French Polynesia"
TF: "French Southern Territories"
GA: "Gabon"
GM: "Gambia"
GE: "Georgia"
DE: "Germany"
GH: "Ghana"
GI: "Gibraltar"
GR: "Greece"
GL: "Greenland"
GD: "Grenada"
GP: "Guadeloupe"
GU: "Guam"
GT: "Guatemala"
GN: "Guinea"
GW: "Guinea-bissau"
GY: "Guyana"
HT: "Haiti"
HM: "Heard Island And Mcdonald Islands"
VA: "Holy See (vatican City State)"
HN: "Honduras"
HK: "Hong Kong"
HU: "Hungary"
IS: "Iceland"
IN: "India"
ID: "Indonesia"
IR: "Iran, Islamic Republic Of"
IQ: "Iraq"
IE: "Ireland"
IL: "Israel"
IT: "Italy"
JM: "Jamaica"
JP: "Japan"
JO: "Jordan"
KZ: "Kazakstan"
KE: "Kenya"
KI: "Kiribati"
KP: "Korea, Democratic People's Republic Of"
KR: "Korea, Republic Of"
KV: "Kosovo"
KW: "Kuwait"
KG: "Kyrgyzstan"
LA: "Lao People's Democratic Republic"
LV: "Latvia"
LB: "Lebanon"
LS: "Lesotho"
LR: "Liberia"
LY: "Libyan Arab Jamahiriya"
LI: "Liechtenstein"
LT: "Lithuania"
LU: "Luxembourg"
MO: "Macau"
MK: "Macedonia, The Former Yugoslav Republic Of"
MG: "Madagascar"
MW: "Malawi"
MY: "Malaysia"
MV: "Maldives"
ML: "Mali"
MT: "Malta"
MH: "Marshall Islands"
MQ: "Martinique"
MR: "Mauritania"
MU: "Mauritius"
YT: "Mayotte"
MX: "Mexico"
FM: "Micronesia, Federated States Of"
MD: "Moldova, Republic Of"
MC: "Monaco"
MN: "Mongolia"
MS: "Montserrat"
ME: "Montenegro"
MA: "Morocco"
MZ: "Mozambique"
MM: "Myanmar"
NA: "Namibia"
NR: "Nauru"
NP: "Nepal"
NL: "Netherlands"
AN: "Netherlands Antilles"
NC: "New Caledonia"
NZ: "New Zealand"
NI: "Nicaragua"
NE: "Niger"
NG: "Nigeria"
NU: "Niue"
NF: "Norfolk Island"
MP: "Northern Mariana Islands"
NO: "Norway"
OM: "Oman"
PK: "Pakistan"
PW: "Palau"
PS: "Palestinian Territory, Occupied"
PA: "Panama"
PG: "Papua New Guinea"
PY: "Paraguay"
PE: "Peru"
PH: "Philippines"
PN: "Pitcairn"
PL: "Poland"
PT: "Portugal"
PR: "Puerto Rico"
QA: "Qatar"
RE: "Reunion"
RO: "Romania"
RU: "Russian Federation"
RW: "Rwanda"
SH: "Saint Helena"
KN: "Saint Kitts And Nevis"
LC: "Saint Lucia"
PM: "Saint Pierre And Miquelon"
VC: "Saint Vincent And The Grenadines"
WS: "Samoa"
SM: "San Marino"
ST: "Sao Tome And Principe"
SA: "Saudi Arabia"
SN: "Senegal"
RS: "Serbia"
SC: "Seychelles"
SL: "Sierra Leone"
SG: "Singapore"
SK: "Slovakia"
SI: "Slovenia"
SB: "Solomon Islands"
SO: "Somalia"
ZA: "South Africa"
GS: "South Georgia And The South Sandwich Islands"
ES: "Spain"
LK: "Sri Lanka"
SD: "Sudan"
SR: "Suriname"
SJ: "Svalbard And Jan Mayen"
SZ: "Swaziland"
SE: "Sweden"
CH: "Switzerland"
SY: "Syrian Arab Republic"
TW: "Taiwan, Province Of China"
TJ: "Tajikistan"
TZ: "Tanzania, United Republic Of"
TH: "Thailand"
TG: "Togo"
TK: "Tokelau"
TO: "Tonga"
TT: "Trinidad And Tobago"
TN: "Tunisia"
TR: "Turkey"
TM: "Turkmenistan"
TC: "Turks And Caicos Islands"
TV: "Tuvalu"
UG: "Uganda"
UA: "Ukraine"
AE: "United Arab Emirates"
GB: "United Kingdom"
US: "United States"
UM: "United States Minor Outlying Islands"
UY: "Uruguay"
UZ: "Uzbekistan"
VU: "Vanuatu"
VE: "Venezuela"
VN: "Viet Nam"
VG: "Virgin Islands, British"
VI: "Virgin Islands, U.s."
WF: "Wallis And Futuna"
EH: "Western Sahara"
YE: "Yemen"
ZM: "Zambia"
ZW: "Zimbabwe"
country_by_name:
afghanistan: "AF"
albania: "AB"
algeria: "DZ"
american_samoa: "AS"
andorra: "AD"
angola: "AO"
anguilla: "AI"
antarctica: "AQ"
antigua_and_barbuda: "AG"
argentina: "AR"
armenia: "AM"
aruba: "AW"
australia: "AU"
austria: "AT"
azerbaijan: "AZ"
bahamas: "BS"
bahrain: "BH"
bangladesh: "BD"
barbados: "BB"
belarus: "BY"
belgium: "BE"
belize: "BZ"
benin: "BJ"
bermuda: "BM"
bhutan: "BT"
bolivia: "BO"
bosnia_and_herzegovina: "BA"
botswana: "BW"
bouvet_island: "BV"
brazil: "BR"
british_indian_ocean_territory: "IO"
brunei_darussalam: "BN"
bulgaria: "BG"
burkina_faso: "BF"
burundi: "BI"
cambodia: "KH"
cameroon: "CM"
canada: "CA"
cape_verde: "CV"
cayman_islands: "KY"
central_african_republic: "CF"
chad: "TD"
chile: "CL"
china: "CN"
christmas_island: "CX"
cocos_islands: "CC"
colombia: "CO"
comoros: "KM"
congo: "CG"
cook_islands: "CK"
costa_rica: "CR"
cote_d_ivoire: "CI"
croatia: "HR"
cuba: "CU"
cyprus: "CY"
czech_republic: "CZ"
denmark: "DK"
djibouti: "DJ"
dominica: "DM"
dominican_republic: "DO"
east_timor: "TP"
ecuador: "EC"
egypt: "EG"
el_salvador: "SV"
equatorial_guinea: "GQ"
eritrea: "ER"
estonia: "EE"
ethiopia: "ET"
falkland_islands: "FK"
malvinas: "FK"
faroe_islands: "FO"
fiji: "FJ"
finland: "FI"
france: "FR"
french_guiana: "GF"
french_polynesia: "PF"
french_southern_territories: "TF"
gabon: "GA"
gambia: "GM"
georgia: "GE"
germany: "DE"
ghana: "GH:"
gibraltar: "GI"
greece: "GR"
greenland: "GL"
grenada: "GD"
guadeloupe: "GP"
guam: "GU"
guatemala: "GT"
guinea: "GN"
guinea_bissau: "GW"
guyana: "GY"
haiti: "HT"
heard_island_and_mcdonald_islands: "HM"
holy_see: "VA"
honduras: "HN"
hong_kong: "HK"
hungary: "HU"
iceland: "IS"
india: "IN"
indonesia: "ID"
ir_islamic_republic_of: "IR"
iraq: "IQ"
ireland: "IE"
israel: "IL"
italy: "IT"
jamaica: "JM"
japan: "JP"
jordan: "JO"
kazakstan: "KZ"
kenya: "KE"
kiribati: "KI"
korea_democratic_people_s_republic_of: "KP"
korea_republic_of: "KR"
kosovo: "KV"
kuwait: "KW"
kyrgyzstan: "KG"
lao_people_s_democratic_republic: "LA"
latvia: "LV"
lebanon: "LB"
lesotho: "LS"
liberia: "LR"
libyan_arab_jamahiriya: "LY"
liechtenstein: "LI"
lithuania: "LT"
luxembourg: "LU"
macau: "MO"
macedonia_the_former_yugoslav_republic_of: "MK"
madagascar: "MG"
malawi: "MW"
malaysia: "MY"
maldives: "MV"
mali: "ML"
malta: "MT"
marshall_islands: "MH"
martinique: "MQ"
mauritania: "MR"
mauritius: "MU"
mayotte: "YT"
mexicoMX: ""
micronesia_federated_states_of: "FM"
moldova_republic_of: "MD"
monaco: "MC"
mongolia: "MN"
montserrat: "MS"
montenegro: "ME"
morocco: "MA"
mozambique: "MZ"
myanmar: "MM"
namibia: "NA"
nauru: "NR"
nepal: "NP"
netherlands: "NL"
netherlands_antilles: "AN"
new_caledonia: "NC"
new_zealand: "NZ"
nicaragua: "NI"
niger: "NE"
nigeria: "NG"
niue: "NU"
norfolk_island: "NF"
northern_mariana_islands: "NP"
norway: "NP"
oman: "OM"
pakistan: "PK"
palau: "PW"
palestinian_territory_occupied: "PS"
panama: "PA"
papua_new_guinea: "PG"
paraguay: "PY"
peru: "PE"
philippines: "PH"
pitcairn: "PN"
poland: "PL"
portugal: "PT"
puerto_rico: "PR"
qatar: "QA"
reunion: "RE"
romania: "RO"
russian_federation: "RU"
rwanda: "RW"
saint_helena: "SH"
saint_kitts_and_nevis: "KN"
saint_lucia: "LC"
saint_pierre_and_miquelon: "PM"
saint_vincent_and_the_grenadines: "VC"
samoa: "WS"
san_marino: "SM"
sao_tome_and_principe: "ST"
saudi_arabia: "SA"
senegal: "SN"
serbia: "RS"
seychelles: "SC"
sierra_leone: "SL"
singapore: "SG"
slovakia: "SK"
slovenia: "SI"
solomon Islands: "SB"
somalia: "SO"
south_africa: "ZA"
south_georgia_and_the_south_sandwich_islands: "GS"
spain: "ES"
sri_lanka: "LK"
sudan: "SD"
suriname: "SR"
svalbard_and_jan_mayen: "SJ"
swaziland: "SZ"
sweden: "SE"
switzerland: "CH"
syrian_arab_republic: "SY"
taiwan_province_of_china: "TW"
tajikistan: "TJ"
tanzania_united_republic_of: "TZ"
thailand: "TH"
togo: "TG"
tokelau: "TK"
tonga: "TO"
trinidad_and_tobago: "TT"
tunisia: "TN"
turkey: "TR"
turkmenistan: "TM"
turks_and_caicos_islands: "TC"
tuvalu: "TV"
uganda: "UG"
ukraine: "UA"
united_arab_emirates: ""
united_kingdom: "GB"
united_states: "US"
united_states_minor_outlying_islands: "UM"
uruguay: "UY"
uzbekistan: "UZ"
vanuatu: "VU"
venezuela: "VE"
viet_nam: "VN"
virgin_islands_british: "VG"
virgin_islands_u_s_: "VI"
wallis And Futuna: "WF"
western_sahara: "EH"
yemen: "YE"
zambia: "ZM"
zimbabwe: "ZW"
country_code: ["AD", "AE", "AF", "AG", "AI", "AL", "AM", "AO", "AQ", "AR", "AS", "AT", "AU", "AW", "AX", "AZ", "BA", "BB", "BD", "BE", "BF", "BG", "BH", "BI", "BJ", "BL", "BM", "BN", "BO", "BQ", "BQ", "BR", "BS", "BT", "BV", "BW", "BY", "BZ", "CA", "CC", "CD", "CF", "CG", "CH", "CI", "CK", "CL", "CM", "CN", "CO", "CR", "CU", "CV", "CW", "CX", "CY", "CZ", "DE", "DJ", "DK", "DM", "DO", "DZ", "EC", "EE", "EG", "EH", "ER", "ES", "ET", "FI", "FJ", "FK", "FM", "FO", "FR", "GA", "GB", "GD", "GE", "GF", "GG", "GH", "GI", "GL", "GM", "GN", "GP", "GQ", "GR", "GS", "GT", "GU", "GW", "GY", "HK", "HM", "HN", "HR", "HT", "HU", "ID", "IE", "IL", "IM", "IN", "IO", "IQ", "IR", "IS", "IT", "JE", "JM", "JO", "JP", "KE", "KG", "KH", "KI", "KM", "KN", "KP", "KR", "KW", "KY", "KZ", "LA", "LB", "LC", "LI", "LK", "LR", "LS", "LT", "LU", "LV", "LY", "MA", "MC", "MD", "ME", "MF", "MG", "MH", "MK", "ML", "MM", "MN", "MO", "MP", "MQ", "MR", "MS", "MT", "MU", "MV", "MW", "MX", "MY", "MZ", "NA", "NC", "NE", "NF", "NG", "NI", "NL", "NO", "NP", "NR", "NU", "NZ", "OM", "PA", "PE", "PF", "PG", "PH", "PK", "PL", "PM", "PN", "PR", "PS", "PT", "PW", "PY", "QA", "RE", "RO", "RS", "RU", "RW", "SA", "SB", "SC", "SD", "SE", "SG", "SH", "SI", "SJ", "SK", "SL", "SM", "SN", "SO", "SR", "SS", "ST", "SV", "SX", "SY", "SZ", "TC", "TD", "TF", "TG", "TH", "TJ", "TK", "TL", "TM", "TN", "TO", "TR", "TT", "TV", "TW", "TZ", "UA", "UG", "UM", "US", "UY", "UZ", "VA", "VC", "VE", "VG", "VI", "VN", "VU", "WF", "WS", "YE", "YT", "ZA", "ZM", "ZW"]
country_code_long: ["ABW", "AFG", "AGO", "AIA", "ALA", "ALB", "AND", "ARE", "ARG", "ARM", "ASM", "ATA", "ATF", "ATG", "AUS", "AUT", "AZE", "BDI", "BEL", "BEN", "BES", "BFA", "BGD", "BGR", "BHR", "BHS", "BIH", "BLM", "BLR", "BLZ", "BMU", "BOL", "BRA", "BRB", "BRN", "BTN", "BVT", "BWA", "CAF", "CAN", "CCK", "CHE", "CHL", "CHN", "CIV", "CMR", "COD", "COG", "COK", "COL", "COM", "CPV", "CRI", "CUB", "CUW", "CXR", "CYM", "CYP", "CZE", "DEU", "DJI", "DMA", "DNK", "DOM", "DZA", "ECU", "EGY", "ERI", "ESH", "ESP", "EST", "ETH", "FIN", "FJI", "FLK", "FRA", "FRO", "FSM", "GAB", "GBR", "GEO", "GGY", "GHA", "GIB", "GIN", "GLP", "GMB", "GNB", "GNQ", "GRC", "GRD", "GRL", "GTM", "GUF", "GUM", "GUY", "HKG", "HMD", "HND", "HRV", "HTI", "HUN", "IDN", "IMN", "IND", "IOT", "IRL", "IRN", "IRQ", "ISL", "ISR", "ITA", "JAM", "JEY", "JOR", "JPN", "KAZ", "KEN", "KGZ", "KHM", "KIR", "KNA", "KOR", "KWT", "LAO", "LBN", "LBR", "LBY", "LCA", "LIE", "LKA", "LSO", "LTU", "LUX", "LVA", "MAC", "MAF", "MAR", "MCO", "MDA", "MDG", "MDV", "MEX", "MHL", "MKD", "MLI", "MLT", "MMR", "MNE", "MNG", "MNP", "MOZ", "MRT", "MSR", "MTQ", "MUS", "MWI", "MYS", "MYT", "NAM", "NCL", "NER", "NFK", "NGA", "NIC", "NIU", "NLD", "NOR", "NPL", "NRU", "NZL", "OMN", "PAK", "PAN", "PCN", "PER", "PHL", "PLW", "PNG", "POL", "PRI", "PRK", "PRT", "PRY", "PSE", "PYF", "QAT", "REU", "ROU", "RUS", "RWA", "SAU", "SDN", "SEN", "SGP", "SGS", "SHN", "SJM", "SLB", "SLE", "SLV", "SMR", "SOM", "SPM", "SRB", "SSD", "STP", "SUR", "SVK", "SVN", "SWE", "SWZ", "SXM", "SYC", "SYR", "TCA", "TCD", "TGO", "THA", "TJK", "TKL", "TKM", "TLS", "TON", "TTO", "TUN", "TUR", "TUV", "TWN", "TZA", "UGA", "UKR", "UMI", "URY", "USA", "UZB", "VAT", "VCT", "VEN", "VGB", "VIR", "VNM", "VUT", "WLF", "WSM", "YEM", "ZAF", "ZMB", "ZWE"]
building_number: ['#####', '####', '###']
community_prefix: [Park, Summer, Autumn, Paradise, Eagle, Pine, Royal, University, Willow]
community_suffix: [Village, Creek, Place, Pointe, Square, Oaks, Gardens, Crossing, Court, Acres, Estates, Heights]
community:
- "#{community_prefix} #{community_suffix}"
street_suffix: [Alley, Avenue, Branch, Bridge, Brook, Brooks, Burg, Burgs, Bypass, Camp, Canyon, Cape, Causeway, Center, Centers, Circle, Circles, Cliff, Cliffs, Club, Common, Corner, Corners, Course, Court, Courts, Cove, Coves, Creek, Crescent, Crest, Crossing, Crossroad, Curve, Dale, Dam, Divide, Drive, Drive, Drives, Estate, Estates, Expressway, Extension, Extensions, Fall, Falls, Ferry, Field, Fields, Flat, Flats, Ford, Fords, Forest, Forge, Forges, Fork, Forks, Fort, Freeway, Garden, Gardens, Gateway, Glen, Glens, Green, Greens, Grove, Groves, Harbor, Harbors, Haven, Heights, Highway, Hill, Hills, Hollow, Inlet, Inlet, Island, Island, Islands, Islands, Isle, Isle, Junction, Junctions, Key, Keys, Knoll, Knolls, Lake, Lakes, Land, Landing, Lane, Light, Lights, Loaf, Lock, Locks, Locks, Lodge, Lodge, Loop, Mall, Manor, Manors, Meadow, Meadows, Mews, Mill, Mills, Mission, Mission, Motorway, Mount, Mountain, Mountain, Mountains, Mountains, Neck, Orchard, Oval, Overpass, Park, Parks, Parkway, Parkways, Pass, Passage, Path, Pike, Pine, Pines, Place, Plain, Plains, Plains, Plaza, Plaza, Point, Points, Port, Port, Ports, Ports, Prairie, Prairie, Radial, Ramp, Ranch, Rapid, Rapids, Rest, Ridge, Ridges, River, Road, Road, Roads, Roads, Route, Row, Rue, Run, Shoal, Shoals, Shore, Shores, Skyway, Spring, Springs, Springs, Spur, Spurs, Square, Square, Squares, Squares, Station, Station, Stravenue, Stravenue, Stream, Stream, Street, Street, Streets, Summit, Summit, Terrace, Throughway, Trace, Track, Trafficway, Trail, Trail, Tunnel, Tunnel, Turnpike, Turnpike, Underpass, Union, Unions, Valley, Valleys, Via, Viaduct, View, Views, Village, Village, Villages, Ville, Vista, Vista, Walk, Walks, Wall, Way, Ways, Well, Wells]
secondary_address: ['Apt. ###', 'Suite ###']
# Though these are US-specific, they are here (in the default locale) for backwards compatibility
postcode: ['#####', '#####-####']
postcode_by_state:
AL: '350##'
AK: '995##'
AS: '967##'
AZ: '850##'
AR: '717##'
CA: '900##'
CO: '800##'
CT: '061##'
DC: '204##'
DE: '198##'
FL: '322##'
GA: '301##'
HI: '967##'
ID: '832##'
IL: '600##'
IN: '463##'
IA: '510##'
KS: '666##'
KY: '404##'
LA: '701##'
ME: '042##'
MD: '210##'
MA: '026##'
MI: '480##'
MN: '555##'
MS: '387##'
MO: '650##'
MT: '590##'
NE: '688##'
NV: '898##'
NH: '036##'
NJ: '076##'
NM: '880##'
NY: '122##'
NC: '288##'
ND: '586##'
OH: '444##'
OK: '730##'
OR: '979##'
PA: '186##'
RI: '029##'
SC: '299##'
SD: '577##'
TN: '383##'
TX: '798##'
UT: '847##'
VT: '050##'
VA: '222##'
WA: '990##'
WV: '247##'
WI: '549##'
WY: '831##'
state: [Alabama, Alaska, Arizona, Arkansas, California, Colorado, Connecticut, Delaware, Florida, Georgia, Hawaii, Idaho, Illinois, Indiana, Iowa, Kansas, Kentucky, Louisiana, Maine, Maryland, Massachusetts, Michigan, Minnesota, Mississippi, Missouri, Montana, Nebraska, Nevada, New Hampshire, New Jersey, New Mexico, New York, North Carolina, North Dakota, Ohio, Oklahoma, Oregon, Pennsylvania, Rhode Island, South Carolina, South Dakota, Tennessee, Texas, Utah, Vermont, Virginia, Washington, West Virginia, Wisconsin, Wyoming]
state_abbr: [AL, AK, AZ, AR, CA, CO, CT, DE, FL, GA, HI, ID, IL, IN, IA, KS, KY, LA, ME, MD, MA, MI, MN, MS, MO, MT, NE, NV, NH, NJ, NM, NY, NC, ND, OH, OK, OR, PA, RI, SC, SD, TN, TX, UT, VT, VA, WA, WV, WI, WY]
time_zone: [Pacific/Midway, Pacific/Pago_Pago, Pacific/Honolulu, America/Juneau, America/Los_Angeles, America/Tijuana, America/Denver, America/Phoenix, America/Chihuahua, America/Mazatlan, America/Chicago, America/Regina, America/Mexico_City, America/Mexico_City, America/Monterrey, America/Guatemala, America/New_York, America/Indiana/Indianapolis, America/Bogota, America/Lima, America/Lima, America/Halifax, America/Caracas, America/La_Paz, America/Santiago, America/St_Johns, America/Sao_Paulo, America/Argentina/Buenos_Aires, America/Guyana, America/Godthab, Atlantic/South_Georgia, Atlantic/Azores, Atlantic/Cape_Verde, Europe/Dublin, Europe/London, Europe/Lisbon, Europe/London, Africa/Casablanca, Africa/Monrovia, Etc/UTC, Europe/Belgrade, Europe/Bratislava, Europe/Budapest, Europe/Ljubljana, Europe/Prague, Europe/Sarajevo, Europe/Skopje, Europe/Warsaw, Europe/Zagreb, Europe/Brussels, Europe/Copenhagen, Europe/Madrid, Europe/Paris, Europe/Amsterdam, Europe/Berlin, Europe/Berlin, Europe/Rome, Europe/Stockholm, Europe/Vienna, Africa/Algiers, Europe/Bucharest, Africa/Cairo, Europe/Helsinki, Europe/Kiev, Europe/Riga, Europe/Sofia, Europe/Tallinn, Europe/Vilnius, Europe/Athens, Europe/Istanbul, Europe/Minsk, Asia/Jerusalem, Africa/Harare, Africa/Johannesburg, Europe/Moscow, Europe/Moscow, Europe/Moscow, Asia/Kuwait, Asia/Riyadh, Africa/Nairobi, Asia/Baghdad, Asia/Tehran, Asia/Muscat, Asia/Muscat, Asia/Baku, Asia/Tbilisi, Asia/Yerevan, Asia/Kabul, Asia/Yekaterinburg, Asia/Karachi, Asia/Karachi, Asia/Tashkent, Asia/Kolkata, Asia/Kolkata, Asia/Kolkata, Asia/Kolkata, Asia/Kathmandu, Asia/Dhaka, Asia/Dhaka, Asia/Colombo, Asia/Almaty, Asia/Novosibirsk, Asia/Rangoon, Asia/Bangkok, Asia/Bangkok, Asia/Jakarta, Asia/Krasnoyarsk, Asia/Shanghai, Asia/Chongqing, Asia/Hong_Kong, Asia/Urumqi, Asia/Kuala_Lumpur, Asia/Singapore, Asia/Taipei, Australia/Perth, Asia/Irkutsk, Asia/Ulaanbaatar, Asia/Seoul, Asia/Tokyo, Asia/Tokyo, Asia/Tokyo, Asia/Yakutsk, Australia/Darwin, Australia/Adelaide, Australia/Melbourne, Australia/Melbourne, Australia/Sydney, Australia/Brisbane, Australia/Hobart, Asia/Vladivostok, Pacific/Guam, Pacific/Port_Moresby, Asia/Magadan, Asia/Magadan, Pacific/Noumea, Pacific/Fiji, Asia/Kamchatka, Pacific/Majuro, Pacific/Auckland, Pacific/Auckland, Pacific/Tongatapu, Pacific/Fakaofo, Pacific/Apia]
city_name:
- "#{city}"
city:
- "#{city_prefix} #{Name.first_name}#{city_suffix}"
- "#{city_prefix} #{Name.first_name}"
- "#{Name.first_name}#{city_suffix}"
- "#{Name.last_name}#{city_suffix}"
street_prefix: "xx"
street_name:
- "#{Name.first_name} #{street_suffix}"
- "#{Name.last_name} #{street_suffix}"
street_address:
- "#{building_number} #{street_name}"
full_address:
- "#{street_address}, #{city}, #{state_abbr} #{zip_code}"
- "#{secondary_address} #{street_address}, #{city}, #{state_abbr} #{zip_code}"
default_country: [United States of America]
+7
View File
@@ -0,0 +1,7 @@
en:
faker:
ancient:
god: ["Aphrodite", "Apollo", "Ares", "Artemis", "Athena", "Demeter", "Dionysus", "Hades", "Hephaestus", "Hera", "Hermes", "Hestia", "Poseidon", "Zeus"]
primordial: ["Aion", "Aether", "Ananke", "Chaos", "Chronos", "Erebus", "Eros", "Hypnos", "Nesoi", "Uranus", "Gaia", "Ourea", "Phanes", "Pontus", "Tartarus", "Thalassa", "Thanatos", "Hemera", "Nyx", "Nemesis"]
titan: ["Coeus", "Crius", "Cronus", "Hyperion", "Iapetus", "Mnemosyne", "Oceanus", "Phoebe", "Rhea", "Tethys", "Theia", "Themis", "Asteria", "Astraeus", "Atlas", "Aura", "Clymene", "Dione", "Helios", "Selene", "Eos", "Epimetheus", "Eurybia", "Eurynome", "Lelantos", "Leto", "Menoetius", "Metis", "Ophion", "Pallas", "Perses", "Prometheus", "Styx"]
hero: ["Abderus", "Achilles", "Aeneas", "Ajax", "Amphitryon", "Antilochus", "Bellerophon", "Castor", "Chrysippus", "Daedalus", "Diomedes", "Eleusis", "Eunostus", "Ganymede", "Hector", "Hercules", "Icarus", "Iolaus", "Jason", "Meleager", "Odysseus", "Orpheus", "Pandion", "Perseus", "Theseus", "Alcestis", "Amymone", "Andromache", "Andromeda", "Antigone", "Arachne", "Ariadne", "Atalanta", "Briseis", "Caeneus", "Cassandra", "Cassiopeia", "Clytemnestra", "Danaë", "Deianeira", "Electra", "Europa", "Hecuba", "Helen", "Hermione", "Iphigenia", "Ismene", "Jocasta", "Medea", "Medusa", "Niobe", "Pandora", "Penelope", "Phaedra", "Polyxena", "Semele", "Thrace"]
+6
View File
@@ -0,0 +1,6 @@
en:
faker:
creature:
animal:
name: ["alligator", "crocodile", "alpaca", "ant", "antelope", "ape", "armadillo", "donkey", "baboon", "badger", "bat", "bear", "beaver", "bee", "beetle", "buffalo", "butterfly", "camel", "water buffalo", "caribou", "cat", "cattle", "cheetah", "chimpanzee", "chinchilla", "cicada", "clam", "cockroach", "cod", "coyote", "crab", "cricket", "crow", "raven", "deer", "dinosaur", "dog", "dolphin", "porpoise", "duck", "eagle", "eel", "elephant", "elk", "ferret", "fish", "fly", "fox", "frog", "toad", "gerbil", "giraffe", "gnat", "gnu ", "wildebeest", "goat", "goldfish", "goose", "gorilla", "grasshopper", "guinea pig", "hamster", "hare", "hedgehog", "herring", "hippopotamus", "hornet", "horse", "hound", "hyena", "impala", "jackal", "jellyfish", "kangaroo ", "wallaby", "koala", "leopard", "lion", "lizard", "llama", "locust", "louse", "macaw", "mallard", "mammoth", "manatee", "marten", "mink", "minnow", "mole", "monkey", "moose", "mosquito", "mouse", "rat", "mule", "muskrat", "otter", "ox", "oyster", "panda", "pig", "platypus", "porcupine", "prairie dog", "pug", "rabbit", "raccoon", "reindeer", "rhinoceros", "salmon", "sardine", "scorpion", "seal ", "sea lion", "serval", "shark", "sheep", "skunk", "snail", "snake", "spider", "squirrel", "swan", "termite", "tiger", "trout", "turtle ", "tortoise", "walrus", "wasp", "weasel", "whale", "wolf", "wombat", "woodchuck", "worm", "yak", "yellowjacket", "zebra"]
+8
View File
@@ -0,0 +1,8 @@
en:
faker:
app:
name: ['Redhold', 'Treeflex', 'Trippledex', 'Kanlam', 'Bigtax', 'Daltfresh', 'Toughjoyfax', 'Mat Lam Tam', 'Otcom', 'Tres-Zap', 'Y-Solowarm', 'Tresom', 'Voltsillam', 'Biodex', 'Greenlam', 'Viva', 'Matsoft', 'Temp', 'Zoolab', 'Subin', 'Rank', 'Job', 'Stringtough', 'Tin', 'It', 'Home Ing', 'Zamit', 'Sonsing', 'Konklab', 'Alpha', 'Latlux', 'Voyatouch', 'Alphazap', 'Holdlamis', 'Zaam-Dox', 'Sub-Ex', 'Quo Lux', 'Bamity', 'Ventosanzap', 'Lotstring', 'Hatity', 'Tempsoft', 'Overhold', 'Fixflex', 'Konklux', 'Zontrax', 'Tampflex', 'Span', 'Namfix', 'Transcof', 'Stim', 'Fix San', 'Sonair', 'Stronghold', 'Fintone', 'Y-find', 'Opela', 'Lotlux', 'Ronstring', 'Zathin', 'Duobam', 'Keylex', 'Andalax', 'Solarbreeze', 'Cookley', 'Vagram', 'Aerified', 'Pannier', 'Asoka', 'Regrant', 'Wrapsafe', 'Prodder', 'Bytecard', 'Bitchip', 'Veribet', 'Gembucket', 'Cardguard', 'Bitwolf', 'Cardify', 'Domainer', 'Flowdesk', 'Flexidy']
version: ['0.#.#', '0.##', '#.##', '#.#', '#.#.#']
author:
- "#{Name.name}"
- "#{Company.name}"
+5
View File
@@ -0,0 +1,5 @@
en:
faker:
appliance:
brand: ['Admiral','Amana','Blue Star','Bosch','Electrolux','Fagor','Franke','IKEA','KitchenAid','LG','Samsung','Sharp','Siemens','Whirlpool']
equipment: ['Air ioniser', 'Air purifier', 'Appliance plug', 'Aroma lamp', 'Attic fan', 'Bachelor griller', 'Back boiler', 'Beverage opener', 'Blender', 'Box mangle', 'Can opener', 'Ceiling fan', 'Central vacuum cleaner', 'Clothes dryer', 'Clothes iron', 'Cold-pressed juicer', 'Combo washer dryer', 'Dish draining closet', 'Dishwasher', 'Domestic robot', 'Drawer dishwasher', 'Electric water boiler', 'Evaporative cooler', 'Exhaust hood', 'Fan heater', 'Flame supervision device', 'Forced-air', 'Futon dryer', 'Garbage disposal unit', 'Gas appliance', 'Go-to-bed matchbox', 'HVAC', 'Hair dryer', 'Hair iron', 'Hob (hearth)', 'Home server', 'Humidifier', 'Icebox', 'Kimchi refrigerator', 'Mangle (machine)', 'Micathermic heater', 'Microwave oven', 'Mousetrap', 'Oil heater', 'Oven', 'Paper shredder', 'Patio heater', 'Radiator (heating)', 'Refrigerator', 'Sewing machine', 'Solar water heater', 'Space heater', 'Steam mop', 'Stove', 'Sump pump', 'Television', 'Tie press', 'Toaster and toaster ovens', 'Trouser press', 'Vacuum cleaner', 'Washing machine', 'Water cooker', 'Water heater', 'Water purifier', 'Window fan']
@@ -0,0 +1,4 @@
en:
faker:
aqua_teen_hunger_force:
character: ["Carl Brutananadilewski", "Cybernetic Ghost of Christmas Past from the Future", "D.P", "Dr. Weird", "Dr. Wongburger", "Emory", "Err", "Frylock", "George Lowe", "Ignignokt", "Master Shake", "MC Pee Pants", "Meatwad", "Oglethorpe", "Skeeter", "Steve", "Turkatron"]
+4
View File
@@ -0,0 +1,4 @@
en:
faker:
artist:
names: ["Donatello", "Botticelli", "Michelangelo", "Raphael", "Titian", "Durer", "Caravaggio", "Rubens", "Bernini", "Rembrandt", "Pissarro", "Manet", "Degas", "Cezanne", "Monet", "Renoir", "Cassatt", "Gauguin", "Munch", "Klimt", "Matisse", "Picasso", "Kandinsky", "Chagall", "Seurat", "Magritte", "Escher", "Rothko", "Dali", "Kahlo", "Pollock", "Warhol", "Vettriano", "Da Vinci", "El Greco", "Winslow Homer", "Paul Klee", "Edward Hopper", "Diego Rivera", "Vincent", "Joan Miro", "Ansel Adams"]
@@ -0,0 +1,120 @@
en:
faker:
back_to_the_future:
characters: ['Marty McFly', 'Dr. Emmett Brown', 'Lorraine Baines', 'George McFly', 'Biff Tannen', 'Jennifer Parker', 'Dave McFly', 'Linda McFly', 'Sam Baines', 'Stella Baines', 'Milton Baines', 'Sally Baines', 'Joey Baines', 'Mr. Strickland', 'Skinhead', '3-D', 'Match', 'Marvin Berry', 'Goldie Wilson', 'Mr. Peabody', 'Mark Dixon', 'Lou', 'Red The Bum', 'Einstein']
dates: ['November 5, 1955', 'November 12, 1955', 'October 25, 1985', 'October 26, 1985', 'October 21, 2015']
quotes: [
"Ah, Jesus Christ! Jesus Christ, Doc, you disintegrated Einstein!",
"All right. This is an oldie, but, uh... well, it's an oldie where I come from.",
"Am I to understand you're still hanging around with Dr. Emmett Brown, McFly?",
"And one for you, McFly; I believe that makes four in a row. Now let me give you a nickel's worth of free advice, young man. This so-called Dr. Brown is dangerous. He's a real nutcase. You hang around with him, you're gonna end up in big trouble.",
"Anyway, your Grandpa hit him with the car and brought him into the house. He seemed so helpless, like a little lost puppy, and my heart just went out to him.",
"Are you telling me that this sucker is nuclear?",
"Biff. What a character. Always trying to get away with something. I've had to stay on top of Biff ever since high school. Although, if it wasn't for him...",
"Calm down, Marty. I didn't disintegrate anything. The molecular structure of both Einstein and the car are completely intact.",
"Calvin? Wh... Why do you keep calling me Calvin?",
"Course! From a group of Lybian Nationalists They wanted me to build them a bomb, so I took their plutonium and in turn I gave them a shiny bomb caseing full of used pinball machine parts!",
"Crazy drunk driver.",
"Damn! I'm late for school!",
"Dear Dr. Brown. On the night that I go back in time, you will be shot by terrorists. Please take whatever precautions are necessary to prevent this terrible disaster. Your friend, Marty.",
"Don't be so gullible, McFly. Got the place fixed up nice, though, McFly.",
"Don't worry. As long as you hit that wire with the connecting hook at precisely 88 miles per hour, the instant the lightning strikes the tower... everything will be fine.",
"Give me a Pepsi Free.",
"Great Scott!",
"He laid out Biff in one punch. I didn't know he had it in him. He's never stood up to Biff in his life!",
"He's a Peeping Tom!",
"He's an absolute dream!",
"He's an idiot. Comes from upbringing. His parents are probably idiots, too. Lorraine, you ever have a kid who acts that way, I'll disown you.",
"Hello? Hello? Anybody home? Huh? Think, McFly. Think! I gotta have time to get them retyped. Do you realize what would happen if I hand in my reports in your handwriting? I'll get fired. You wouldn't want that to happen, would ya? Would ya?",
"Hey, Biff, get a load of this guy's life preserver. Dork thinks he's gonna drown.",
"Hey, come on. I had to change. Do you think I'm going back in that-that zoot suit? The old man really came through. It worked!",
"Hey, Dad! George! Hey, you on the bike!",
"Hey, hey, listen, guys... Look, I don't wanna mess with no reefer addicts, okay?",
"Hey, McFly! I thought I told you never to come in here.",
"Hey, you! Get your damn hands off her!",
"I can't believe you'd loan me your car without telling me it had a blind spot. I could've been killed!",
"I finally invent something that works!",
"I g-guess you guys aren't ready for that yet. But your kids are gonna love it.",
"I had a horrible nightmare. I dreamed that I went... back in time. It was terrible.",
"I have your car towed all the way to your house and all you got for me is lite beer?",
"I noticed your band is on the roster for the dance auditions after school today. Why even bother, McFly? You don't have a chance. You're too much like your old man. No McFly ever amounted to anything in the history of Hill Valley!",
"I'm from the future. I came here in a Time Machine that you invented. Now I need your help to get back to the year 1985.",
"I'm gonna get that son of a bitch.",
"I'm sure that in 1985, plutonium is available in every corner drugstore, but in 1955, it's a little hard to come by.",
"I've had enough practical jokes for one evening. Good night, future boy!",
"I've never seen purple underwear before!",
"If my calculations are correct, when this baby hits 88 miles per hour... you're gonna see some serious shit.",
"If you put your mind to it, you can accomplish anything.",
"It's already mutated into human form! Shoot it!",
"It's gonna be really hard waiting 30 years before I can talk to you about everything that's happened in the past few days. I'm really gonna miss you, Marty.",
"Jesus, George, it was a wonder I was even born.",
"Last night, Darth Vader came down from Planet Vulcan and told me that if I didn't take Lorraine out, that he'd melt my brain.",
"Let me show you my plan for sending you home. Please excuse the crudity of this model. I didn't have time to build it to scale or paint it.",
"Let's see if you bastards can do 90.",
"Look! There's a rhythmic ceremonial ritual coming up.",
"Look, I'm just not ready to ask Lorraine out to the dance, and not you, or anybody else on this planet is gonna make me change my mind.",
"Look, Marvin, you gotta play. See, that's where they kiss for the first time on the dance floor. And if there's no music, they can't dance. If they can't dance, they can't kiss. If they can't kiss they can't fall in love, and I'm history.",
"Look, you're not gonna be picking a fight, Dad... Dad-Dad-Daddy-O.",
"Lorraine. My density has brought me to you.",
"Marty, don't be such a square. Everybody who's anybody drinks.",
"Marty, I'm sorry, but the only power source capable of generating 1.21 gigawatts of electricity is a bolt of lightning.",
"Marty, will we ever see you again?",
"Maybe you were adopted.",
"My equipment. That reminds me, Marty. You better not hook up to the amplifier. There's a slight possibility of overload.",
"Next saturday night we're sending you back to the future!",
"No wonder your president has to be an actor. He's gotta look good on television.",
"No! It requires something with a little more kick...plutonium!",
"No! Marty! We've already agreed that having information about the future can be extremely dangerous. Even if your intentions are good, it can backfire drastically!",
"No, get out of town. My mom thinks I'm going camping with the guys. Look, Jennifer, my mother would freak out if she knew I was going out with you, and I'd get the standard lecture about how she never did that kind of stuff when she was a kid. I mean, look, I think the woman was born a nun.",
"No, no, no, no, no, this sucker's electrical, but I need a nuclear reaction to generate the 1.21 gigawatts of electricity I need.",
"Now, Biff, I want to make sure that we get two coats of wax this time, not just one.",
"Now, remember. According to my theory, you interfered with your parents' first meeting. If they don't meet, they won't fall in love, they won't get married and they won't have kids. That's why your older brother's disappearing from that photograph. Your sister will follow, and unless you repair the damage, you'll be next.",
"Oh, honey, he's teasing you. Nobody has two television sets.",
"Oh, my God. They found me. I don't know how, but they found me. Run for it, Marty!",
"Oh, that's Joey. He cries when we take him out so we just leave him in there.",
"Oh. One other thing. If you guys ever have kids, and one of them, when he's eight years old, accidentally sets fire to the living room rug... go easy on him.",
"Okay, thank you. That's enough. Hold it now. Hold it. Hold it, fellas. I'm afraid you're just too darn loud. Next, please. Bring in the next group, please.",
"Okay. Time circuit's on. Flux capacitor, fluxing. Engine running. All right.",
"Perfect! My experiment worked! They're all exactly 25 minutes slow!",
"Radiation suit? Of course. 'Cause of all the fallout from the atomic wars.",
"Roads? Where we're going, we don't need roads.",
"Save the clock tower!",
"Scram, McFly. I'm cuttin' in.",
"See you in about 30 years.",
"See you later, Pop. Whoo! Time to change that oil.",
"Silence, Earthling. My name is Darth Vader. I am an extraterrestrial from the planet Vulcan!",
"Since when can weathermen predict the weather, let alone the future?",
"Since you're new here, I-I'm gonna cut you a break, today. So, why don't you make like a tree and get outta here?",
"So you're my Uncle Joey. Better get used to these bars, kid.",
"Stand tall, boy. Have some respect for yourself. Don't you know, if you let people walk over you now, they'll be walking over you for the rest of your life. Look at me. You think I'm gonna spend the rest of my life in this slop house?",
"Stella! Another one of these damn kids jumped in front of my car! Come on out here! Help me take him in the house!",
"Take that, you mutated son of a bitch!",
"That's Strickland. Jesus, didn't that guy ever have hair?",
"The appropriate question is, 'when the hell are they?' You see, Einstein has just become the world's first time traveler! I sent him into the future. One minute into the future to be exact. And at precisely 1:21 a.m. and zero seconds, we shall catch up with him and the time machine.",
"The way I see it, if you're gonna build a time machine into a car, why not do it with some style?",
"There's that word again. 'Heavy.' Why are things so heavy in the future? Is there a problem with the Earth's gravitational pull?",
"Things have certainly changed around here. I remember when this was all farmland as far the eye could see. Old man Peabody owned all of this. He had this crazy idea about breeding pine trees.",
"This is all wrong. I don't know what it is. But when I kiss you, it's like I'm kissing... my brother. I guess that doesn't make any sense, does it?",
"Wait a minute. Wait a minute, Doc. Ah... Are you telling me that you built a time machine... out of a DeLorean?",
"We're the, uh... We're the Pinheads.",
"Weight has nothing to do with it.",
"Well, I figured, what the hell?",
"Well, you're safe and sound now, back in good old 1955.",
"What about all that talk about screwing up future events? The space-time continuum?",
"What are you looking at, butthead?",
"What happens to us in the future? Do we become assholes or something?",
"What if I send in the tape and they don't like it? I mean, what if they say I'm no good? What if they say 'Get outta here, kid. You got no future'? I mean, I just don't think I can take that kind of rejection. Jesus, I'm starting to sound like my old man!",
"What-what the hell is a gigawatt?",
"Who the hell is John F. Kennedy?",
"Who's President of the United States in 1985? Ronald Reagan? The actor? Ha! Then whose vice president? Jerry Lewis?",
"Whoa. This is heavy.",
"Whoa. Wait a minute, Doc. Are you trying to tell me that my mother has got the hots for me?",
"Yeah, well, history is gonna change.",
"Yes. Yes. I'm George. George McFly. I'm your density. I mean, your destiny.",
"You caused 300 bucks damage to my car, you son of a bitch. And I'm gonna take it out of your ass.",
"You got a real attitude problem, McFly; you're a slacker. You remind me of your father when he went here; he was a slacker, too.",
"You know, Marty, you look so familiar to me. Do I know your mother?",
"You really think I ought to swear?",
"You want a Pepsi, pal, you're gonna pay for it.",
"You're late! Do you have no concept of time?"
]
+302
View File
@@ -0,0 +1,302 @@
# Most of the iban details and the idea were copied from: https://github.com/iulianu/iban-tools
#
# Copyright (c) 2009 Iulian Dogariu
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
en:
faker:
bank:
name: ["UBS CLEARING AND EXECUTION SERVICES LIMITED", "ABN AMRO CORPORATE FINANCE LIMITED", "ABN AMRO FUND MANAGERS LIMITED", "ABN AMRO HOARE GOVETT SECURITIES", "ABN AMRO HOARE GOVETT CORPORATE FINANCE LTD.", "ALKEN ASSET MANAGEMENT", "ALKEN ASSET MANAGEMENT", "ABN AMRO HOARE GOVETT LIMITED", "AAC CAPITAL PARTNERS LIMITED", "ABBOTSTONE AGRICULTURAL PROPERTY UNIT TRUST", "ABN AMRO QUOTED INVESTMENTS (UK) LIMITED", "ABN AMRO MEZZANINE (UK) LIMITED", "ABBEY LIFE", "SANTANDER UK PLC", "OTKRITIE SECURITIES LIMITED", "ABC INTERNATIONAL BANK PLC", "ALLIED BANK PHILIPPINES (UK) PLC", "ABU DHABI ISLAMIC BANK", "ABG SUNDAL COLLIER LIMITED", "PGMS (GLASGOW) LIMITED", "ABINGWORTH MANAGEMENT LIMITED", "THE ROYAL BANK OF SCOTLAND PLC (FORMER RBS NV)"]
swift_bic: ["AACCGB21", "AACNGB21", "AAFMGB21", "AAHOGB21", "AAHVGB21", "AANLGB21", "AANLGB2L", "AAOGGB21", "AAPEGB21", "AAPUGB21", "AAQIGB21", "ABAZGB21", "ABBEGB21", "ABBYGB2L", "ABCCGB22", "ABCEGB2L", "ABCMGB21", "ABDIGB21", "ABECGB21", "ABFIGB21", "ABMNGB21", "ABNAGB21VOC" ]
iban_details:
# Data from http://www.tbg5-finance.org/?ibandocs.shtml/
ad:
# Andorra
length: 24
bban_pattern: '\d{8}[A-Z0-9]{12}'
ae:
# United Arab Emirates
length: 23
bban_pattern: '\d{19}'
al:
# Albania
length: 28
bban_pattern: '\d{8}[A-Z0-9]{16}'
at:
# Austria
length: 20
bban_pattern: '\d{16}'
az:
# Azerbaijan, Republic of
length: 28
bban_pattern: '[A-Z]{4}[A-Z0-9]{20}'
ba:
# Bosnia
length: 20
bban_pattern: '\d{16}'
be:
# Belgium
length: 16
bban_pattern: '\d{12}'
bg:
# Bulgaria
length: 22
bban_pattern: '[A-Z]{4}\d{6}[A-Z0-9]{8}'
bh:
# Bahrain
length: 22
bban_pattern: '[A-Z]{4}[A-Z0-9]{14}'
br:
# Brazil
length: 29
bban_pattern: '[0-9]{8}[0-9]{5}[0-9]{10}[A-Z]{1}[A-Z0-9]{1}'
ch:
# Switzerland
length: 21
bban_pattern: '\d{5}[A-Z0-9]{12}'
cr:
# Costa Rica
length: 22
bban_pattern: '0\d{3}\d{14}'
cy:
# Cyprus
length: 28
bban_pattern: '\d{8}[A-Z0-9]{16}'
cz:
# Czech Republic
length: 24
bban_pattern: '\d{20}'
de:
# Germany
length: 22
bban_pattern: '\d{18}'
dk:
# Denmark
length: 18
bban_pattern: '\d{14}'
do:
# Dominican Republic
length: 28
bban_pattern: '[A-Z]{4}\d{20}'
ee:
# Estonia
length: 20
bban_pattern: '\d{16}'
es:
# Spain
length: 24
bban_pattern: '\d{20}'
fi:
# Finland
length: 18
bban_pattern: '\d{14}'
fo:
# Faroe Islands
length: 18
bban_pattern: '\d{14}'
fr:
# France
length: 27
bban_pattern: '\d{10}[A-Z0-9]{11}\d{2}'
gb:
# United Kingdom
length: 22
bban_pattern: '[A-Z]{4}\d{14}'
ge:
# Georgia
length: 22
bban_pattern: '[A-Z]{2}\d{16}'
gi:
# Gibraltar
length: 23
bban_pattern: '[A-Z]{4}[A-Z0-9]{15}'
gl:
# Greenland
length: 18
bban_pattern: '\d{14}'
gr:
# Greece
length: 27
bban_pattern: '\d{7}[A-Z0-9]{16}'
gt:
# Guatemala
length: 28
bban_pattern: '[A-Z0-9]{4}\d{2}\d{2}[A-Z0-9]{16}'
hr:
# Croatia
length: 21
bban_pattern: '\d{17}'
hu:
# Hungary
length: 28
bban_pattern: '\d{24}'
ie:
# Ireland
length: 22
bban_pattern: '[A-Z]{4}\d{14}'
il:
# Israel
length: 23
bban_pattern: '\d{19}'
is:
# Iceland
length: 26
bban_pattern: '\d{22}'
it:
# Italy
length: 27
bban_pattern: '[A-Z]\d{10}[A-Z0-9]{12}'
kw:
# Kuwait
length: 30
bban_pattern: '[A-Z]{4}\d{22}'
kz:
# Kazakhstan
length: 20
bban_pattern: '[0-9]{3}[A-Z0-9]{13}'
lb:
# Lebanon
length: 28
bban_pattern: '\d{4}[A-Z0-9]{20}'
li:
# Liechtenstein
length: 21
bban_pattern: '\d{5}[A-Z0-9]{12}'
lt:
# Lithuania
length: 20
bban_pattern: '\d{16}'
lu:
# Luxembourg
length: 20
bban_pattern: '\d{3}[A-Z0-9]{13}'
lv:
# Latvia
length: 21
bban_pattern: '[A-Z]{4}[A-Z0-9]{13}'
mc:
# Monaco
length: 27
bban_pattern: '\d{10}[A-Z0-9]{11}\d{2}'
md:
# Moldova
length: 24
bban_pattern: '[A-Z]{2}[A-Z0-9]{18}'
me:
# Montenegro
length: 22
bban_pattern: '\d{18}'
mk:
# Macedonia
length: 19
bban_pattern: '\d{3}[A-Z0-9]{10}\d{2}'
mr:
# Mauritania
length: 27
bban_pattern: '\d{23}'
mt:
# Malta
length: 31
bban_pattern: '[A-Z]{4}\d{5}[A-Z0-9]{18}'
mu:
# Mauritius
length: 30
bban_pattern: '[A-Z]{4}\d{19}[A-Z]{3}'
nl:
# Netherlands
length: 18
bban_pattern: '[A-Z]{4}\d{10}'
'no':
# Norway
length: 15
bban_pattern: '\d{11}'
pk:
# Pakistan
length: 24
bban_pattern: '[A-Z]{4}[A-Z0-9]{16}'
pl:
# Poland
length: 28
bban_pattern: '\d{8}[A-Z0-9]{16}'
ps:
# Palestinian Territory, Occupied
length: 29
bban_pattern: '[A-Z]{4}[A-Z0-9]{21}'
pt:
# Portugal
length: 25
bban_pattern: '\d{21}'
qa:
# Qatar
length: 29
bban_pattern: '[A-Z]{4}[A-Z0-9]{21}'
ro:
# Romania
length: 24
bban_pattern: '[A-Z]{4}[A-Z0-9]{16}'
rs:
# Serbia
length: 22
bban_pattern: '\d{18}'
sa:
# Saudi Arabia
length: 24
bban_pattern: '\d{2}[A-Z0-9]{18}'
se:
# Sweden
length: 24
bban_pattern: '\d{20}'
si:
# Slovenia
length: 19
bban_pattern: '\d{15}'
sk:
# Slovakia
length: 24
bban_pattern: '\d{20}'
sm:
# San Marino
length: 27
bban_pattern: '[A-Z]\d{10}[A-Z0-9]{12}'
tl:
# Timor-Leste
length: 23
bban_pattern: '\d{19}'
tn:
# Tunisia
length: 24
bban_pattern: '\d{20}'
tr:
# Turkey
length: 26
bban_pattern: '\d{5}[A-Z0-9]{17}'
ua:
# Ukraine
length: 29
bban_pattern: '\d{25}'
vg:
# Virgin Islands, British
length: 24
bban_pattern: '[A-Z]{4}\d{16}'
xk:
# Kosovo, Republic of
length: 20
bban_pattern: '\d{16}'
+9
View File
@@ -0,0 +1,9 @@
en:
faker:
beer:
brand: ['Corona Extra', 'Heineken', 'Budweiser', 'Becks', 'BudLight', 'Pabst Blue Ribbon', 'Dos Equis', 'Blue Moon', 'Stella Artois', 'Miller Draft', 'Coors lite' , 'Amstel', 'Guinness', 'Kirin Inchiban', 'Tsingtao', 'Sierra Nevada', 'Rolling Rock', 'Red Stripe', 'Paulaner', 'Patagonia', 'Delirium Tremens', 'Delirium Noctorum', 'Samuel Adams', 'Sapporo Premium', 'Carlsberg', 'Pacifico', 'Quimes', 'Murphys', 'Birra Moretti', 'Harp', 'Fosters', 'Hoegaarden', 'Leffe', 'Lowenbrau']
name: ['Pliny The Elder', 'Founders Kentucky Breakfast', 'Trappistes Rochefort 10', 'HopSlam Ale', 'Stone Imperial Russian Stout', 'St. Bernardus Abt 12', 'Founders Breakfast Stout', 'Weihenstephaner Hefeweissbier', 'Péché Mortel', 'Celebrator Doppelbock', 'Duvel', 'Dreadnaught IPA', 'Nugget Nectar', 'La Fin Du Monde', 'Bourbon County Stout', 'Old Rasputin Russian Imperial Stout', 'Two Hearted Ale', 'Ruination IPA', 'Schneider Aventinus', 'Double Bastard Ale', '90 Minute IPA', 'Hop Rod Rye', 'Trappistes Rochefort 8', 'Chimay Grande Réserve', 'Stone IPA', 'Arrogant Bastard Ale', 'Edmund Fitzgerald Porter', 'Chocolate St', 'Oak Aged Yeti Imperial Stout', 'Ten FIDY', 'Storm King Stout', 'Shakespeare Oatmeal', 'Alpha King Pale Ale', 'Westmalle Trappist Tripel', 'Samuel Smiths Imperial IPA', 'Yeti Imperial Stout', 'Hennepin', 'Samuel Smiths Oatmeal Stout', 'Brooklyn Black', 'Oaked Arrogant Bastard Ale', 'Sublimely Self-Righteous Ale', 'Trois Pistoles', 'Bells Expedition', 'Sierra Nevada Celebration Ale', 'Sierra Nevada Bigfoot Barleywine Style Ale', 'Racer 5 India Pale Ale, Bear Republic Bre', 'Orval Trappist Ale', 'Hercules Double IPA', 'Maharaj', 'Maudite']
hop: ['Ahtanum', 'Amarillo', 'Bitter Gold', 'Bravo', 'Brewers Gold', 'Bullion', 'Cascade', 'Cashmere', 'Centennial', 'Chelan', 'Chinook', 'Citra', 'Cluster', 'Columbia', 'Columbus', 'Comet', 'Crystal', 'Equinox', 'Eroica', 'Fuggle', 'Galena', 'Glacier', 'Golding', 'Hallertau', 'Horizon', 'Liberty', 'Magnum', 'Millennium', 'Mosaic', 'Mt. Hood', 'Mt. Rainier', 'Newport', 'Northern Brewer', 'Nugget', 'Olympic', 'Palisade', 'Perle', 'Saaz', 'Santiam', 'Simcoe', 'Sorachi Ace', 'Sterling', 'Summit', 'Tahoma', 'Tettnang', 'TriplePearl', 'Ultra', 'Vanguard', 'Warrior', 'Willamette', 'Yakima Gol']
yeast: ['1007 - German Ale', '1010 - American Wheat', '1028 - London Ale', '1056 - American Ale', '1084 - Irish Ale', '1098 - British Ale', '1099 - Whitbread Ale', '1187 - Ringwood Ale', '1272 - American Ale II', '1275 - Thames Valley Ale', '1318 - London Ale III', '1332 - Northwest Ale', '1335 - British Ale II', '1450 - Dennys Favorite 50', '1469 - West Yorkshire Ale', '1728 - Scottish Ale', '1968 - London ESB Ale', '2565 - Kölsch', '1214 - Belgian Abbey', '1388 - Belgian Strong Ale', '1762 - Belgian Abbey II', '3056 - Bavarian Wheat Blend', '3068 - Weihenstephan Weizen', '3278 - Belgian Lambic Blend', '3333 - German Wheat', '3463 - Forbidden Fruit', '3522 - Belgian Ardennes', '3638 - Bavarian Wheat', '3711 - French Saison', '3724 - Belgian Saison', '3763 - Roeselare Ale Blend', '3787 - Trappist High Gravity', '3942 - Belgian Wheat', '3944 - Belgian Witbier', '2000 - Budvar Lager', '2001 - Urquell Lager', '2007 - Pilsen Lager', '2035 - American Lager', '2042 - Danish Lager', '2112 - California Lager', '2124 - Bohemian Lager', '2206 - Bavarian Lager', '2278 - Czech Pils', '2308 - Munich Lager', '2633 - Octoberfest Lager Blend', '5112 - Brettanomyces bruxellensis', '5335 - Lactobacillus', '5526 - Brettanomyces lambicus', '5733 - Pediococcus']
malt: ['Black malt', 'Caramel', 'Carapils', 'Chocolate', 'Munich', 'Caramel', 'Carapils', 'Chocolate malt', 'Munich', 'Pale', 'Roasted barley', 'Rye malt', 'Special roast', 'Victory', 'Vienna', 'Wheat mal']
style: ["Light Lager", "Pilsner", "European Amber Lager", "Dark Lager", "Bock", "Light Hybrid Beer", "Amber Hybrid Beer", "English Pale Ale", "Scottish And Irish Ale", "Merican Ale", "English Brown Ale", "Porter", "Stout", "India Pale Ale", "German Wheat And Rye Beer", "Belgian And French Ale", "Sour Ale", "Belgian Strong Ale", "Strong Ale", "Fruit Beer", "Vegetable Beer", "Smoke-flavored", "Wood-aged Beer"]
@@ -0,0 +1,6 @@
en:
faker:
bojack_horseman:
characters: ["Joseph Sugarman", "Princess Carolyn", "Kelsey Jannings", "Katrina Peanutbutter", "Charley Witherspoon", "Tom Jumbo-Grumbo", "Wanda Pierce", "Officer Meow Meow Fuzzyface", "Hank Hippopopalous", "Tina", "Courtney Portnoy", "Mr Peanutbutter", "Todd Chavez", "Wayne", "Dr Allen Hu", "Sarah Lynn", "Jogging Baboon", "A Ryan Seacrest Type", "Emily", "Vincent Adultman", "Sebastian St Clair", "Hollyhock", "Butterscotch Horseman", "Roxy", "Beatrice Horseman", "Herb Kazzaz", "Sextina Aquafina", "Rutabaga Rabbitowitz", "Charlotte Moore", "Ralph Stilton", "Paparazzi Birds", "Lenny Turteltaub", "Corduroy Jackson-Jackson", "Judah", "Woodchuck Coodchuck-Berkowitz", "Diane Nguyen", "Honey Sugarman", "BoJack Horseman", "Pinky Penguin"]
quotes: ["It gets easier. But you have to do it every day, that's the hard part. But it does get easier", "Yes, I ate all the muffins, because I have no self-control and I hate myself", "Dead on the inside, dead on the outside", "The universe is a cruel, uncaring void. The key to being happy isn't a search for meaning. It's to just keep yourself busy with unimportant nonsense, and eventually, you'll be dead", "Beer before liquor, never sicker, liquor before beer, never fear, don't do heroin", "If you care about what other people think, you're never gonna do anything", "Ow, crap. I hate this. Running is terrible. Everything is the worst", "For a lot of people, life is just one long, hard kick in the urethra", "Spaghetti or not, here I come", "I need to go take a shower so I can't tell if I'm crying or not", "You know what the problem is with everybody? They all just want to hear what they already believe. No one ever wants to hear the truth", "I don't understand how people live. It's amazing to me that people wake up every morning and say: 'Yeah, another day, let's do it.' How do people do it? I don't know how", "Not understanding that you're a horrible person doesn't make you less of a horrible person", "That's the problem with life, either you know what you want and you don't get what you want, or you get what you want and then you don't know what you want", "I do love you, by the way. I mean as much as I'm capable of loving anyone"]
tongue_twisters: ["Courtney Portnoy portrayed the formerly portly consort in the seaport resort", "Courtly roles like the formerly portly consort are Courtney Portnoy's forté", "That's sorta been thwarted unfortunately cos Courtney's purportedly falling short of shoring up fourth quadrant support", "Portnoy finds joy in hoi polloi boy toy", "Did you steal a meal from Neal McBeal the Navy Seal?", " audiences are going to adore your tour de force performance as the forceful denim-clad court reporter in 'The Court Reporter Sported Jorts', the jet-setting jort-sporting court reporter story"]
File diff suppressed because one or more lines are too long
+6
View File
@@ -0,0 +1,6 @@
en:
faker:
bossa_nova:
artists: ["Alaide Costa", "Antonio Carlos Jobim", "Astrud Gilberto", "Baden Powell", "Bebel Gilberto", "Billy Blanco", "Bola Sete", "Caetano Veloso", "Carlos Lyra", "Chico Buarque", "Chico Moraes", "Danilo Caymmi", "Dori Caymmi", "Dorival Caymmi", "Edu Lobo", "Elis Regina", "Elizeth Cardoso", "Elza Soares", "Gal Costa", "Geraldo Vandre", "Gilberto Gil", "Johnny Alf", "Jorge Ben Jor", "Joyce Moreno", "Joao Donato", "Joao Gilberto", "Joao Gilberto", "Laurindo de Almeida", "Leny Andrade", "Lisa Ono", "Lucio Alves", "Luiz Bonfa", "Luiz Eca", "Marcos Valle", "Maria Bethania", "Minas", "Nara Leao", "Nelson Motta", "Novos Baianos", "Os Cariocas", "Oscar Castro Neves", "Roberto Menescal", "Ronaldo Boscoli", "Sergio Mendes", "Stan Getz", "Toquinho", "Vinicius de Moraes", "Wanda Sa", "Wilson Simonal", "Zimbo Trio"]
songs: ["A Banda", "Acabou Chorare", "Alo, alo Marciano", "Aquarela", "Aquarela Do Brasil", "Batucada Surgiu", "Bossa Jazz", "Canto de Ossanha", "Catavento", "Chega de Saudade", "Chora Tua Tristeza", "Chuva de Prata", "Chao de Giz", "Clube do Samba", "Coisa Mais Linda", "Corcovado", "Calice", "Desafinado", "Dindi", "Diz Que Fui Por Ai", "Drao", "Ela E Carioca", "Entardecendo", "Eu Bebo Sim", "Eu Nao Existo Sem Voce", "Eu Preciso Dizer Que Te Amo", "Eu Sei Que Vou Te Amar", "Eu Sei Que Vou Te Amar", "Garota de Ipanema", "Ginza Samba", "Influencia Do Jazz", "Insensatez", "Ladainha", "Luiza", "Malandro", "Manha De Carnaval", "Mas Que Nada", "Moonlight in Rio", "O Barquinho", "O Bebado e A Equilibrista", "O Leaozinho", "O Que E Que A Bahiana Tem", "Para Viver Um Grande Amor", "Piston de Gafieira", "Pra Nao Dizer Que Nao Falei Das Flores", "Samba De Uma Nota So", "Samba Esquema Novo", "Samba da Bencao", "Samba da Bencao", "Samba de Orly", "Samba em Prelúdio", "Sabado em Copacabana", "Tarde Em Itapoa", "Valsa de Uma Cidade", "Voce E Linda", "Zum-Zum", "Agua de beber", "Aguas de Marco"]
+28
View File
@@ -0,0 +1,28 @@
en:
faker:
breaking_bad:
character: [
"Walter White", "Hank Schrader", "Skyler White", "Jesse Pinkman", "Gustavo Fring",
"Mike Ehrmantraut", "Jimmy McGill", "Hector 'Tio' Salamanca", "Lydia Rodarte-Quayle",
"Jane Margolis", "Tuco Salamanca", "The Cousins", "Ted Beneke", "Gale Boetticher",
"Walter White Jr.", "Todd Alquist", "Brock Cantillo", "Andrea Cantillo", "Jack Welker",
"Krazy-8", "'Don' Eladio Vuente", "Marie Schrader", "Gretchen Schwartz",
"Huell Babineaux", "Tortuga", "Victor", "Juan Bolsa", "Tomás Cantillo", "Holly White",
"Steven Gomez", "Emilio Koyama", "Drew Sharp", "Declan", "Carmen Molina",
"Brandon 'Badger' Mayhew", "Christian 'Combo' Ortega", "Rival Dealers", "Ed", "Ken",
"Kenny", "Group Leader", "George Merkert", "Adam Pinkman", "Mrs Pinkman", "No-Doze",
"Gonzo"
]
episode: [
"Pilot", "Cat's in the Bag...", "...And the Bag's in the River", "Cancer Man",
"Gray Matter", "Crazy Handful of Nothin", "A No-Rough-Stuff-Type Deal",
"Seven Thirty-Seven", "Grilled", "Bit by a Dead Bee", "Down", "Breakage", "Peekaboo",
"Negro y Azul", "Better Call Saul", "4 Days Out", "Over", "Mandala", "Phoenix", "ABQ",
"No Más", "Caballo Sin Nombre", "I.F.T.", "Green Light", "Más", "Sunset", "One Minute",
"I See You", "Kafkaesque", "Fly", "Abiquiu", "Half Measures", "Full Measure",
"Box Cutter", "Thirty-Eight Snub", "Open House", "Bullet Points", "Shotgun",
"Cornered", "Problem Dog", "Hermanos", "Bug", "Salud", "Crawl Space", "End Times",
"Face Off", "Live Free or Die", "Madrigal", "Hazard Pay", "Fifty-One", "Dead Freight",
"Buyout", "Say My Name", "Gliding Over All", "Blood Money", "Buried", "Confessions",
"Rabid Dog", "To'hajiilee", "Ozymandias", "Granite State", "Felina"
]
+260
View File
@@ -0,0 +1,260 @@
en:
faker:
buffy:
characters: [
'Buffy Summers',
'Xander Harris',
'Willow Rosenberg',
'Rupert Giles',
'Cordelia Chase',
'Angel',
'Spike',
'Oz',
'Anya Jenkins',
'Dawn Summers',
'Joyce Summers',
'Tara Maclay',
'Riley Finn',
'Drusilla',
'Faith Lehane',
'Jonathan Levinson',
'Harmony Kendall',
'Amy Madison',
'Andrew Wells',
'Darla',
'Ethan Rayne'
]
quotes: [
"In every generation there is a chosen one.",
"Power. I have it. They don't. This bothers them.",
"No weapons, no friends, no hope. Take all that away, and what's left? Me.",
"I'm the thing that monsters have nightmares about.",
"Strong is fighting. It's hard and it's painful, and it's every day. It's what we have to do. And we can do it together.",
"I'm beyond tired. I'm beyond scared. I'm standing on the mouth of hell, and it's gonna swallow me whole. And it'll choke on me. We're not ready? They're not ready.",
"There is only one thing on this earth more powerful than evil. And that's us.",
"So what — are we helpless puppets? No. The big moments are gonna come. You can't help that. It's what you do afterwards that counts. That's when you find out who you are.",
"When it's really something that matters, they fight. I mean, they're lame morons for fighting, but they do. They never— they never quit. And so I guess I will keep fighting, too.",
"If the apocalypse comes, beep me.",
"The hardest thing in this world is to live in it.",
"In every generation there is a chosen one. She alone will stand against the vampires, the demons, and the forces of darkness. She is the slayer.",
"I may be dead, but I'm still pretty. Which is more than I can say for you.",
"Cordelia, your mouth is open, sound is coming from it. This is never good.",
"Harmony, when you tried to be head cheerleader, you were bad. When you tried to chair the Homecoming committee, you were really bad. But when you try to be bad... you suck.",
"They were supposed to be my light at the end of the tunnel. I guess they were a train.",
"I don't know what's coming next. But I do know it's gonna be just like this.",
"Well, I like you. You're nice, and you're funny, and you don't smoke. Yeah, okay, werewolf, but... that's not all the time. I mean, three days out of the month, I'm not much fun to be around either.",
"A good Sunnydale rule-of-thumb? Avoid white-skinned men in capes.",
"I can kill a couple of geeks all by myself. But, hey, if you'd like to watch... I mean, that's what you Watchers are good at, right? Watching?",
"I'm talking! Don't interrupt me! Insignificant man. I am Willow. I am death. If you dare defy me, I will call down my fury, exact fresh vengeance, and make your worst fears come true. Okay?",
"Just because you're better than us doesn't mean you can be all superior.",
"You should never hurt the feelings of a brutal killer. You know, that's, uh, that's actually some pretty good advice.",
"A vampire isn't a person at all. It may have the movements, the memories, even the personality of the person it took over, but it's a demon at the core. There is no halfway.",
"I'm leaning towards blind panic myself.",
"Well, I'm a hair's breath from investigating bunnies at the moment, so I'm open to anything.",
"Buffy, what you said, it flies in the face of everything we've ever... every generation has ever done in the fight against evil. I think it's bloody brilliant.",
"Now, I know you haven't been in the game for a while, mate, but we still do kill people. Sort of our raison d'etre, you know.",
"She wouldn't even kill me. She just left. She didn't even care enough to cut off my head, or set me on fire. I mean, is that too much to ask? You know? Some little sign that she cared? It was the truce with Buffy that did it. Dru said I'd gone soft - wasn't demon enough for the likes of her.",
"Well, isn't this usually the part where you... kick me in the head and run out, virtue fluttering?",
"Oh, I don't know. Looking in the mirror every day and seeing nothing there...it's an overrated pleasure.",
"Sorry about the chains. It's not that I don't trust you, it's... Actually, it is that I don't trust you.",
"I'm just so excited. They come in, I help them, they give us money in exchange for goods, you give me money for working for you. I have a place in the world now. I'm part of the system. I'm a workin' gal.",
"Wow, it's like, one second you were this klutzy teenager with false memories and a history of kleptomania, and then suddenly you were a hero. A hero with a much abbreviated life span.",
"You gotta give me something to do. There's no way I'm sleeping. Don't you need anyone dead? Or maimed? I can settle for maimed.",
"You know, I honestly don't think there's a human word fabulous enough for me.",
"We don't know much about them except for they're very ugly, and they're very mobile for blind people.",
"And I wonder what possible catastrophe came crashing down from heaven and brought this dashing stranger to tears?"
]
celebrities: [
'Sarah Michelle Geller',
'Alyson Hannigan',
'David Boreanaz',
'Eliza Dushku',
'Michelle Trachtenberg',
'Rachel Bilson',
'Seth Green',
'John Ritter',
'Amy Adams',
'Ashanti',
'Eric Balfour',
'Julie Benz',
'Clare Cramer',
'Carmine Giovinazzo',
'Clea Duvall',
'Eion Bailey',
'Shane West',
'Pedro Pascal',
'Kal Penn',
'Amber Tamblyn'
]
big_bads: [
'The Master',
'Drusilla',
'Angelus',
'Mayor Richard Wilkins III',
'Maggie Walsh',
'Adam',
'Warren Mears',
'Caleb',
'The First Evil',
'Dark Willow',
'The Anointed One'
]
episodes: [
# Season 1
"Welcome to the Hellmouth",
"The Harvest",
"Witch",
"Teacher's Pet",
"Never Kill a Boy on the First Date",
"The Pack",
"Angel",
"I Robot, You Jane",
"The Puppet Show",
"Nightmares",
"Out of Mind, Out of Sight",
"Prophecy Girl",
# Season 2
"When She Was Bad",
"Some Assembly Required",
"School Hard",
"Inca Mummy Girl",
"Reptile Boy",
"Halloween",
"Lie to Me",
"The Dark Age",
"What's My Line, Part One",
"What's My Line, Part Two",
"Ted",
"Bad Eggs",
"Surprise",
"Innocence",
"Phases",
"Bewitched, Bothered and Bewildered",
"Passion",
"Killed by Death",
"I Only Have Eyes for You",
"Go Fish",
"Becoming, Part One",
"Becoming, Part Two",
# Season 3
"Anne",
"Dead Man's Party",
"Faith, Hope & Trick",
"Beauty and the Beasts",
"Homecoming",
"Band Candy",
"Revelations",
"Lovers Walk",
"The Wish",
"Amends",
"Gingerbread",
"Helpless",
"The Zeppo",
"Bad Girls",
"Consequences",
"Doppelgangland",
"Enemies",
"Earshot",
"Choices",
"The Prom",
"Graduation Day, Part One",
"Graduation Day, Part Two",
# Season 4
"The Freshman",
"Living Conditions",
"The Harsh Light of Day",
"Fear, Itself",
"Beer Bad",
"Wild at Heart",
"The Initiative",
"Pangs",
"Something Blue",
"Hush",
"Doomed",
"A New Man",
"The I in Team",
"Goodbye Iowa",
"This Year's Girl",
"Who Are You",
"Superstar",
"Where the Wild Things Are",
"New Moon Rising",
"The Yoko Factor",
"Primeval",
"Restless",
# Season 5
"Buffy vs. Dracula",
"Real Me",
"The Replacement",
"Out of My Mind",
"No Place Like Home",
"Family",
"Fool for Love",
"Shadow",
"Listening to Fear",
"Into the Woods",
"Triangle",
"Checkpoint",
"Blood Ties",
"Crush",
"I Was Made to Love You",
"The Body",
"Forever",
"Intervention",
"Tough Love",
"Spiral",
"The Weight of the World",
"The Gift",
# Season 6
"Bargaining, Part One",
"Bargaining, Part Two",
"After Life",
"Flooded",
"Life Serial",
"All the Way",
"Once More, with Feeling",
"Tabula Rasa",
"Smashed",
"Wrecked",
"Gone",
"Doublemeat Palace",
"Dead Things",
"Older and Far Away",
"As You Were",
"Hell's Bells",
"Normal Again",
"Entropy",
"Seeing Red",
"Villains",
"Two to Go",
"Grave",
# Season 7
"Lessons",
"Beneath You",
"Same Time, Same Place",
"Help",
"Selfless",
"Him",
"Conversations with Dead People",
"Sleeper",
"Never Leave Me",
"Bring on the Night",
"Showtime",
"Potential",
"The Killer in Me",
"First Date",
"Get It Done",
"Storyteller",
"Lies My Parents Told Me",
"Dirty Girls",
"Empty Places",
"Touched",
"End of Days",
"Chosen"
]
+6
View File
@@ -0,0 +1,6 @@
en:
faker:
business:
credit_card_numbers: ['1234-2121-1221-1211', '1212-1221-1121-1234', '1211-1221-1234-2201', '1228-1221-1221-1431']
credit_card_types: ['visa', 'mastercard', 'american_express', 'discover', 'diners_club', 'jcb', 'switch', 'solo', 'dankort', 'maestro', 'forbrugsforeningen', 'laser']
credit_card_expiry_dates: ['2011-10-12', '2012-11-12', '2015-11-11', '2013-9-12']
+12
View File
@@ -0,0 +1,12 @@
en:
faker:
cannabis:
strains: ["24k", "Alien Diesel", "Banana OG", "Bio-Diesel", "Black Diamond OG", "Black Jack", "Blackberry Cookies", "Blackberry Soda", "Blackwater OG", "Blue Dream", "Blueberry Tangie", "Boss Hog", "Cali Mist", "Candy Skunk", "Candyland", "Canna Sutra", "Cheese", "Chem Berry", "Cherry Cheese", "Cherry Lime", "Chocolate Hashberry", "Chronic", "Church OG", "Clementine", "Colfax Cookies", "Colfax Jack", "Colfax Platinum", "Critical Kush", "Diablo OG", "Double Dutch Bus", "Dutch Treat", "Forbidden Fruit", "Gelato", "Ghost OG", "Girl Scout Cookies", "Godzilla Glue", "Golden Strawberries", "Gorilla Glue", "Gorilla Princess", "Granddaddy Purple Kush", "Grapefruit Kush", "Green Cobra", "Green Queen", "Hardcore Grapes", "Heavy OG", "Jack Frost", "Key Lime Pie", "King Kong OG", "King Louis OG", "Kings Reserve OG", "Koffee Cake", "Lemon Jack", "Lemon Meringue", "Lemon Skunk", "Lemonade", "Lime #5", "Lucky Charms", "Master OG", "Maui Jack", "Mendo Breath", "Mojito", "Moon Glue", "Mr. Nice Guy", "NY Sour Diesel", "Nectarine", "Novicane Kush", "Nug Salad", "OG Chem", "OG Salad", "ONAC OG", "Panama Punch", "Pineapple Sage", "Pinesol OG", "Pink Lotus", "Pitbull", "Platinum OG", "Presidential OG", "Private Reserve", "Purple Punch", "Queen Dream", "Rainbow Sherbet", "Raskal OG", "Redwood Bubba Kush", "Rude Boi OG", "Satellite OG", "Saturn OG", "Sherbert", "Skywalker OG", "Snozzberry OG", "Sonoma Glue", "Soul Assasin OG", "Soul Assassin", "Sour Cheese", "Strawberry Banana", "Strawberry Cough", "Strawberry Moonrocks", "Strawberry Shortcake", "Sugar Momma", "Sunset Sherbert", "Super Glue", "Super Jack", "Super Silver Haze", "Tangie", "Watermelon", "White Tahoe Cookies", "Whitewalker OG", "XJ-13"]
cannabinoid_abbreviations: ["THC", "THCa", "∆9THC", "∆8THC", "THCv", "THCv", "CBD", "CBDa", "CBDv", "CBN", "CBNa", "CBG", "CBGa", "CBC", "CBCa", "CBL", "CBLa"]
cannabinoids: ["Tetrahydrocannabinol", "Tetrahydrocannabinolic Acid", "Tetrahydrocannabivarin", "Cannabidiol", "Cannabidiolic Acid", "Cannabidivarin", "Cannabinol", "Cannabinolic Acid", "Cannabigerol", "Cannabigerolic Acid", "Cannabichromene", "Cannabichromic Acid", "Cannabicyclol", "Cannabicyclic Acid"]
terpenes: ["α Pinene", "Myrcene", "α Phellandrene", "∆ 3 Carene", "Terpinene", "Limonene", "α Terpinolene", "Linalool", "Fenchol", "Borneol", "Terpineol", "Geraniol", "α Humulene", "β Caryophyllene", "Caryophyllene Oxide", "α Bisabolol", "Camphene", "β Pinene", "Ocimene", "Sabinene", "Camphor", "Isoborneol", "Menthol", "α Cedrene", "Nerolidol", "R-(+)-Pulegone", "Eucalyptol", "p-Cymene", "(-)-Isopulegol", "Geranyl", "Acetate", "Guaiol", "Valencene", "Phytol", "Citronellol"]
medical_uses: ["analgesic", "anti-bacterial", "anti-diabetic", "anti-emetic", "anti-epileptic", "anti-fungal", "anti-depressant", "anti-inflammatory", "anti-insomnia", "anti-ischemic", "anti-cancer", "anti-psoriatic", "anti-psychotic", "anti-spasmodic", "anti-anxiety", "appetite stimulant", "anorectic", "bone stimulant", "immunoregulation", "immunostimulant", "intestinal anti-prokinetic", "neuroprotective", "bronchodilator", "anti-stress", "anti-septic", "psychoactive", "non-psychoactive", "decongestant", "anti-histamine", "anti-oxidant", "anti-viral"]
health_benefits: ["relieves pain", "kills or slows bacteria growth", "reduces blood sugar levels", "reduces vomiting and nausea", "reduces seizures and convulsion", "treats fungal infection", "treats depression", "reduces inflammation", "aids sleep", "reduces risk of artery blockage", "inhibits cell growth in tumors/cancer cells", "treats psoriasis", "tranquilizing", "suppresses muscle spasms", "relieves anxiety", "stimulates appetite", "suppresses appetite", "promotes bone growth", "regulates function in the immune system", "stimulates function in the immune system", "reduces contractions in the small intestines", "protects against nervous system degeneration", "improves airflow to lungs", "prevents stress", "prevents infection", "affects mental activity", "does not affect mental activity", "relieves congestion", "treats allergy symptoms", "cell protectant", "treats viral infections"]
categories: ["capsules", "concentrates", "crumble", "crystalline", "distillate", "edibles", "flower", "ice hash", "live resin", "medical", "rosin", "seeds & clones", "shatter", "tinctures", "topicals", "vape pens"]
types: ["hybrid", "indica", "sativa"]
buzzwords: ["blunt wrap", "bong", "bottom shelf", "bubbler", "cashed", "cbd", "dank", "eighth", "gram", "high", "hydroponic", "keef", "marijuana", "mary jane", "munchies", "ounce", "papers", "pipe", "pound", "private reserve", "ripped", "spliff", "stoned", "terpene", "thc", "toke", "top shelf", "wake and bake", "weed"]
+7
View File
@@ -0,0 +1,7 @@
en:
faker:
creature:
cat:
name: ["Alfie", "Angel", "Bella", "Charlie", "Chloe", "Coco", "Daisy", "Felix", "Jasper", "Lily", "Lucky", "Lucy", "Max", "Millie", "Milo", "Missy", "Misty", "Molly", "Oliver", "Oscar", "Poppy", "Sam", "Shadow", "Simba", "Smokey", "Smudge", "Sooty", "Tiger"]
breed: ["Abyssinian", "Aegean", "American Bobtail", "American Curl", "American Shorthair", "American Wirehair", "Arabian Mau", "Asian", "Asian Semi-longhair", "Australian Mist", "Balinese", "Bambino", "Bengal", "Birman", "Bombay", "Brazilian Shorthair", "British Longhair", "British Semipi-longhair", "British Shorthair", "Burmese", "Burmilla", "California Spangled", "Chantilly-Tiffany", "Chartreux", "Chausie", "Cheetoh", "Colorpoint Shorthair", "Cornish Rex", "Cymric, or Manx Longhair", "Cyprus", "Devon Rex", "Donskoy, or Don Sphynx", "Dragon Li", "Dwarf cat, or Dwelf", "Egyptian Mau", "European Shorthair", "Exotic Shorthair", "Foldex Cat", "German Rex", "Havana Brown", "Highlander", "Himalayan, or Colorpoint Persian", "Japanese Bobtail", "Javanese", "Khao Manee", "Korat", "Korean Bobtail", "Korn Ja", "Kurilian Bobtail", "Kurilian Bobtail, or Kuril Islands Bobtail", "LaPerm", "Lykoi", "Maine Coon", "Manx", "Mekong Bobtail", "Minskin", "Munchkin", "Napoleon", "Nebelung", "Norwegian Forest Cat", "Ocicat", "Ojos Azules", "Oregon Rex", "Oriental Bicolor", "Oriental Longhair", "Oriental Shorthair", "PerFold Cat (Experimental Breed - WCF)", "Persian (Modern Persian Cat)", "Persian (Traditional Persian Cat)", "Peterbald", "Pixie-bob", "Raas", "Ragamuffin", "Ragdoll", "Russian Blue", "Russian White, Black and Tabby", "Sam Sawet", "Savannah", "Scottish Fold", "Selkirk Rex", "Serengeti", "Serrade petit", "Siamese", "Siberian", "Singapura", "Snowshoe", "Sokoke", "Somali", "Sphynx", "Suphalak", "Thai", "Tonkinese", "Toyger", "Turkish Angora", "Turkish Van", "Ukrainian Levkoy"]
registry: ["American Cat Fanciers Association", "Associazione Nazionale Felina Italiana", "Canadian Cat Association", "Cat Aficionado Association", "Cat Fanciers' Association", "Emirates Feline Federation", "Fédération Internationale Féline", "Felis Britannica", "Governing Council of the Cat", "Fancy Southern Africa Cat Council", "The International Cat Association"]
+82
View File
@@ -0,0 +1,82 @@
en:
faker:
chuck_norris:
fact: [
"All arrays Chuck Norris declares are of infinite size, because Chuck Norris knows no bounds.",
"Chuck Norris doesn't have disk latency because the hard drive knows to hurry the hell up.",
"All browsers support the hex definitions #chuck and #norris for the colors black and blue.",
"Chuck Norris can't test for equality because he has no equal.",
"Chuck Norris doesn't need garbage collection because he doesn't call .Dispose(), he calls .DropKick().",
"Chuck Norris's first program was kill -9.", "Chuck Norris burst the dot com bubble.",
"Chuck Norris writes code that optimizes itself.",
"Chuck Norris can write infinite recursion functions... and have them return.",
"Chuck Norris can solve the Towers of Hanoi in one move.",
"The only pattern Chuck Norris knows is God Object.",
"Chuck Norris finished World of Warcraft.",
"Project managers never ask Chuck Norris for estimations... ever.",
"Chuck Norris doesn't use web standards as the web will conform to him.",
"\"It works on my machine\" always holds true for Chuck Norris.",
"Whiteboards are white because Chuck Norris scared them that way.",
"Chuck Norris's beard can type 140 wpm.",
"Chuck Norris can unit test an entire application with a single assert.",
"Chuck Norris doesn't bug hunt, as that signifies a probability of failure. He goes bug killing.",
"Chuck Norris's keyboard doesn't have a Ctrl key because nothing controls Chuck Norris.",
"Chuck Norris doesn't need a debugger, he just stares down the bug until the code confesses.",
"Chuck Norris can access private methods.",
"Chuck Norris can instantiate an abstract class.",
"Chuck Norris doesn't need to know about class factory pattern. He can instantiate interfaces.",
"The class object inherits from Chuck Norris.",
"For Chuck Norris, NP-Hard = O(1).",
"Chuck Norris knows the last digit of PI.",
"Chuck Norris can divide by zero.",
"Chuck Norris doesn't get compiler errors,
the language changes itself to accommodate Chuck Norris.",
"The programs that Chuck Norris writes don't have version numbers because he only writes them once. If a user reports a bug or has a feature request they don't live to see the sun set.",
"Chuck Norris doesn't believe in floating point numbers because they can't be typed on his binary keyboard.",
"Chuck Norris solved the Travelling Salesman problem in O(1) time.",
"Chuck Norris never gets a syntax error. Instead, the language gets a DoesNotConformToChuck error.",
"No statement can catch the ChuckNorrisException.",
"Chuck Norris doesn't program with a keyboard. He stares the computer down until it does what he wants.",
"Chuck Norris doesn't pair program.",
"Chuck Norris can write multi-threaded applications with a single thread.",
"There is no Esc key on Chuck Norris' keyboard, because no one escapes Chuck Norris.",
"Chuck Norris doesn't delete files, he blows them away.",
"Chuck Norris can binary search unsorted data.",
"Chuck Norris breaks RSA 128-bit encrypted codes in milliseconds.",
"Chuck Norris went out of an infinite loop.",
"Chuck Norris can read all encrypted data, because nothing can hide from Chuck Norris.",
"Chuck Norris hosting is 101% uptime guaranteed.",
"When a bug sees Chuck Norris, it flees screaming in terror, and then immediately self-destructs to avoid being roundhouse-kicked.",
"Chuck Norris rewrote the Google search engine from scratch.",
"Chuck Norris doesn't need the cloud to scale his applications, he uses his laptop.",
"Chuck Norris can access the DB from the UI.",
"Chuck Norris' protocol design method has no status, requests or responses, only commands.",
"Chuck Norris' programs occupy 150% of CPU, even when they are not executing.",
"Chuck Norris can spawn threads that complete before they are started.",
"Chuck Norris programs do not accept input.",
"Chuck Norris doesn't need an OS.",
"Chuck Norris can compile syntax errors.",
"Chuck Norris compresses his files by doing a flying round house kick to the hard drive.",
"Chuck Norris doesn't use a computer because a computer does everything slower than Chuck Norris.",
"You don't disable the Chuck Norris plug-in, it disables you.",
"Chuck Norris doesn't need a java compiler, he goes straight to .war",
"Chuck Norris can use GOTO as much as he wants to. Telling him otherwise is considered harmful.",
"There is nothing regular about Chuck Norris' expressions.",
"Quantum cryptography does not work on Chuck Norris. When something is being observed by Chuck it stays in the same state until he's finished.",
"There is no need to try catching Chuck Norris' exceptions for recovery; every single throw he does is fatal.",
"Chuck Norris' beard is immutable.",
"Chuck Norris' preferred IDE is hexedit.",
"Chuck Norris is immutable. If something's going to change, it's going to have to be the rest of the universe.",
"Chuck Norris' addition operator doesn't commute; it teleports to where he needs it to be.",
"Anonymous methods and anonymous types are really all called Chuck Norris. They just don't like to boast.",
"Chuck Norris doesn't have performance bottlenecks. He just makes the universe wait its turn.",
"Chuck Norris does not use exceptions when programming. He has not been able to identify any of his code that is not exceptional.",
"When Chuck Norris' code fails to compile the compiler apologises.",
"Chuck Norris does not use revision control software. None of his code has ever needed revision.",
"Chuck Norris can recite π. Backwards.",
"When Chuck Norris points to null, null quakes in fear.",
"Chuck Norris has root access to your system.",
"When Chuck Norris gives a method an argument, the method loses.",
"Chuck Norris' keyboard doesn't have a F1 key, the computer asks him for help.",
"When Chuck Norris presses Ctrl+Alt+Delete, worldwide computer restart is initiated."
]
File diff suppressed because one or more lines are too long
+31
View File
@@ -0,0 +1,31 @@
en:
faker:
coffee:
country: ["Brazil", "Colombia", "Sumatra", "Ethiopia", "Honduras", "Kenya", "Uganda", "Mexico", "Guatemala", "Nicaragua", "Costa Rica", "Tanzania", "El Salvador", "Rwanda", "Burundi", "Panama", "Yemen", "India"]
regions:
brazil: ["Sul Minas", "Mogiana", "Cerrado"]
colombia: ["Nariño", "Huila", "Tolima", "Cauca", "Casanare", "Santander", "Antioquia", "Cundinamarca", "Boyacá"]
sumatra: ["Tapanuli", "Lintong", "Aceh", "Lake Tawar", "Lintong", "Gayo"]
ethiopia: ["Sidama", "Harrar", "Limu", "Ojimmah", "Lekempti", "Wellega", "Gimbi"]
honduras: ["Agalta", "Comayagua", "Copan", "Montecillos", "Opalca", "El Paraiso"]
kenya: ["Bungoma", "Embu", "Kiamba", "Kirinyaga", "Mt. Kenya", "Kisii", "Meru", "Murang'a", "Machakos", "Thika", "Nyeri", "Nakuru", "Nyanza", "Kericho"]
uganda: ["Bugisu", "Mount Elgon", "Kibale"]
mexico: ["Chiapas", "Oaxaca", "Veracruz", "Colima", "San Luis Potosi", "Nayarit", "Hidalgo", "Puebla", "Jalisco"]
guatemala: ["Acatenango", "Antigua", "Atitlan", "Fraijanes", "Huehuetenango", "Nuevo Oriente", "Coban", "San Marcos"]
nicaragua: ["Matagalpa", "Jinotega", "Boaco", "Madriz", "Nueva Segovia", "Estelí", "Dipilto", "Jalapa", "Carazo", "Granada", "Masaya", "Managua", "Rivas"]
costa_rica: ["Tarrazu", "Central Valley", "West Valley", "Guanacaste", "Tres Rios", "Turrialba", "Orosi", "Brunca"]
tanzania: ["Western Region, Bukova", "Western Region, Kigoma", "Mbeya Region", "Southern Region, Mbinga", "Western Region, Tarime", "Northern Region, Oldeani", "Northern Region, Arusha", "Northern Region, Kilimanjaro", "Southern Region, Morogoro"]
el_salvador: ["Alotepec-Metapán", "Apaneca-Ilamatepec", "El Balsamo-Quetzaltepec", "Cacahuatique", "Chichontepec", "Tecapa-Chinameca"]
rwanda: ["Rulindo", "Gishamwana Coffee Island", "Lake Kivu Region", "Kigeyo Washing Station", "Kabirizi"]
burundi: ["Kayanza"]
panama: ["Boquete", "Chiriqui", "Volcan"]
yemen: ["Mattari", "San'ani", "Hirazi", "Raimi"]
india: ["Chikmagalur", "Coorg","Biligiris", "Bababudangiris", "Manjarabad", "Nilgiris", "Travancore", "Manjarabad", "Brahmaputra", "Pulneys", "Sheveroys"]
variety: ["Liberica", "S288", "S795", "Kent", "Java", "Dilla", "Sumatara", "Catuai", "Pacamara", "Mundo Novo", "Red Bourbon", "Bourbon", "Yellow Bourbon", "Pacas", "Caturra", "Pink Bourbon", "Colombia", "Obata", "Catimors", "Sarchimor", "Mokka", "Kaffa", "Gimma", "Tafari-Kela", "S.4", "Agaro", "Dega", "Barbuk Sudan", "Ennarea", "Geisha", "Gesha", "Blue Mountain", "Kona", "San Ramon", "SL28", "SL34", "Villa Sarchi", "Villalobos", "Typica", "Ethiopian Heirloom"]
intensifier: ["muted", "dull", "mild", "structured", "balanced", "rounded", "soft", "faint", "delicate", "dry", "astringent", "quick", "clean", "crisp", "bright", "vibrant", "tart", "wild", "unbalanced", "sharp", "pointed", "dense", "deep", "complex", "juicy", "lingering", "dirty"]
body: ["watery", "tea-like", "silky", "slick", "juicy", "smooth", "syrupy", "round", "creamy", "full", "velvety", "big", "chewy", "coating"]
descriptor: ["bergamot", "hops", "black-tea", "green-tea", "mint", "sage", "dill", "grassy", "snow pea", "sweet pea", "mushroom", "squash", "green pepper", "olive", "leafy greens", "hay", "tobacco", "cedar", "fresh wood", "soil", "tomato", "sundried tomato", "soy sauce", "leathery", "clove", "liquorice", "curry", "nutmeg", "ginger", "corriander", "cinnamon", "white pepper", "black pepper", "carbon", "smokey", "burnt sugar", "toast", "fresh bread", "barley", "wheat", "rye", "graham cracker", "granola", "almond", "hazelnut", "pecan", "cashew", "peanut", "walnut", "cola", "molasses", "maple syrup", "carmel", "brown sugar", "sugar cane", "marshmallow", "cream", "butter", "honey", "nougat", "vanilla", "milk chocolate", "cocoa powder", "bittersweet chocolate", "bakers chocolate", "cacao nibs", "prune", "dates", "figs", "raisin", "golden raisin", "black currant", "red currant", "blueberry", "strawberry", "raspberry", "cranberry", "black cherry", "cherry", "plum", "apricot", "nectarine", "peach", "coconut", "banana", "kiwi", "mango", "papaya", "pineapple", "passion fruit", "tamarind", "star fruit", "lychee", "concord grape", "red grape", "green grape", "white grape", "cantaloupe", "honeydew", "watermelon", "red apple", "green apple", "orange", "mandarin", "tangerine", "clementine", "grapefruit", "lime", "meyer lemon", "lemonade", "lemon", "orange creamsicle", "marzipan", "nutella", "lemongrass", "orange blossom", "jasmine", "honeysuckle", "magnolia", "lavender", "rose hips", "hibiscus", "lemon verbena", "medicinal", "quakery", "baggy", "potato defect!", "musty", "rubber"]
notes: "#{intensifier}, #{body}, #{descriptor}, #{descriptor}, #{descriptor}"
name_1: ["Summer", "Holiday", "Jacked", "Joe", "Express", "Reg's", "Split", "Spilt", "Chocolate", "Dark", "Veranda", "Major", "Bluebery", "American", "Huggy", "Wake-up", "Morning", "Evening", "Winter", "Captain's", "Thanksgiving", "Seattle", "Brooklyn", "Café", "Blacktop", "Pumpkin-spice", "Good-morning", "Postmodern", "The Captain's", "The", "Cascara", "Melty", "Heart", "Goodbye", "Hello", "Street", "Red", "Blue", "Green", "Strong", "KrebStar", "Kreb-Full-o"]
name_2: ["Solstice", "Blend", "Level", "Enlightenment", "Cowboy", "", "Choice", "Select", "Equinox", "Star", "Forrester", "Java", "Symphony", "Utopia", "Cup", "Mug", "Been", "Bean", "Cake", "Extract", "Delight", "Pie", "America", "Treat", "Volcano", "Breaker", "Town", "Light", "Look", "Coffee", "Nuts"]
blend_name: "#{name_1} #{name_2}"
+6
View File
@@ -0,0 +1,6 @@
en:
faker:
coin:
flip:
- Heads
- Tails
+4
View File
@@ -0,0 +1,4 @@
en:
faker:
color:
name: [red, green, blue, yellow, purple, mint green, teal, white, black, orange, pink, grey, maroon, violet, turquoise, tan, sky blue, salmon, plum, orchid, olive, magenta, lime, ivory, indigo, gold, fuchsia, cyan, azure, lavender, silver]
+11
View File
@@ -0,0 +1,11 @@
en:
faker:
commerce:
department: ["Books", "Movies", "Music", "Games", "Electronics", "Computers", "Home", "Garden", "Tools", "Grocery", "Health", "Beauty", "Toys", "Kids", "Baby", "Clothing", "Shoes", "Jewelry", "Sports", "Outdoors", "Automotive", "Industrial"]
product_name:
adjective: [Small, Ergonomic, Rustic, Intelligent, Gorgeous, Incredible, Fantastic, Practical, Sleek, Awesome, Enormous, Mediocre, Synergistic, Heavy Duty, Lightweight, Aerodynamic, Durable]
material: [Steel, Wooden, Concrete, Plastic, Cotton, Granite, Rubber, Leather, Silk, Wool, Linen, Marble, Iron, Bronze, Copper, Aluminum, Paper]
product: [Chair, Car, Computer, Gloves, Pants, Shirt, Table, Shoes, Hat, Plate, Knife, Bottle, Coat, Lamp, Keyboard, Bag, Bench, Clock, Watch, Wallet]
promotion_code:
adjective: ['Amazing', 'Awesome', 'Cool', 'Good', 'Great', 'Incredible', 'Killer', 'Premium', 'Special', 'Stellar', 'Sweet']
noun: ['Code', 'Deal', 'Discount', 'Price', 'Promo', 'Promotion', 'Sale', 'Savings']
+33
View File
@@ -0,0 +1,33 @@
en:
faker:
community:
characters: ["Jeff Winger", "Britta Perry", "Señor Ben Chang", "Abed Nadir", "Annie Edison", "Dean Craig Pelton", "Pierce Hawthorne", "Troy Barnes", "Shirley Bennett", "Ian Duncan", "Michelle Slater", "Buzz Hickey", "Star Burns", "Magnitude","Leonard Rodriguez", "Garrett Lambert", "Annie's Boobs", "Inspector Spacetime", "Constable Reggie", "Kickpuncher", "Sean Garrig", "Vaughn Miller", "Rich Stephenson", "Neil", "Todd Jacobson", "Annie Kim"]
quotes: [
"Harrison Ford is irradiating our testicles with microwave satellite transmissions!",
"Doing more than the minimum amount of work is my definition of failing.",
"The next person that offers me charity or pity will be mentioned, by name, in my suicide note.",
"I don't have an ego. My Facebook photo is a landscape.",
"Either I'm god, or thruth is relative. Either way: Booyah.",
"I don't step up to being a leader. I reluctantly accept it when it's thrust upon me.",
"Don't talk to me about romance. I had a three way in a hot air balloon.",
"Well I may be a genius, but I'm not a lesbian.",
"I'm going to eat spaceman paninis with black Hitler and there's nothing you can do about it!",
"Do they find thoughts in our butts?",
"I had sex with Eartha Kitt in an airplane bathroom",
"I was so unpopular in high school, the crossing guards used to lure me into traffic.",
"A passing grade? Like a C? Why don't I just get pregnant at a bus station?",
"We're all kind of crazytown bananapants.",
"Make your money, whore.",
"I know what a metaphor is! It's like a thought with another thought's hat on.",
"Frankly, my dear, I don't give a dean!",
"I ate my twin in utero.",
"Fire can't go through doors, stupid. It's not a ghost.",
"You have just been proven racist by the racist prover!",
"So.. what is anthropology? Seriously, does anyone know?",
"I quit doing blow, not being rad.",
"I fear a political career could shine a negative light on my drug dealing.",
"A little trick for achieving the proper competitive mindset: I always envision my opponent having aggresive sex with my mother",
"Look at me. It's clear to you that I am awesome, but I can never admit that, because that would make me an ass.",
"Some flies are too awesome for the wall.",
"We'll definitely be back next year. If not, it'll be because an asteroid has destroyed all human civilization. And that's canon."
]
+21
View File
@@ -0,0 +1,21 @@
en:
faker:
company:
suffix: [Inc, and Sons, LLC, Group]
# Buzzword wordlist from http://www.1728.com/buzzword.htm
buzzwords:
- ["Adaptive", "Advanced", "Ameliorated", "Assimilated", "Automated", "Balanced", "Business-focused", "Centralized", "Cloned", "Compatible", "Configurable", "Cross-group", "Cross-platform", "Customer-focused", "Customizable", "Decentralized", "De-engineered", "Devolved", "Digitized", "Distributed", "Diverse", "Down-sized", "Enhanced", "Enterprise-wide", "Ergonomic", "Exclusive", "Expanded", "Extended", "Face to face", "Focused", "Front-line", "Fully-configurable", "Function-based", "Fundamental", "Future-proofed", "Grass-roots", "Horizontal", "Implemented", "Innovative", "Integrated", "Intuitive", "Inverse", "Managed", "Mandatory", "Monitored", "Multi-channelled", "Multi-lateral", "Multi-layered", "Multi-tiered", "Networked", "Object-based", "Open-architected", "Open-source", "Operative", "Optimized", "Optional", "Organic", "Organized", "Persevering", "Persistent", "Phased", "Polarised", "Pre-emptive", "Proactive", "Profit-focused", "Profound", "Programmable", "Progressive", "Public-key", "Quality-focused", "Reactive", "Realigned", "Re-contextualized", "Re-engineered", "Reduced", "Reverse-engineered", "Right-sized", "Robust", "Seamless", "Secured", "Self-enabling", "Sharable", "Stand-alone", "Streamlined", "Switchable", "Synchronised", "Synergistic", "Synergized", "Team-oriented", "Total", "Triple-buffered", "Universal", "Up-sized", "Upgradable", "User-centric", "User-friendly", "Versatile", "Virtual", "Visionary", "Vision-oriented"]
- ["24 hour", "24/7", "3rd generation", "4th generation", "5th generation", "6th generation", "actuating", "analyzing", "asymmetric", "asynchronous", "attitude-oriented", "background", "bandwidth-monitored", "bi-directional", "bifurcated", "bottom-line", "clear-thinking", "client-driven", "client-server", "coherent", "cohesive", "composite", "context-sensitive", "contextually-based", "content-based", "dedicated", "demand-driven", "didactic", "directional", "discrete", "disintermediate", "dynamic", "eco-centric", "empowering", "encompassing", "even-keeled", "executive", "explicit", "exuding", "fault-tolerant", "foreground", "fresh-thinking", "full-range", "global", "grid-enabled", "heuristic", "high-level", "holistic", "homogeneous", "human-resource", "hybrid", "impactful", "incremental", "intangible", "interactive", "intermediate", "leading edge", "local", "logistical", "maximized", "methodical", "mission-critical", "mobile", "modular", "motivating", "multimedia", "multi-state", "multi-tasking", "national", "needs-based", "neutral", "next generation", "non-volatile", "object-oriented", "optimal", "optimizing", "radical", "real-time", "reciprocal", "regional", "responsive", "scalable", "secondary", "solution-oriented", "stable", "static", "systematic", "systemic", "system-worthy", "tangible", "tertiary", "transitional", "uniform", "upward-trending", "user-facing", "value-added", "web-enabled", "well-modulated", "zero administration", "zero defect", "zero tolerance"]
- ["ability", "access", "adapter", "algorithm", "alliance", "analyzer", "application", "approach", "architecture", "archive", "artificial intelligence", "array", "attitude", "benchmark", "budgetary management", "capability", "capacity", "challenge", "circuit", "collaboration", "complexity", "concept", "conglomeration", "contingency", "core", "customer loyalty", "database", "data-warehouse", "definition", "emulation", "encoding", "encryption", "extranet", "firmware", "flexibility", "focus group", "forecast", "frame", "framework", "function", "functionalities", "Graphic Interface", "groupware", "Graphical User Interface", "hardware", "help-desk", "hierarchy", "hub", "implementation", "info-mediaries", "infrastructure", "initiative", "installation", "instruction set", "interface", "internet solution", "intranet", "knowledge user", "knowledge base", "local area network", "leverage", "matrices", "matrix", "methodology", "middleware", "migration", "model", "moderator", "monitoring", "moratorium", "neural-net", "open architecture", "open system", "orchestration", "paradigm", "parallelism", "policy", "portal", "pricing structure", "process improvement", "product", "productivity", "project", "projection", "protocol", "secured line", "service-desk", "software", "solution", "standardization", "strategy", "structure", "success", "superstructure", "support", "synergy", "system engine", "task-force", "throughput", "time-frame", "toolset", "utilisation", "website", "workforce"]
# BS wordlist from http://dack.com/web/bullshit.html
bs:
- ["implement", "utilize", "integrate", "streamline", "optimize", "evolve", "transform", "embrace", "enable", "orchestrate", "leverage", "reinvent", "aggregate", "architect", "enhance", "incentivize", "morph", "empower", "envisioneer", "monetize", "harness", "facilitate", "seize", "disintermediate", "synergize", "strategize", "deploy", "brand", "grow", "target", "syndicate", "synthesize", "deliver", "mesh", "incubate", "engage", "maximize", "benchmark", "expedite", "reintermediate", "whiteboard", "visualize", "repurpose", "innovate", "scale", "unleash", "drive", "extend", "engineer", "revolutionize", "generate", "exploit", "transition", "e-enable", "iterate", "cultivate", "matrix", "productize", "redefine", "recontextualize"]
- ["clicks-and-mortar", "value-added", "vertical", "proactive", "robust", "revolutionary", "scalable", "leading-edge", "innovative", "intuitive", "strategic", "e-business", "mission-critical", "sticky", "one-to-one", "24/7", "end-to-end", "global", "B2B", "B2C", "granular", "frictionless", "virtual", "viral", "dynamic", "24/365", "best-of-breed", "killer", "magnetic", "bleeding-edge", "web-enabled", "interactive", "dot-com", "sexy", "back-end", "real-time", "efficient", "front-end", "distributed", "seamless", "extensible", "turn-key", "world-class", "open-source", "cross-platform", "cross-media", "synergistic", "bricks-and-clicks", "out-of-the-box", "enterprise", "integrated", "impactful", "wireless", "transparent", "next-generation", "cutting-edge", "user-centric", "visionary", "customized", "ubiquitous", "plug-and-play", "collaborative", "compelling", "holistic", "rich"]
- ["synergies", "web-readiness", "paradigms", "markets", "partnerships", "infrastructures", "platforms", "initiatives", "channels", "eyeballs", "communities", "ROI", "solutions", "e-tailers", "e-services", "action-items", "portals", "niches", "technologies", "content", "vortals", "supply-chains", "convergence", "relationships", "architectures", "interfaces", "e-markets", "e-commerce", "systems", "bandwidth", "infomediaries", "models", "mindshare", "deliverables", "users", "schemas", "networks", "applications", "metrics", "e-business", "functionalities", "experiences", "web services", "methodologies"]
name:
- "#{Name.last_name} #{suffix}"
- "#{Name.last_name}-#{Name.last_name}"
- "#{Name.last_name}, #{Name.last_name} and #{Name.last_name}"
industry: ["Defense & Space", "Computer Hardware", "Computer Software", "Computer Networking", "Internet", "Semiconductors", "Telecommunications", "Law Practice", "Legal Services", "Management Consulting", "Biotechnology", "Medical Practice", "Hospital & Health Care", "Pharmaceuticals", "Veterinary", "Medical Devices", "Cosmetics", "Apparel & Fashion", "Sporting Goods", "Tobacco", "Supermarkets", "Food Production", "Consumer Electronics", "Consumer Goods", "Furniture", "Retail", "Entertainment", "Gambling & Casinos", "Leisure, Travel & Tourism", "Hospitality", "Restaurants", "Sports", "Food & Beverages", "Motion Pictures and Film", "Broadcast Media", "Museums and Institutions", "Fine Art", "Performing Arts", "Recreational Facilities and Services", "Banking", "Insurance", "Financial Services", "Real Estate", "Investment Banking", "Investment Management", "Accounting", "Construction", "Building Materials", "Architecture & Planning", "Civil Engineering", "Aviation & Aerospace", "Automotive", "Chemicals", "Machinery", "Mining & Metals", "Oil & Energy", "Shipbuilding", "Utilities", "Textiles", "Paper & Forest Products", "Railroad Manufacture", "Farming", "Ranching", "Dairy", "Fishery", "Primary / Secondary Education", "Higher Education", "Education Management", "Research", "Military", "Legislative Office", "Judiciary", "International Affairs", "Government Administration", "Executive Office", "Law Enforcement", "Public Safety", "Public Policy", "Marketing and Advertising", "Newspapers", "Publishing", "Printing", "Information Services", "Libraries", "Environmental Services", "Package / Freight Delivery", "Individual & Family Services", "Religious Institutions", "Civic & Social Organization", "Consumer Services", "Transportationg / Trucking / Railroad", "Warehousing", "Airlines / Aviation", "Maritime", "Information Technology and Services", "Market Research", "Public Relations and Communications", "Design", "Nonprofit Organization Management", "Fund-Raising", "Program Development", "Writing and Editing", "Staffing and Recruiting", "Professional Training & Coaching", "Venture Capital & Private Equity", "Political Organization", "Translation and Localization", "Computer Games", "Events Services", "Arts and Crafts", "Electrical / Electronic Manufacturing", "Online Media", "Nanotechnology", "Music", "Logistics and Supply Chain", "Plastics", "Computer & Network Security", "Wireless", "Alternative Dispute Resolution", "Security and Investigations", "Facilities Services", "Outsourcing / Offshoring", "Health, Wellness and Fitness", "Alternative Medicine", "Media Production", "Animation", "Commercial Real Estate", "Capital Markets", "Think Tanks", "Philanthropy", "E-Learning", "Wholesale", "Import and Export", "Mechanical or Industrial Engineering", "Photography", "Human Resources", "Business Supplies and Equipment", "Mental Health Care", "Graphic Design", "International Trade and Development", "Wine and Spirits", "Luxury Goods & Jewelry", "Renewables & Environment", "Glass, Ceramics & Concrete", "Packaging and Containers", "Industrial Automation", "Government Relations"]
profession: ["teacher", "actor", "musician", "philosopher", "writer", "doctor", "accountant", "agriculturist", "architect", "economist", "engineer", "interpreter", "attorney at law", "advocate", "librarian", "statistician", "human resources", "firefighter", "judge", "police officer", "astronomer", "biologist", "chemist", "physicist", "programmer", "web developer", "designer", "actress", "air traffic controller", "artist", "attorney", "banker", "bartender", "barber", "bookkeeper", "builder", "businessman", "butcher", "carpenter", "cashier", "chef", "coach", "dentist", "dental hygienist", "developer", "dietician", "editor", "electrician", "factory worker", "farmer", "fiherman", "gardener", "hairdresser", "journalist", "lawyer", "lecturer", "lifeguard", "mechanic", "model", "newsreader", "nurse", "optician", "painter", "pharmacist", "photographer", "pilot", "plumber", "politician", "postman", "receptionist", "scientist", "secretary", "shop assistant", "soldier", "tailor", "taxi driver", "translator", "traffic warden", "travel agent", "veterinary doctor", "waiter", "window cleaner"]
type: ["Public Company", "Educational Institution", "Self-Employed", "Government Agency", "Nonprofit", "Sole Proprietorship", "Privately Held", "Partnership"]
+34
View File
@@ -0,0 +1,34 @@
en:
faker:
compass:
cardinal:
word: ['north', 'east', 'south', 'west']
abbreviation: ['N', 'E', 'S', 'W']
azimuth: ['0', '90', '180', '270']
ordinal:
word: ['northeast', 'southeast', 'southwest', 'northwest']
abbreviation: ['NE', 'SE', 'SW', 'NW']
azimuth: ['45', '135', '225', '315']
half-wind:
word: ['north-northeast', 'east-northeast', 'east-southeast', 'south-southeast', 'south-southwest', 'west-southwest', 'west-northwest', 'north-northwest']
abbreviation: ['NNE', 'ENE', 'ESE', 'SSE', 'SSW', 'WSW', 'WNW', 'NNW']
azimuth: ['22.5', '67.5', '112.5', '157.5', '202.5', '247.5', '292.5', '337.5']
quarter-wind:
word: ['north by east', 'northeast by north', 'northeast by east', 'east by north', 'east by south', 'southeast by east', 'southeast by south', 'south by east', 'south by west', 'southwest by south', 'southwest by west', 'west by south', 'west by north', 'northwest by west', 'northwest by north', 'north by west']
abbreviation: ['NbE', 'NEbN', 'NEbE', 'EbN', 'EbS', 'SEbE', 'SEbS', 'SbE', 'SbW', 'SWbS', 'SWbW', 'WbS', 'WbN', 'NWbW', 'NWbN', 'NbW']
azimuth: ['11.25', '33.75', '56.25', '78.75', '101.25', '123.75', '146.25', '168.75', '191.25', '213.75', '236.25', '258.75', '281.25', '303.75', '326.25', '348.75']
direction:
- "#{cardinal}"
- "#{ordinal}"
- "#{half_wind}"
- "#{quarter_wind}"
abbreviation:
- "#{cardinal_abbreviation}"
- "#{ordinal_abbreviation}"
- "#{half_wind_abbreviation}"
- "#{quarter_wind_abbreviation}"
azimuth:
- "#{cardinal_azimuth}"
- "#{ordinal_azimuth}"
- "#{half_wind_azimuth}"
- "#{quarter_wind_azimuth}"
+63
View File
@@ -0,0 +1,63 @@
en:
faker:
construction:
materials: [
"Aluminum",
"Brass",
"Glass",
"Granite",
"Plastic",
"Plexiglass",
"Rubber",
"Steel",
"Stone",
"Vinyl",
"Wood"
]
subcontract_categories: [
"Asphalt Paving",
"Casework",
"Construction Clean and Final Clean",
"Curb & Gutter",
"Doors, Frames & Hardware",
"Drilled Shafts",
"Drywall & Acoustical (FED)",
"Drywall & Acoustical (MOB)",
"EIFS",
"Electrical and Fire Alarm",
"Electrical",
"Elevator",
"Epoxy Flooring",
"Exterior Signage",
"Fire Protection",
"Fire Sprinkler System",
"Framing (Steel)",
"Framing (Wood)",
"Glass & Glazing",
"Granite Surfaces",
"HVAC",
"Hard Tile & Stone",
"Landscaping & Irrigation",
"Marlite Panels (FED)",
"Masonry & Precast",
"Masonry",
"Ornamental Railings",
"Overhead Doors",
"Painting & Vinyl Wall Covering",
"Plumbing & Medical Gas",
"Prefabricated Aluminum Metal Canopies",
"RF Shielding",
"Rebar & Wire Mesh Install",
"Retaining Wall and Brick Pavers",
"Roofing (Asphalt)",
"Roofing (Metal)",
"Site Furnishings",
"Sitework & Site Utilities",
"Soft Flooring and Base",
"Structural & Misc Steel Erection",
"Structural and Misc Steel (Fabrication)",
"Temp Fencing, Decorative Fencing and Gates",
"Termite Control",
"Wall Protection",
"Waterproofing & Caulking"
]
+57
View File
@@ -0,0 +1,57 @@
en:
faker:
cosmere:
aons: [
'Aon', 'Aan', 'Aeo', 'Aha', 'Ake', 'Ala', 'Aor', 'Are', 'Ashe', 'Ata',
'Ate', 'Ati', 'Ato', 'Daa', 'Dao', 'Dii', 'Dio', 'Eda', 'Edo', 'Ehe',
'Ela', 'Ena', 'Ene', 'Eno', 'Eon', 'Eshe', 'Eto', 'Iad', 'Ido', 'Ien',
'Iir', 'Ire', 'Kaa', 'Kae', 'Kai', 'Kie', 'Kii', 'Mae', 'Mai', 'Mea',
'Nae', 'Oed', 'Omi', 'Opa', 'Ope', 'Ore', 'Rao', 'Reo', 'Rii', 'Sao',
'Sea', 'Seo', 'Shao', 'Sheo', 'Soi', 'Tae', 'Tia', 'Tii', 'Toa'
]
shard_worlds: [
'Ashyn', 'Braize', 'First of the Sun', 'Nalthis', 'Obrodai', 'Roshar',
'Scadrial', 'Sel', 'Taldain', 'Threnody', 'Vax', 'Yolen'
]
shards: [
'Devotion', 'Dominion', 'Preservation', 'Ruin', 'Odium', 'Cultivation',
'Honor', 'Endowment', 'Autonomy', 'Ambition', 'Harmony'
]
surges: [
'Abrasion', 'Adhesion', 'Cohesion', 'Division', 'Gravitation',
'Illumination', 'Progression', 'Transformation', 'Transportation', 'Tension'
]
knights_radiant: [
'Bondsmith', 'Dustbringer', 'Edgedancer', 'Elsecaller', 'Lightweaver',
'Skybreaker', 'Stoneward', 'Truthwatcher', 'Willshaper', 'Windrunner'
]
metals: [
'Steel', 'Iron', 'Pewter', 'Tin', 'Zinc', 'Brass', 'Copper', Bronze',
'Duralumin', 'Aluminum', 'Nicrosil', 'Chromium', 'Gold', 'Electrum',
'Cadmium', 'Bendalloy', 'Atium', 'Lerasium', 'Ettmetal', 'Malatium'
]
allomancers: [
'Mistborn', 'Coinshot', 'Lurcher', 'Pewterarm', 'Tineye', 'Rioter',
'Soother', 'Smoker', 'Seeker', 'Duralumin Gnat', 'Aluminum Gnat',
'Nicroburst', 'Leecher', 'Augur', 'Oracle', 'Pulser', 'Slider', 'Seer'
]
feruchemists: [
'Feruchemist', 'Skimmer', 'Steelrunner', 'Windwhisper', 'Brute', 'Sparker',
'Firesoul', 'Archivist', 'Sentry', 'Spinner', 'Soulbearer', 'Trueself',
'Connector', 'Gasper', 'Subsumer', 'Bloodmaker', 'Pinnacle'
]
heralds: [
'Jezrien', 'Nale', 'Chanarach', 'Vedel', 'Pailiah', 'Shalash', 'Battar',
'Kalak', 'Talanel', 'Ishar'
]
sprens: [
'Alespren', 'Angerspren', 'Anticipationspren', 'Awespren', 'Bindspren',
'Captivityspren', 'Coldspren', 'Concentrationspren', 'Creationspren',
'Cryptic', 'Cultivationspren', 'Deathspren', 'Decayspren', 'Exhaustionspren',
'Fearspren', 'Flamespren', 'Gloomspren', 'Gloryspren', 'Gravityspren',
'Groundspren', 'Heatspren', 'Highspren', 'Honorspren', 'Hungerspren',
'Inkspren', 'Joyspren', 'Keenspren', 'Laughterspren', 'Liespren',
'Lifespren', 'Logicspren', 'Luckspren', 'Mistspren', 'Musicspren',
'Painspren', 'Passionspren', 'Rainspren', 'Riverspren', 'Rotspren',
'Shamespren', 'Shockspren', 'Stormspren'
]
+9
View File
@@ -0,0 +1,9 @@
en:
faker:
crypto_coin:
coin:
- "Bitcoin, BTC, https://i.imgur.com/psBNOBq.png"
- "Litecoin, LTC, https://i.imgur.com/EFz61Ei.png"
- "Dash, DASH, https://i.imgur.com/2uX91cb.png"
- "Ethereum, ETH, https://i.imgur.com/uOPFCXj.png"
- "Ripple, XRP, https://i.imgur.com/GjAPSsL.png"
+6
View File
@@ -0,0 +1,6 @@
en:
faker:
currency:
code: [AED, AFN, ALL, AMD, ANG, AOA, ARS, AUD, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BRL, BSD, BWP, BYR, BZD, CAD, CDF, CHF, CLP, CNY, COP, CRC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EEK, EGP, ERN, ETB, EUR, FJD, FKP, GBP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, INR, INR, IQD, IRR, ISK, JMD, JOD, JPY, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LTL, LVL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRO, MUR, MVR, MWK, MXN, MYR, MZN, NGN, NIO, NOK, NPR, NZD, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SEK, SGD, SHP, SLL, SOS, SRD, STD, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USD, UYU, UZS, VEF, VND, VUV, WST, XAF, XAG, XAU, XBA, XBB, XBC, XBD, XCD, XDR, XFU, XOF, XPD, XPF, XPT, XTS, YER, ZAR, ZAR, ZAR, ZMK, ZWL]
name: ["UAE Dirham", "Afghani", "Lek", "Armenian Dram", "Netherlands Antillian Guilder", "Kwanza", "Argentine Peso", "Australian Dollar", "Aruban Guilder", "Azerbaijanian Manat", "Convertible Marks", "Barbados Dollar", "Taka", "Bulgarian Lev", "Bahraini Dinar", "Burundi Franc", "Bermudian Dollar (customarily known as Bermuda Dollar)", "Brunei Dollar", "Boliviano Mvdol", "Brazilian Real", "Bahamian Dollar", "Pula", "Belarussian Ruble", "Belize Dollar", "Canadian Dollar", "Congolese Franc", "Swiss Franc", "Chilean Peso Unidades de fomento", "Yuan Renminbi", "Colombian Peso Unidad de Valor Real", "Costa Rican Colon", "Cuban Peso Peso Convertible", "Cape Verde Escudo", "Czech Koruna", "Djibouti Franc", "Danish Krone", "Dominican Peso", "Algerian Dinar", "Kroon", "Egyptian Pound", "Nakfa", "Ethiopian Birr", "Euro", "Fiji Dollar", "Falkland Islands Pound", "Pound Sterling", "Lari", "Cedi", "Gibraltar Pound", "Dalasi", "Guinea Franc", "Quetzal", "Guyana Dollar", "Hong Kong Dollar", "Lempira", "Croatian Kuna", "Gourde US Dollar", "Forint", "Rupiah", "New Israeli Sheqel", "Indian Rupee", "Indian Rupee Ngultrum", "Iraqi Dinar", "Iranian Rial", "Iceland Krona", "Jamaican Dollar", "Jordanian Dinar", "Yen", "Kenyan Shilling", "Som", "Riel", "Comoro Franc", "North Korean Won", "Won", "Kuwaiti Dinar", "Cayman Islands Dollar", "Tenge", "Kip", "Lebanese Pound", "Sri Lanka Rupee", "Liberian Dollar", "Lithuanian Litas", "Latvian Lats", "Libyan Dinar", "Moroccan Dirham", "Moldovan Leu", "Malagasy Ariary", "Denar", "Kyat", "Tugrik", "Pataca", "Ouguiya", "Mauritius Rupee", "Rufiyaa", "Kwacha", "Mexican Peso Mexican Unidad de Inversion (UDI)", "Malaysian Ringgit", "Metical", "Naira", "Cordoba Oro", "Norwegian Krone", "Nepalese Rupee", "New Zealand Dollar", "Rial Omani", "Balboa US Dollar", "Nuevo Sol", "Kina", "Philippine Peso", "Pakistan Rupee", "Zloty", "Guarani", "Qatari Rial", "New Leu", "Serbian Dinar", "Russian Ruble", "Rwanda Franc", "Saudi Riyal", "Solomon Islands Dollar", "Seychelles Rupee", "Sudanese Pound", "Swedish Krona", "Singapore Dollar", "Saint Helena Pound", "Leone", "Somali Shilling", "Surinam Dollar", "Dobra", "El Salvador Colon US Dollar", "Syrian Pound", "Lilangeni", "Baht", "Somoni", "Manat", "Tunisian Dinar", "Pa'anga", "Turkish Lira", "Trinidad and Tobago Dollar", "New Taiwan Dollar", "Tanzanian Shilling", "Hryvnia", "Uganda Shilling", "US Dollar", "Peso Uruguayo Uruguay Peso en Unidades Indexadas", "Uzbekistan Sum", "Bolivar Fuerte", "Dong", "Vatu", "Tala", "CFA Franc BEAC", "Silver", "Gold", "Bond Markets Units European Composite Unit (EURCO)", "European Monetary Unit (E.M.U.-6)", "European Unit of Account 9(E.U.A.-9)", "European Unit of Account 17(E.U.A.-17)", "East Caribbean Dollar", "SDR", "UIC-Franc", "CFA Franc BCEAO", "Palladium", "CFP Franc", "Platinum", "Codes specifically reserved for testing purposes", "Yemeni Rial", "Rand", "Rand Loti", "Rand Namibia Dollar", "Zambian Kwacha", "Zimbabwe Dollar"]
symbol: ['HK$', 'Ft', '₪', '¥', '$', 'kr', 'PhP', 'zł', 'CHF', 'NT$', '฿', '£', '¢', 'Rp', 'ƒ', '€','रू']
+52
View File
@@ -0,0 +1,52 @@
en:
faker:
dc_comics:
hero: [
"Batman", "Superman", "Red Arrow", "Green Lantern", "Robin",
"Nightwing", "The Flash", "Aquaman", "Green Arrow", "Captain Marvel",
"Shazam", "Martain Manhunter", "Cyborg", "Hawkman", "Speedy", "Arsenal",
"Red Tornado","Booster Gold", "Doctor Fate", "Beast Boy", "Plastic Man",
"Captain Atom", "Tempest", "Spectre", "Midnighter", "The Atom", "Kilowog",
"Firestorm", "Blue Beetle", "Animal Man", "Mr. Miracle", "Wildcat",
"Rorschach", "Dr. Manhattan", "Nite Owl", "The Comedian", "Azrael",
"Jonah Hex", "Apollo", "Black Lightning", "Orion", "Steel", "Superboy",
"Doctor Mid-Nite", "Mr. Terrific", "Ragman", "Captain Comet", "The Sandman",
"Dr. Fate", "Guardian"
]
heroine: [
"Wonder Woman", "Hawkgirl", "Supergirl", "Black Canary", "Batgirl",
"Raven", "Wonder Girl", "Starfire", "Lady Cain", "Power Girl", "Mera",
"Vixen", "Silk Spectre", "Batwoman", "Mary Marvel"
]
villain: [
"The Joker", "Lex Luthor", "Darkseid", "Sinestro", "Brainiac", "Black Adam",
"Ras al Ghul", "Deathstroke", "Two-Face", "Doomsday", "Catwoman", "Mongul",
"Bizaroo", "Riddler", "Captain Cold", "Bane", "Harley Quinn", "Scarecrow",
"Paralax", "Gorilla Grodd", "General Zod", "Black Manta", "Mr. Freeze",
"Cheetah", "Amanda Waller", "Penguin", "Poison Ivy", "Solomon Grundy",
"Parasite", "Krona", "Deadshot", "Metallo", "Lobo", "Eclipso", "Ares",
"Hugo Strange", "Despero", "Talia al Ghul", "Mirror Master", "Captain Boomerang",
"Mr. Mxyzptlk", "Weather Wizard", "Heat Wave", "Clock King", "Clay Face",
"Killer Croc", "Gentleman Ghost", "Toy Man", "Starro"
]
name: [
"John Stewart", "Hal Jordan", "Kyle Rayner", "Barry Allen", "James Gordon",
"Dianna Prince", "Lois Lane", "Barbara Gordon", "Jason Todd", "Bart Allen",
"John Constantine", "Roy Harper", "Clark Kent", "Bruce Wayne", "Dick Grayson",
"Billy Batson", "Michael Jon Carter", "Tim Drake", "Jay Garrick", "Damian Wayne",
"Ray Palmer", "Ted Kord", "Connor Hawke", "Terry McGinnis", "Harvey Bullock",
"Al Pratt", "Wesley Dodds", "Maxwell Lord", "Oswald Cobblepot", "Alfred Pennyworth"
]
title: [
"The Sinestro Corps War", "The Coyote Gospel", "Green Arrow: The Longbow Hunters",
"Jla: Earth 2 ", "Identity Crisis", "Jla: Tower Of Babel", "Superman For All Seasons",
"Superman: Red Son", "Batman: The Long Halloween", "Swamp Thing: The Anatomy Lesson",
"For The Man Who Has Everything", "Jack Kirby'S New Gods",
"Arkham Asylum: A Serious House On Serious Earth", "Snowbirds Don't Fly",
"Whatever Happened To The Man Of Tomorrow?", "The Killing Joke",
"Teen Titans: The Judas Contract", "The New Frontier",
"Kingdom Come", "Crisis On Infinite Earths",
"Batman: Year One", "All Star Superman", "The Dark Knight Returns",
"Multiversity", "Gotham Central", "Grant Morrison'S Animal Man",
"Doom Patrol", "Action Comics", "Detective Comics"
]
+8
View File
@@ -0,0 +1,8 @@
en:
faker:
demographic:
race: ["American Indian or Alaska Native", "Asian", "Black or African American", "Native Hawaiian or Other Pacific Islander", "White"]
sex: ["Male", "Female"]
demonym: ["Afghan","Albanian","Algerian","American","Andorran","Angolan","Argentine","Armenian","Aromanian","Aruban","Australian","Austrian","Azerbaijani","Bahamian","Bahraini","Bangladeshi","Barbadian","Basotho","Basque","Belarusian","Belgian","Belizean","Bermudian","Bissau-Guinean","Boer","Bosniak","Brazilian","Breton","Briton","British Virgin Islander","Bruneian","Bulgarian","Burkinabè","Burundian","Cambodian","Cameroonian","Canadian","Catalan","Cape Verdean","Chadian","Chilean","Chinese","Colombian","Comorian","Congolese","Croatian","Cuban","Cypriot","Czech","Dane","Dominican","Dutch","East Timorese","Ecuadorian","Egyptian","Emirati","English","Eritrean","Estonian","Ethiopian","Falkland Islander","Faroese","Finn","Fijian","Filipino","French","Georgian","German","Ghanaian","Gibraltar","Greek","Grenadian","Guatemalan","French Guianan","Guinean","Guyanese","Haitian","Honduran","Hong Konger","Hungarian","Icelander","I-Kiribati","Indian","Indonesian","Iranian","Iraqi","Irish","Israeli","Italian","Ivoirian","Jamaican","Japanese","Jordanian","Kazakh","Kenyan","Korean","Kosovar","Kurd","Kuwaiti","Kyrgyz","Lao","Latvian","Lebanese","Liberian","Libyan","Liechtensteiner","Lithuanian","Luxembourger","Macanese","Macedonian","Malagasy","Malaysian","Malawian","Maldivian","Malian","Maltese","Manx","Mauritian","Mexican","Moldovan","Moroccan","Mongolian","Montenegrin","Namibian","Nepalese","New Zealander","Nicaraguan","Nigerien","Nigerian","Norwegian","Pakistani","Palauan","Palestinian","Panamanian","Papua New Guinean","Paraguayan","Peruvian","Pole","Portuguese","Puerto Rican","Quebecer","Romanian","Russian","Rwandan","Salvadoran","São Toméan","Saudi","Scottish","Senegalese","Serb","Sierra Leonean","Singaporean","Sindhian","Slovak","Slovene","Somali","Somalilander","South African","Spaniard","Sri Lankan","St Lucian","Sudanese","Surinamese","Swede","Swiss","Syriac","Syrian","Tajik","Taiwanese","Tanzanian","Thai","Tibetan","Tobagonian","Trinidadian","Tunisian","Turk","Tuvaluan","Ugandan","Ukrainian","Uruguayan","Uzbek","Vanuatuan","Venezuelan","Vietnamese","Welsh","Yemeni","Zambian","Zimbabwean"]
educational_attainment: ["No schooling completed", "Nursery school", "Kindergarten", "Grade 1 though 11", "12th grade - No Diploma", "Regular high school diploma", "GED or alternative credential", "Some college", "Associate's degree", "Bachelor's degree", "Master's degree", "Professional degree", "Doctorate degree"]
marital_status: ["Married", "Widowed", "Divorced", "Separated", "Never married"]
+6
View File
@@ -0,0 +1,6 @@
en:
faker:
dessert:
variety: ["Cake", "Cookie", "Pie", "Ice Cream", "Pudding", "Sweet Bread", "Cupcake", "Cheesecake", "Brownie", "Cobbler", "Ice Cream Cake", "Doughnut", "Frozen Yogurt", "Parfait", "Sundae", "Trifle", "Cake Pop", "Fruit Cake", "Coffee Cake", "Key Lime Pie", "Upside Down Pineapple Cake"]
topping: ["Rainbow Sprinkles", "Chocolate Chips", "Whipped Cream", "Frosting", "Peanut Butter", "Gummy Bears", "Mocha Drizzle", "Caramel", "Bacon", "Chocolate Syrup", "Chocolate Sprinkles", "Cookie Dough", "Peanuts", "Butterscotch Syrup", "Marshmallows", "Cheesecake Bites", "Walnuts", "Granola", "Toffee Bits", "Berry Compote", "Glaze", "Powdered Sugar", "Cinnamon"]
flavor: ["Vanilla", "Chocolate", "Strawberry", "Birthday Cake", "Salted Caramel", "Banana", "Butter Pecan", "Cookies 'n Cream", "Caramel", "Apple", "Butterscotch", "Mint Chocolate Chip", "Espresso", "Butter Pecan", "Cherry", "Coconut", "Chocolate Chip Cookie Dough", "French Vanilla", "Neapolitan", "Pistachio", "Rocky Road", "Peanut Butter", "Almond", "Green Tea", "Cheesecake", "Funfetti", "Lemon", "Oatmeal", "Pumpkin", "Red Velvet", "Blondie"]
+7
View File
@@ -0,0 +1,7 @@
en:
faker:
device:
model_name: ["iPhone", "iPhone 3G", "iPhone 3GS", "iPhone 4", "iPhone 4S", "iPhone 5", "iPhone 5C", "iPhone 5S", "iPhone 6 / 6 Plus", "iPhone 6S / 6S Plus", "iPhone SE", "iPhone 7 / 7 Plus", "iPhone 8 / 8 Plus", "iPhone X", "OnePlus 6T", "OnePlus 6", "OnePlus 5T", "OnePlus 5", "OnePlus 3T", "OnePlus 3", "OnePlus 2", "OnePlus One", "Samsung Galaxy S9", "Samsung Galaxy S8 Plus", "Samsung Galaxy S8", "Samsung Galaxy S7 Edge", "Samsung Galaxy S7", "Samsung Galaxy S6 Edge", "Samsung Galaxy S5", "Samsung Galaxy S4", "Samsung Galaxy S4 Mini", "Samsung Galaxy S3", "Samsung Galaxy S3 Mini", "Samsung Galaxy S2", "Samsung Galaxy S1", "Huawei Mate 20", "Huawei Mate 10 Pro", "Huawei P20", "Huawei P20 Pro", "Huawei Mate 20 Pro", "Huawei P10 Plus", "Huawei P10", "Huawei Mate 20 Lite", "Huawei Mate 9", "Huawei P Smart", "Google Pixel", "Google Pixel XL", "Google Pixel 2", "Google Pixel 2 XL", "Google Pixel 3", "Google Pixel 3 XL", "Xiaomi Redmi Note 6 Pro", "Xiaomi Mi 8 Pro", "Xiaomi Mi 8 Lite", "Xiaomi Mi 8", "Xiaomi Mi 8 SE", "Xiaomi Pocophone F1"]
platform: ["Android OS", "webOS", "iOS", "BlackBerry", "Danger OS", "Android", "Firefox OS", "Ubuntu Touch", "Windows Phone", "Windows 8", "Windows RT", "Windows 8.1", "Windows 10", "Windows 10 Mobile", "Windows Phone"]
manufacturer: ["Dell", "HP", "ASUS", "Acer", "Lenovo", "Apple", "Huawei", "OnePlus", "Xiamomi"]
serial: ["pEekWH7zGxVITv6NTa5KHjLSwr5Ie4", "UVr864F8zUbyYOAUd4cFOW9hpsZuGn", "Kl2ZroV9a", "m6aHiiHOc", "hHhDJaHCO", "SJMZOmtU0csrv4R", "PTIA6Ff3GBvGh3j", "hrR8nflThDDaSXO", "OezkV3nTii0sMK0", "T6UuMUTani3VGY4vXGia", "NjGU0z33pgE4sTEED7VR", "05skEogwZlX7j6twhhXX", "ToFVWLzGTJhQxAaJlDDn", "ejfjnRNInxh0363JC2WM", "xC36G3Xy4n2Fu90keaW96c1Hw5QBJX", "CdNevWfqDPQw4iJgUhtyCqwCggV12T", "9vxM9fCsG9nXg8EjTN5ygV2LvaDZdG", "39gPmcOKpwhDezLdiIOZ7SH89Pbjp4", "Yr9Vt13BlgvXO9zgJTPuCLv6F82r5S", "trDuJXhT8PnD3JEtw4lsluEuYSn1Xh", "VMTnd2mMQWvjbtNcZh7UIdULKb1mMo", "Pbn8^`LkKPi4QJ79xk3SnW'_DbV*CL", "Hk4BoF=%ud/PV4K-/NvEq28Q/&HNq7", "_usDGH^%'4dSYvUtH39qu3*hbi3V+z", "&XwUS6yR2N&+Z`$94eK@XzFp/p/ie^", "tL&^J@24CVF=zP46Lxixk`_a#=o6c5"]
+13
View File
@@ -0,0 +1,13 @@
en:
faker:
creature:
dog:
name: ["Buddy", "Max", "Bella", "Daisy", "Molly", "Rocky", "Lucy", "Bear", "Bailey", "Lucky", "Harley", "Maggie", "Princess", "Angel", "Charlie", "Sadie", "Jack", "Shadow", "Jake", "Coco", "Gizmo", "Chloe", "Sophie", "Toby", "Roxy", "Buster", "Ginger", "Lady", "Duke", "Baby", "Peanut", "Bandit", "Abby", "Sasha", "Lola", "Zoey", "Pepper", "Sam", "Gracie", "Sammy", "Precious", "Missy", "Riley", "Spike", "Lily", "Sassy", "Cooper", "Rusty", "Dakota", "Dixie", "Cody", "Lilly", "Zoe", "Cookie", "Chico", "Zeus", "Tucker", "Oreo", "Teddy", "Marley", "Oscar", "Honey", "Rex", "Tank", "Sugar", "Sandy", "Penny", "Tyson", "Chance", "Mia", "Diamond", "Bubba", "Blue", "Belle", "Shelby", "Rosie", "Casey", "Ruby", "Snoopy", "Cocoa", "Jasmine", "Diesel", "Patches", "Annie", "Sparky", "Taz", "Bruno", "Roxie", "Lexi", "Scooter", "Jasper", "Brutus", "Baxter", "Luna", "Snickers", "Misty", "Rascal", "Milo", "Murphy", "Bo", "Harvey"]
breed: ["Affenpinscher", "African", "Airedale", "Akita", "Appenzeller", "Basenji", "Beagle", "Bluetick", "Borzoi", "Bouvier", "Boxer", "Brabancon", "Briard", "Boston Bulldog", "French Bulldog", "Staffordshire Bullterrier", "Cairn", "Chihuahua", "Chow", "Clumber", "Border Collie", "Coonhound", "Cardigan Corgi", "Dachshund", "Great Dane", "Scottish Deerhound", "Dhole", "Dingo", "Doberman", "Norwegian Elkhound", "Entlebucher", "Eskimo", "Germanshepherd", "Italian Greyhound", "Groenendael", "Ibizan Hound", "Afghan Hound", "Basset Hound", "Blood Hound", "English Hound", "Walker Hound", "Husky", "Keeshond", "Kelpie", "Komondor", "Kuvasz", "Labrador", "Leonberg", "Lhasa", "Malamute", "Malinois", "Maltese", "Bull Mastiff", "Tibetan Mastiff", "Mexicanhairless", "Bernese Mountain", "Swiss Mountain", "Newfoundland", "Otterhound", "Papillon", "Pekinese", "Pembroke", "Miniature Pinscher", "German Pointer", "Pomeranian", "Miniature Poodle", "Standard Poodle", "Toy Poodle", "Pug", "Pyrenees", "Redbone", "Chesapeake Retriever", "Curly Retriever", "Flatcoated Retriever", "Golden Retriever", "Rhodesian Ridgeback", "Rottweiler", "Saluki", "Samoyed", "Schipperke", "Giant Schnauzer", "Miniature Schnauzer", "English Setter", "Gordon Setter", "Irish Setter", "English Sheepdog", "Shetland Sheepdog", "Shiba", "Shihtzu", "Blenheim Spaniel", "Brittany Spaniel", "Cocker Spaniel", "Irish Spaniel", "Japanese Spaniel", "Sussex Spaniel", "Welsh Spaniel", "English Springer", "Stbernard", "American Terrier", "Australian Terrier", "Bedlington Terrier", "Border Terrier", "Dandie Terrier", "Fox Terrier", "Irish Terrier", "Kerryblue Terrier", "Lakeland Terrier", "Norfolk Terrier", "Norwich Terrier", "Patterdale Terrier", "Rat Terrier", "Scottish Terrier", "Sealyham Terrier", "Silky Terrier", "Tibetan Terrier", "Toy Terrier", "Westhighland Terrier", "Wheaten Terrier", "Yorkshire Terrier", "Vizsla", "Weimaraner", "Whippet", "Irish Wolfhound"]
sound: ["woof", "woof woof", "bow wow", "ruff", "owooooo", "grrrrrr"]
meme_phrase: ["heck no pal", "11/10", "boop the snoot", "mlem", "blep", "long boi", "thicc doggo", "big ol' pupper", "smol pupperino", "zoom", "they're good dogs Brent"]
age: ["puppy", "young", "adult", "senior"]
coat_length: ["hairless", "short", "medium", "long", "wire", "curly"]
size: ["small", "medium", "large", "extra large"]
gender: ["female", "male"]
+103
View File
@@ -0,0 +1,103 @@
en:
faker:
games:
dota:
hero: ["Abaddon", "Alchemist", "Axe", "Beastmaster", "Brewmaster", "Bristleback", "Centaur Warrunner", "Chaos Knight", "Clockwerk"]
abaddon:
quote: ["You have called death upon yourself.", "From House Avernus, I set forth.", "The mist chose me, it is not mine to command.", "To die at a noble hand is no guarantee of a noble death."]
alchemist:
quote: ["Easy now, this stuff is explosive!", "Better living through alchemy!", "Tell the ogre you're sorry."]
axe:
quote: ["Let the carnage begin.", "Come and get it!", "You get nothing. Good day, sir!", "Feel the axe of Axe!", "What happened? Axe happened!", "No business but war. No family but death. No mercy but the grave!"]
beastmaster:
quote: ["Meet your master…snuhg… beastmaster.", "I'm a natural disaster.", "A death not fit for man or beast."]
brewmaster:
quote: ["I fight any thing in the house.", "Here's beer in your eye.", "Let's raise a cup before battle!"]
bristleback:
quote: ["Time to mash some faces, I'd say.", "A good bashing, never hurt nobody.", "I'm more than a pretty face."]
centaur:
quote: ["Long shall my name be remembered.", "I don't always wear a saddlebag, but when I do, I put this one in it.", "Hurts you more than it hurts me."]
chaos_knight:
quote: ["All that is light shall be cast in darkness.", "Like the heads of my enemies, this one is in the bag.", "We descend into chaos.", "The light shall be blackened, and chaos shall reign.", "Chaos is Fun…damental."]
clockwerk:
quote: ["I've a mind like a steel trap, and the physique to go with it!", "What time is it? It's killing time.", "A good offense is the best armor. Good armor is also good armor."]
doom:
quote: ["Face your demons.", "I am the midnight of your soul.", "Speak of me, and I shall appear. Face me and face the furnace!"]
dragon_knight:
quote: ["Who calls the Dragon Knight?", "A Knight in dragon's armor.", "Face the knight, face the dragon.", "Live by the sword, die by the dragon.", "Good night, Sven. I mean bad knight. [Talking to Sven]", "Never make a deal with a dragon, unless you're prepared to keep your end of it."]
earth_spirit:
quote: ["Body is flesh, but spirit immortal.", "Knowledge is golden.", "Your flesh is soft. Your Spirit weak."]
earthshaker:
quote: ["Time to shake things up and see where they settle.", "The earth moves under my feet!", "Tiny, your name is still too big for you. [Talking to Tiny]", "There may be many earths, but there's only one Earthshaker."]
elder_titan:
quote: ["The battle is joined, like the pieces of a broken world.", "Strong as a world new-formed.", "What is weak must break.", "I broke the world, did you think I could not break you?"]
huskar:
quote: ["You must learn to sacrifice.", "The gods grant me life, nor shall I waste it.", "You gave all you could give but it was not enough.", "As my body falls, my spirit rises up like the smoke of offerings, pleasing to the gods."]
io:
quote: ["Really?! If you play DotA, you know IO can't talk. ¬¬'"]
kunkka:
quote: ["An old vessel, but more than seaworthy.", "Tidehunter? More like dead hunter. [Talking to Tidehunter]", "There is no bad weather, only thin armor.", "Damn, I thought this bottle would have rum in it. [Acquiring Bottle]", "That's a lot for an empty bottle. [Acquiring Bottle]", "When I'm done with this, I'll fill it with rum. [Acquiring Bottle]"]
legion_commander:
quote: ["I've come to put an end to hope.", "You won't win the war by dying for your Ancient. You'll win by making the other dumb, unfed bastard die for theirs!", "It's the smells of battle that stay with you long after they've ended. In Stonehall it was blood and sulfur, smoke, and rot and fear…"]
lifestealer:
quote: ["Better to die free than to live in chains.", "Wait until I get my claws in you!", "I steal your life…someone else already stole your face. [Talking to Faceless Void]", "Even a thief must sometimes pay the asking price. [buying an item]", "It pains me to purchase what ought to be stolen. [Buying an item]"]
lycan:
quote: ["A wolf in man's clothing.", "Who fears the wolf should fear the forest.", "A peaceful man is but a patient wolf."]
magnus:
quote: ["Under my hoof you will find your fate.", "My horn is sharp, my pike is sharper still.", "Compared to my horn, all precious items are cheap."]
night_stalker:
quote: ["Day walker, night stalker.", "Devil by day, demon by night.", "Flesh sustains, gold remains.", "I feed the darkness and the darkness feeds me."]
omniknight:
quote: ["Fear not my friends, our guardian is here.", "Knowledge is peace.", "Let this be the last crusade. Let me find peace."]
phoenix:
quote: ["Really?! If you play DotA, you know Phoenix can't talk. ¬¬'"]
pudge:
quote: ["They call me the Butcher.", "Look who's coming for dinner!", "Come to Pudge!", "Get over here!", "I'm gonna need bigger pants.", "You'll look good with an apple in yer mouth!", "You can't chop a chopper!", "Sweetbreads ain't sweet and they ain't bread…and they need a butcher, not a baker.", "Only trouble with carrion…an hour after eating you're hungry again!"]
sand_king:
quote: ["King of the Desert.", "All we are is sand in the wind…", "True horror is a verdant garden…", "Where some see an oasis, I see only mud."]
slardar:
quote: ["Guardian of the deeps.", "The riches of the darkest sea abysses are mine to protect.", "Too bright up here and far too light. I long for the pressures of the deep, and the subtle luminosities of the sunken world."]
spirit_breaker:
quote: ["The peace is broken!", "I'll break their spirits and their backs.", "Attack is the best defense.", "You'll be dead before you know it."]
sven:
quote: ["Rogue Knight at your service!", "One man…in a world of foes…", "It's Rogue Knight, dammit! It's not rouge knight", "I will crush my foe as I crushed the Vigil Knights."]
tidehunter:
quote: ["Time and Tidehunter wait for no man.", "Time to make waves.", "I'm hungry enough to eat a plankton.", "I could eat a sea cucumber.", "I'm so hungry I could eat a mackerel.", "I'm hungry enough to eat a manta ray.", "I'm stuffed! [Level 25]", "Who needs a big brain when you've got teeth like mine?"]
timbersaw:
quote: ["I'm Rizzrack. Don't touch me!", "I cut things. It's what I do. What else would I do?", "Trees? What do you mean there's trees out there?", "Nobody takes me seriously.", "This one is in the bag. And that one is too. And that one! They are all in the bag.",
"Cut cut cutcutcutcutcutcutcutcutcutcutcutcutcutcut!", "Someone once told me I needed to face fear to get over it, and I thought well why not take a step further and cut my fear into little pieces then set my fear on fire then throw the hot ash of my fear into a lake and then poison the lake. Simple!"]
tiny:
quote: ["Sticks and stones will break their bones!", "The road ahead looks rocky, but that's all right with me.", "Why do they call it the Mineral Kingdom? We don't even have a king."]
treant_protector:
quote: ["Thoughts cross my mind as the sun crosses the sky.", "Trees can be ferocious if provoked.", "Nature is not always kind.", "I would like nothing more than to plant myself in the sunshine, next to a cool stream."]
tusk:
quote: ["They call me the Terror from the Barrier. They call me the Snowball from Cobalt. But you may call me Tusk!", "Who's ready for a fight? The first hit is free! Anyone?", "It's a great day to do some squat thrusts and lift a barrel of fish, is it not?"]
underlord:
quote: ["I rule the Abyssal Horde.", "Fear is my dominion.", "The Abyss knows no mercy. It knows no light. It knows only fear and despair.", "Nothing can stop us. Nothing can slow our march. And when we have arrived, all will burn."]
undying:
quote: ["I bring the song of death.", "I need… gummy vitamins.", "I need to work out more, but… my arm keeps snapping off."]
wraith_king:
quote: ["King am I of all the wraiths.", "Submit to the Wraith King's rule!", "Purer than flesh, stronger than bone, imperishable is the essence of the wraith.", "I miss my bones.", "Where once was bone, wraith flesh as far as the eye can see."]
item: ["Animal Courier", "Clarity", "Town Portal Scroll", "Faerie Fire", "Observer Ward", "Smoke of Deceit", "Tango", "Enchanted Mango", "Sentry Ward", "Healing Salve", "Tome of Knowledge",
"Dust of Appearance", "Bottle", "Iron Branch", "Gauntlets of Strength", "Mantle of Intelligence", "Slippers of Agility", "Circlet", "Band of Elvenskin", "Belt of Strength", "Robe of the Magi",
"Blade of Alacrity", "Ogre Axe", "Staff of Wizardry", "Ring of Protection", "Quelling Blade", "Stout Shield", "Infused Raindrop", "Orb of Venom", "Blight Stone", "Blades of Attack", "Chainmail",
"Quarterstaff", "Helm of Iron Will", "Javelin", "Broadsword", "Claymore", "Mithril Hammer", "Magic Stick", "Wind Lace", "Ring of Regen", "Sage's Mask", "Boots of Speed", "Gloves of Haste", "Cloak",
"Ring of Health", "Void Stone", "Gem of True Sight", "Morbid Mask", "Shadow Amulet", "Ghost Scepter", "Blink Dagger", "Energy Booster", "Vitality Booster", "Point Booster", "Platemail", "Talisman of Evasion",
"Hyperstone", "Ultimate Orb", "Demon Edge", "Mystic Staff", "Reaver", "Eaglesong", "Sacred Relic", "Magic Wand", "Bracer", "Null Talisman", "Wraith Band", "Soul Ring", "Phase Boots", "Power Treads", "Oblivion Staff",
"Perseverance", "Hand of Midas", "Boots of Travel", "Moon Shard", "Ring of Basilius", "Headdress", "Buckler", "Urn of Shadows", "Tranquil Boots", "Ring of Aquila", "Medallion of Courage", "Arcane Boots", "Drum of Endurance",
"Vladmir's Offering", "Mekansm", "Spirit Vessel", "Pipe of Insight", "Guardian Greaves", "Glimmer Cape", "Force Staff", "Veil of Discord", "Aether Lens", "Necronomicon", "Solar Crest", "Dagon", "Eul's Scepter of Divinity",
"Rod of Atos", "Orchid Malevolence", "Aghanim's Scepter", "Nullifier", "Refresher Orb", "Scythe of Vyse", "Octarine Core", "Hood of Defiance", "Vanguard", "Blade Mail", "Soul Booster", "Aeon Disk", "Crimson Guard", "Black King Bar",
"Lotus Orb", "Hurricane Pike", "Shiva's Guard", "Bloodstone", "Manta Style", "Linken's Sphere", "Heart of Tarrasque", "Assault Cuirass", "Crystalys", "Armlet of Mordiggian", "Meteor Hammer", "Shadow Blade", "Skull Basher", "Battle Fury",
"Monkey King Bar", "Ethereal Blade", "Radiance", "Daedalus", "Butterfly", "Silver Edge", "Divine Rapier", "Abyssal Blade", "Bloodthorn", "Dragon Lance", "Kaya", "Sange", "Yasha", "Mask of Madness", "Helm of the Dominator", "Echo Sabre",
"Maelstrom", "Diffusal Blade", "Heaven's Halberd", "Desolator", "Sange and Yasha", "Eye of Skadi", "Satanic", "Mjollnir", "Aegis of the Immortal", "Cheese", "Refresher Shard"]
team: ["Evil Geniuses", "OG", "Natus Vincere", "Team Liquid", "Fnatic", "Team Secret", "Alliance", "OpTic Gaming", "Iceberg Esports", "Mineski.亿鼎博", "PENTA Sports", "Team. Spirit", "LGD-GAMING",
"M19", "WarriorsGaming.Unity", "Newbee", "Virtus.pro", "VGJ.Storm", "Immortals", "LGD.Forever Young", "Vici Gaming", "Kingdra", "TNC Pro Team", "compLexity Gaming", "Invictus Gaming",
"Double Dimension", "Gambit Esports", "Team HighGround", "Vega Squadron", "EHOME", "5 Anchors No Captain", "Forsaken", "Entity Gaming", "The Final Tribe", "Eclipse", "VGJ Thunder", "Team Empire",
"EHOME.immortal", "Natural 9", "Sun Gaming", "Ten Twenty", "iG.Vitality", "mousesports", "Spartak Esports", "Effect", "Fire Dragoon", "TEAM MAX", "SG e-sports team", "paiN Gaming", "Rock.Y"]
player: ["Alliance.AdmiralBulldog", "Dendi", "s4", "rtz YB`a", "Loda", "Miracle-", "Aui_2000", "Puppey", "Wagamama", "SumaiL", "BigDaddyN0tail", "Fear", "EternaLEnVy", "Ferrari_430", "w33", "syndereN",
"Universe", "KuroKy", "zai", "Peterpandam", "BurNIng", "冰冰冰", "Funn1k", "Meracle-", "IllidanSTR SF46", "JerAx", "1437", "ChuaN", "Pajkatt", "qojqva", "BSJ", "SoNNeikO", "fy", "Cr1t-", "xiao8",
"Mushi", "artstyle", "Fata", "bOne7", "Resolut1on", "DeMoN", "QO", "FoREv", "ZSMJ", "Trixi", "Fng", "ddz`", "Agressif", "ixmike88", "Fly", "ana", "BuLba", "Mag", "pieliedie", "kpii", "SmAsH",
"VANSKOR", "Fenrir", "Solo", "SomnusM", "MATUMBAMAN", "Scandal", "Abed", "ALWAYSWANNAFLY", "FLUFFNSTUFF", "Ar1se.", "Lil", "kid", "Moo", "Gh", "MoonS", "Super!", "NighTmAre", "MISERY", "Slayer",
"Era", "Sccc", "Yao", "No[o]ne-", "Hao", "Sneyking", "RAMZES666", "LaNm", "thereayou", "canceL^^", "Ohaiyo", "ComeWithMe", "MidOne", "Sylar", "MinD_ContRoL", "monkeys-forever", "kaka", "Silent",
"Faith", "火", "G", "YapzOr", "Febby?", "MINI幂", "DC.MSS", "Jeyo", "MP", "Ditya Ra", "Yawar", "GeneRaL", "633", "balla", "マテリス", "9pasha", "yol", "Nofear", "Limmp", "Sedoy", "DkPhobos",
"Paparazi灬", "★Ice ice☆", "xfreedom", "Chessie", "AME", "Jenkins", "JoHnNy", "shadow"]
+96
View File
@@ -0,0 +1,96 @@
en:
faker:
dr_who:
character: [
"Dr. Who", "The Doctor", "Tardis", "Rose Tyler", "Adam Mitchell", "Mickey Smith", "Donna Noble", "Martha Jones",
"Captain Jack Harkness", "Astrid Peth", "Sarah Jane Smith", "Jackson Lake", "Lady Christina de Souza",
"Adelaide Brooke", "Wilfred Mott", "Amy Pond" ]
the_doctors: [
"First Doctor", "Second Doctor", "Third Doctor", "Fourth Doctor", "Fifth Doctor", "Sixth Doctor", "Seventh Doctor",
"Eighth Doctor", "Ninth Doctor", "Tenth Doctor", "Eleventh Doctor", "Twelfth Doctor", "Thirteenth Doctor"
]
actors: [
"William Hartnell", "Patrick Troughton", "Jon Pertwee", "Tom Baker", "Peter Davison", "Colin Baker", "Sylvester McCoy",
"Paul McGann", "Christopher Eccleston", "David Tennant", "Matt Smith", "Peter Capaldi", "Jodie Whittaker"
]
catch_phrases: [
"Fantastic!", "Im sorry. Im so sorry.", "Bow ties are cool.", "Mmm I wonder ... Aha!",
"Brave heart, Tegan.", "Would you care for a jelly baby?", "Reverse the polarity of the neutron flow.",
"Somewhere theres danger, somewhere theres injustice, somewhere else, the teas getting cold.",
"When I say run, run. (pause) RUN!", "Mm? Whats that, my boy?", "Allons-y!"
]
quotes: [
"Lots of planets have a north!", "This is my timey-wimey detector. It goes 'ding' when there's stuff.",
"Bananas are good.", "I wear a fez now. Fezzes are cool.", "Can you hold? I have to eat a biscuit.",
"If we're gonna die, let's die looking like a Peruvian folk band.",
"You want weapons? We're in a library! Books! The best weapons in the world!",
"Come on, Rory! It isn't rocket science, it's just quantum physics!",
"We're all stories in the end. Just make it a good one, eh?",
"Big flashy things have my name written all over them. Well... not yet, give me time and a crayon.",
"You don't want to take over the universe. You wouldn't know what to do with it beyond shout at it.",
"A straight line may be the shortest distance between two points, but it is by no means the most interesting.",
"See the bowtie? I wear it and I don't care. That's why it's cool.",
"I saw the Fall of Troy! World War Five! I was pushing boxes at the Boston Tea Party! Now I'm gonna die in a dungeon... in Cardiff!",
"Bunk beds are cool, a bed with a ladder, you can't beat that!",
"The universe is big. Its vast and complicated and ridiculous. And sometimes, very rarely, impossible things just happen and we call them miracles.",
"Do what I do. Hold tight and pretend its a plan!",
"900 years of time and space, and Ive never been slapped by someones mother.",
"Never ignore coincidence. Unless, of course, youre busy. In which case, always ignore coincidence.",
"The assembled hordes of Genghis Khan couldn't get through that door, and, believe me, they've tried.",
"Your wish is my command. But be careful what you wish for.",
"Aw, I wanted to be ginger! I've never been ginger!",
"Crossing into established events is strictly forbidden. Except for cheap tricks.",
]
villians: [
"Helen A", "Abzorbaloff", "Animus", "The Master", "Davros", "Dalek Emperor"
]
species: [
"Time Lord", "Dalek", "Thal", "Dal", "Voord", "Sensorite", "Slyther", "Didonian", "Sand Beast", "Animus",
"Zarbi", "Larvae Gun", "Menoptra", "Morok", "Xeron", "Aridian", "Mire Beast", "Gubbage Cone", "Rill",
"Great Old One", "Drahvin", "Varga Plant", "Representatives of the 7 Galaxies", "Visian", "Screamer",
"Monoid", "Refusian", "Celestial Toymaker", "Elder", "Cybermen (Mondas)", "Fish People", "Macra",
"Chameleon", "Cybermat", "The Moon", "Great Intelligence", "Ice Warrior", "Seaweed Creature", "Dominator",
"Dulcian", "Master Brain", "Land of Fiction beings", "Kroton", "Gond", "Seed Pod", "Auton", "Nestene Consciousness",
"Silurian", "Ambassadors", "Primord", "Keller Machine", "Axos/Axon/Axonite", "Uxariean", "Dæmon",
"Ogron", "Arcturan", "Alpha Centauran", "Aggedor", "Peladonian", "Sea Devil", "Solonian", "Chronovore",
"Minotaur", "Anti-matter organism", "Lurman", "Drashig", "Inter Minorian", "Wallarian", "Draconian", "Spiridon",
"Giant Maggots", "Sontaran", "Dinosaur", "Exxilon", "Eight Legs", "Wirrn", "Kaled", "Vogan", "Zygon", "Skarasen",
"Morestran", "Sutekh", "Osiran", "Kraal", "Sisterhood of Karn", "Hoothi", "Krynoid", "Mandragora Helix", "Kastrian",
"Giant Rat", "Rutan", "Swarm (Virus)", "Fendahl", "Usurian", "Minyan", "Vardan", "Guardian", "Ribosian",
"Levithian", "Shrivenzale", "Zanak Humanoid", "Diplosian", "Ogri", "Megara", "Taran", "Taran Beast",
"Swampie", "Kroll", "The Shadow", "Mute", "Sirian", "Jagaroth", "Chloris Humanoid", "Tythonian", "Wolfweed",
"Mandrel", "Skonnan", "Nimon", "Anethan", "Crinothian", "Drornidian", "Krarg", "Argolin", "Foamasi",
"Tigellan", "Zolfa-Thuran", "Gaztak", "Bell Plant", "Alzarian", "Marshman", "Marshspider", "Great Vampire",
"Tharil", "Trakenite", "Logopolitan", "Castrovalvan", "Urbankan", "Mara", "Kinda", "Terileptil", "Plasmaton",
"Xeraphin", "The Ergon", "Manussan", "Trion", "Garm", "Eternal", "Myrka", "Malus", "Tractator", "Magma Beast",
"Queen Bat", "Gastropod", "Jadondan", "Cryon", "Mentor", "Gee-Jee fly", "Androgum", "Karfelon", "Morlox",
"Bandril", "Andromedan", "Thoros Alphan", "Krontep", "Posicarian", "Raak", "Vervoid", "Mogarian", "Lakertyan",
"Tetrap", "Time Brain", "Chimeron", "Navarino", "Bannermen", "Proamonian", "Dragon", "Stigorax", "Pipe Person",
"Validium", "Gods of Ragnorak", "Werewolf", "The Destroyer", "Light", "Fenric", "Haemovore", "Cheetah People",
"Kitling", "Deathworm Morphant", "Lady Cassandra O'Brien.∆17", "Boekind", "Crespallion", "Trees of Cheem",
"Pakoo", "Balhoonian", "New Human", "Protohuman", "Digihuman", "Gelth", "Raxacoricofallapatorian",
"Space Pig", "Jagrafess", "Reaper", "Empty Child", "Nanogene", "Chula", "Barcelonian Dogs", "Sycorax",
"Graske", "Catkind", "New Human", "Krillitane", "Cyberman (Pete's World)", "The Wire", "The Beast",
"Ood", "Pallushi", "Hoix", "Abzorbaloff", "Isolus", "Flying Stingray", "Weevil", "Sex Gas", "Fairy",
"Arcateenian", "Racnoss", "Dogon", "Abaddon", "Bane", "Xylok", "Judoon", "Plasmavore", "Carrionite",
"Pig Slave", "Dalek/Human Hybrid", "Richard Lazarus", "Torajii Sun", "Family of Blood", "Scarecrow",
"Weeping Angel", "Futurekind", "Malmooth", "Toclafane", "Gorgon", "Uvodni", "The Trickster", "Verron",
"Sto Humanoid", "Zocci", "Blowfish", "Cell 114", "Cash Cow", "Mayfly", "Duroc", "Nostrovite", "Night Travellers",
"Tumor Alien", "Cowled Ghost", "Adipose", "Pyrovile", "Ood Brain", "Hath", "Vespiform", "Vashta Nerada",
"Time Beetle", "Shadow Proclamation Humanoids", "Bees (Melissa Majoria)", "Pied Piper", "Ancient Lights",
"Berserker", "Travist Polong", "Cybershade", "The Swarm", "Tritovore", "Hitchhiker", "The 4-5-6", "Veil",
"Eve", "Jixen", "Erasmus Darkening", "International Gallery Paintings", "The Flood", "Vinvocci",
"Dauntless Prison Inmates", "Korven", "Fear Entity", "Gryffen Family Ghosts", "Bodach", "Anubian",
"Oroborus", "Mede", "Multi-form", "Atraxi", "Aeolian", "Star Whale", "Winder", "Centuripede", "The Hunger",
"Aplan", "Ukkan", "Saturnyn", "Psychic Pollen", "Eknodine", "Etydion", "Krafayis", "Vishklar", "Shansheeth",
"Groske", "Qetesh", "Dark Hoarde", "Chelonian", "Haemogoth", "Sky Fish", "The Silence", "Siren",
"Patchwork Person", "Ganger", "Headless Monk", "Brain Parasite", "Tenza", "Peg Doll", "The Blessing Messenger",
"Apalapucian", "The Blessing", "Tivolian", "Minotaur", "Metalkind", "Fleshkind", "Hetocumtek", "Skullion",
"Androzani Tree", "Dalek Puppet", "Kahler", "Orderly", "Shakri", "Memory Worm", "Snowmen", "Akhaten Humanoid",
"Pan-Babylonian", "Lugal-Irra-Kush", "Lucanian", "Hooloovoo", "Terraberserker", "Ultramancer", "Vigil",
"Crooked Person", "Time Zombie", "Mr. Sweet", "Cybermite", "Whisper Men", "The Teller", "Skovox Blitzer",
"Spider Germ", "The Foretold", "Boneless", "Kantrofarri", "The Fisher King", "The Mire", "Leonian",
"The Sandmen", "Janus", "Quantum Shade", "The Veil", "Hydroflax", "Shoal of the Winter Harmony", "Rhodian",
"Quill", "Shadow Kin", "Arn", "Lothan", "Leaf Dragon", "Lankin", "Killer petals", "Lorr", "Sentient oil",
"Vardy", "Sea Creature", "Lure Fish", "Dryad", "The Monks"
]
+4
View File
@@ -0,0 +1,4 @@
en:
faker:
dragon_ball:
characters: ["Goku", "Bulma", "Kami", "Yamcha", "Krillin", "Tien", "Piccolo", "Gohan", "Vegeta", "Kid Trunks", "Goten", "Future Trunks", "Pan", "Android 18", "Android 16", "Android 17", "Android 19", "Android 20", "Beerus", "Chaozu", "Chi-Chi", "Launch", "Mr. Satan", "Oolong", "Puar", "Videl", "Whis", "Yajirobe", "Demon King Piccolo", "Freeza", "Cell", "Majin Buu", "Goku Black", "Zamasu", "Baba", "Bra", "Bardock", "Champa", "Dende", "Dr. Gero", "Captain Ginyu", "Grandpa Gohan", "Jaco", "King Kai", "Supreme Kai", "Elder Kai", "Mr. Popo", "Nappa", "Uub", "Pilaf", "Raditz", "Shenron", "Vados", "Zarbon", "Broly", "Cooler", "King Cold", "Garlic Jr", "King Vegeta", "Nail", "Guru", "Hit", "Super Saiyan Goku", "Super Saiyan 2 Goku", "Super Saiyan 3 Goku", "Super Saiyan Vegeta", "Super Saiyan 2 Vegeta", "Majin Vegeta", "Super Saiyan Gohan", "Super Saiyan 2 Gohan", "Super Saiyan Goten", "Super Saiyan Trunks", "Vegito", "Gogeta", "Super Saiyan Blue Goku", "Super Saiyan Blue Vegeta", "Mystic Gohan", "Caulifla", "Baby", "Shenlong", "Ryan Shenlong", "Uh Shenlong", "Ryuu Shenlong", "Chi Shenlong", "Su Shenlong", "San Shenlong", "Li Shenlong"]
+59
View File
@@ -0,0 +1,59 @@
en:
faker:
dumb_and_dumber:
actors: ["Jim Carrey", "Jeff Daniels", "Lauren Holly", "Mike Starr", "Karen Duffy", "Charles Rocket", "Victoria Rowell", "Cam Neely", "Rob Moran", "Harland Williams"]
characters: ["Lloyd Christmas", "Harry Dunne", "Mary Swanson", "Joe Mentalino", "J.P. Shay", "Nicholas Andre", "Sea Bass"]
quotes: [
"Just when I thought you couldn't possibly be any dumber, you go and do something like this... and totally redeem yourself!",
"Oh, yeah! It's right here. Samsonite! I was way off! I knew it started with an S, though.",
"You're it. You're it. You're it, quitsies! Anti-quitsies, you're it, quitsies, no anti-quitsies, no startsies! You can't do that! Can too! Cannot, stamp it! Can too, double stamp it, no erasies! Cannot, triple stamp, no erasies, Touch blue make it true. No, you can't do that... you can't triple stamp a double stamp, you can't triple stamp a double stamp! Lloyd! LA LA LA LA LA LA! LLOYD! LLOYD! LLOYD!",
"We got no food, we got no jobs... our PETS' HEADS ARE FALLING OFF!",
"Lloyd, I can't feel my fingers, they're numb! Oh well here, take this extra pair of gloves, my hands are starting to get a little sweaty. Extra gloves? You've had extra gloves this whole time? Uh yea, we are in the Rockies. Jeez!",
"Harry: You sold my dead bird to a blind kid? Lloyd! Petey didn't even have a head! Harry, I took care of it...",
"I got robbed by a sweet old lady on a motorized cart. I didn't even see it coming.",
"WE LANDED ON THE MOON!",
"I can't stop going once I've started, it stings!",
"That's as good as money, sir. Those are I.O.U.'s. Go ahead and add it up, every cents accounted for. Look, see this? That's a car. 275 thou. Might wanna hang onto that one.",
"Oh yeah. Tractor beam. Sucked me right in.",
"G'day mate! Let's put another shrimp on the barbie!",
"How was your day? Not bad. Fell off the jet way again.",
"Nice set of hooters you got there! I beg your pardon? The owls! They're beautiful!",
"I expected the Rocky Mountains to be a little rockier than this. I was thinking the same thing. That John Denver's full of shit, man.",
"I'm going to hang by the bar... Put out the vibe.",
"So you're telling me there's a chance... YEAH!",
"One time, we successfully mated a bulldog with a Shih-Tzu. Really? That's weird. Yeah, we called it a bullshit.",
"What if he shot me in the face?",
"Kick his ass, Sea Bass!",
"Harry, you're alive... and you're a horrible shot!",
"Life is a fragile thing, Har. One minute you're chewin' on a burger, the next minute you're dead meat.",
"So you got fired again eh? Oh yeah. They always freak out when you leave the scene of an accident.",
"Man, you are one pathetic loser. No offense.",
"There you go... There you go... There you go...",
"Why would she have you meet her in a bar at ten in the morning? I just figured she was a raging alcoholic.",
"I can't believe we drove around all day, and there's not a single job in this town. There is nothing, nada, zip! Yeah! Unless you wanna work forty hours a week.",
"Yeah I called her up. She gave me a bunch of crap about me not listening to her, or something. I don't know, I wasn't really paying attention.",
"I'll tell you where. Someplace warm. A place where the beer flows like wine. Where beautiful women instinctively flock like salmon of Capistrano. I'm talking about a little place called Aspen. Oh, I don't know, Lloyd. The French are assholes.",
"Suck me sideways!",
"Now we don't have enough money to get to Aspen, we don't have enough money to get home, we don't have enough money to eat, we don't have enough money to sleep!",
"I'll bet you twenty bucks I can get you gambling before the end of the day!",
"Hey guys. Woah, Big Gulps, huh? All right! Well, see ya later.",
"You spilled the salt, that's what's the matter! Spilling the salt is very bad luck! We're driving across the country, the last thing we need is bad luck. Quick, toss some salt over your right shoulder.",
"Look at the butt on that... Yeah, he must work out.",
"Why you going to the airport? Flying somewhere?",
"Hey look there's some people who want a ride too. Pick'em up!",
"Pullover! No, it's a cardigan but thanks for noticing. Yeah, killer boots man!",
"Skis, huh? That's right! Great! They yours? Uh-huh. Both of 'em? Yes. Cool!",
"Yesterday was one of the greatest days of my life. Mary and I went skiing, we made a snowman, she touched my leg!",
"Pills are goooood. Pills are goooood!",
"Man, I would have to be a real lowlife to go rooting around in someone else's private property. Is it locked? Yeah. Really well.",
"Hey, I guess they're right. Senior citizens, although slow and dangerous behind the wheel, can still serve a purpose. I'll be right back. Don't you go dying on me!",
"The first time I set eyes on Mary Swanson, I just got that old fashioned romantic feeling where I'd do anything to bone her. That's a special feeling, Lloyd.",
"Foot long! Who's got the foot long?",
"Husband? Wait a minute... what was all that one in a million' talk?",
"How's your burger?",
"Wanna hear the most annoying sound in the world?",
"We don't usually pick up hitchhikers... but I'm-a gonna go with my instincts on this one. Saddle up partner!",
"So I told myself. Beth you just got to run girl and oh you know what that clutz did next? No and I DON'T CARE! BarTENDER...",
"You are in luck! There's a town about three miles that way. I'm sure you'll find a couple guys there. Okay, thanks. Do you realize what you've done?",
"What is the Soup Du Jour? It's the Soup of the Day. Mmmm. That sounds good. I'll have that."
]
+159
View File
@@ -0,0 +1,159 @@
en:
faker:
dune:
characters: [ "Paul \"Muad'Dib\" \"Usul\" Atreides", "Jessica Atreides", "Alia Atreides", "Leto Atreides", "Leto II Atreides", "Duncan Idaho", "Shaddam Corrino IV", "Liet-Kynes", "Vladimir Harkonnen", "Irulan", "Feyd-Rautha Rabban", "Gaius Helen Mohiam", "Thufir Hawat", "Chani", "Shadout Mapes", "Ramallo", "Otheym", "Jamis", "Harrah", "Gurney Halleck", "Glossu \"Beast\" Rabban", "Piter De Vries", "Miles Teg", "Hasimir Fenring", "Margot Fenring", "Murbella", "Siona Atreides", "Scytale", "Stilgar", "Wellington Yueh", "Edric", "Ilban Richese", "Dominic Vernius", "Cammar Pilru", "Hwi Noree", "Nayla" ]
titles: [ "Master of Assassins", "Judge of the Change", "Duke", "Lady", "Reverend Mother", "Sayyadina", "Padishah Emperor", "Earl", "Princess", "Prince", "Premier", "Baron", "Mentat", "Count", "Countess", "Viscount", "Master", "Doctor", "Imperial Planetologist", "Elder", "Face Dancer", "Envoy", "Guild Navigator", "Ambassador", "Fedaykin Commando", "Naib", "Fish Speaker", "Grand Patriarch" ]
planets: [ "Arrakis", "Caladan", "Dune", "Geidi Prime", "Ix", "Selusa Secundus", "Kaitain", "Richesse", "Ecaz" ]
quotes:
guild_navigator:
- "The spice must flow"
- "The Bene Gesserit Witch must leave."
- "Remedy this situation, restore spice production, or you will live out your life in a pain amplifier!"
- "I mean Paul Atreides. We want him killed. I did not say this. I am not here."
- "Many machines on Ix. New machines, better than those on Richesse."
emperor:
- "Bring in that floating fat man, the Baron!"
paul:
- "They tried and failed, all of them?"
- "There is no escape — we pay for the violence of our ancestors."
- "One of the most terrible moments in a boy's life ... is when he discovers his father and mother are human beings who share a love that he can never quite taste. It's a loss, an awakening to the fact that the world is there and here and we are in it alone. The moment carries its own truth; you can't evade it."
- "The eye that looks ahead to the safe course is closed forever."
- "The power to destroy a thing is the absolute control over it."
- "Try looking into that place where you dare not look! You'll find me there, staring out at you!"
- "The sleeper has awakened!"
- "My name is a killing word."
- "You dare suggest a Duke's son is an animal?"
- "You have no need for your weapons with me, Gurney Halleck."
- "Carry this noble Atreides warrior away. Do him all honor."
- "Some thoughts have a certain sound, that being the equivalent to a form. Through sound and motion, you will be able to paralyze nerves, shatter bones, set fires, suffocate an enemy or burst his organs. We will kill until no Harkonnen breathes Arakeen air."
- "If I hear any more nonsense from either of you I'll give the order that'll destroy all spice production on Arrakis… forever."
- "Superstitions sometimes have strange roots and stranger branchings"
thufir:
- "A popular man arouses the jealousy of the powerful."
- "Parting with friends is a sadness. A place is only a place."
- "It's easier to be terrified by an enemy you admire."
- “Knowing where the trap is—that's the first step in evading it.”
- "Repression makes a religion flourish."
jessica:
- "And you, my son, are you one who gives or one who takes?"
- "A million deaths were not enough for Yueh!"
- "Motivating people, forcing them to your will, gives you a cynical attitude towards humanity. It degrades everything it touches."
- "What delicious abandon in the sleep of the child. Where do we lose it?"
- "The young reed dies so easily. Beginnings are times of such peril."
- "Anything outside yourself, this you can see and apply your logic to it. But its a human trait that when we encounter personal problems, these things most deeply personal are the most difficult to bring out for our logic to scan. We tend to flounder around, blaming everything but the actual, deep-seated thing thats really chewing on us."
- "Is it defeatist or treacherous for a doctor to diagnose a disease correctly? My only intention is to cure the disease."
- "Think on it, Chani; the princess will have the name, yet she'll live as less than a concubine - never to know a moment of tenderness from the man to whom she's bound. While we, Chani, we who carry the name of concubine - history will call us wives."
irulan:
- "A beginning is the time for taking the most delicate care that the balances are correct."
- "To attempt an understanding of Muad'Dib without understanding his mortal enemies, the Harkonnens, is to attempt seeing Truth without knowing Falsehood. It is the attempt to see the Light without knowing Darkness. It cannot be."
mohiam:
- "You've heard of animals chewing off a leg to escape a trap? There's an animal kind of trick. A human would remain in the trap, endure the pain, feigning death that he might kill the trapper and remove a threat to his kind."
- "Hope clouds observation."
- "A human can control his instincts. Your instinct will be to draw your hand out of the box. You do, you die."
- "Kul Wahad! No woman-child ever withstood that much!"
- "Kill this child. She's an abomination. Kill her!"
- "Get out of my mind!"
- "But I can tell you, dear God, for the father, nothing."
- "Did you really think that you could bear the Kwisatz Haderach? The universe's super being? How dare you. My greatest student, and my greatest disappointment."
- "You, Paul Atreides, descendant of kings, son of a Duke, you must learn to rule. It's something none of your ancestors learned."
- "Once men turned their thinking over to machines in the hope that this would set them free. But that only permitted other men with machines to enslave them."
- "We look down so many avenues of the past... but only feminine avenues. Yet, there's a place where no Truthsayer can see. We are repelled by it, terrorized. It is said a man will come one day and find in the gift of the drug his inward eye. He will look where we cannot — into both feminine and masculine pasts."
- "They tried and died."
- "Shield your son too much, Jessica, and he'll not grow strong enough to fulfill any destiny."
- "That which submits rules. ... The willow submits to the wind and prospers until one day it is many willows — a wall against the wind. This is the willow's purpose."
- "The mystery of life isn't a problem to solve, but a reality to experience."
gurney:
- "In shield fighting, one moves fast on defense, slow on attack. Attack has the sole purpose of tricking the opponent into a misstep, setting him up for the attack sinister. The shield turns the fast blow, admits the slow kindjal!"
- "Mood? What has mood to do with it? You fight when the necessity arises — no matter the mood! Mood's a thing for cattle or making love or playing the baliset. It's not for fighting."
- "If wishes were fishes, we'd all cast nets."
- "Behold as a wild ass in the desert go I forth to my work"
- "One enemy at a time."
leto:
- "Let us not rail about justice as long as we have arms and the freedom to use them."
- "Command must always look confident. All that faith riding on your shoulders while you sit in the critical seat and never show it."
- "I must rule with eye and claw — as the hawk among lesser birds."
- "Most of the Houses have grown fat by taking few risks. One cannot truly blame them for this; one can only despise them."
- "A day comes when the potential Mentat must learn what's being done. It may no longer be done to him. The Mentat has to share in the choice of whether to continue or abandon the training."
- "On Caladan, we ruled with sea and air power. Here, we must scrabble for desert power. This is your inheritance, Paul."
- "A person needs new experiences. They jar something deep inside, allowing him to grow. Without change, something sleeps inside us, and seldom awakens. The sleeper must awaken."
stilgar:
- "To save one from a mistake is a gift of paradise."
- "Usul has called a big one. Again, it is the legend."
liet_kynes:
- "Growth is limited by that necessity which is present in the least amount. And, naturally, the least favorable condition controls the growth rate."
- "A dead man, surely, no longer requires that water."
- "He cares more about his men than the Spice. I have to admit, against my better judgement, I like this Duke."
- "He shall know your ways as if born to them."
pardot_kynes:
- "No more terrible disaster could befall your people than for them to fall into the hands of a Hero."
- "The highest function of ecology is understanding consequences."
- "Men and their works have been a disease on the surface of their planets before now. Nature tends to compensate for diseases, to remove or encapsulate them, to incorporate them into the system in her own way."
baron_harkonnen:
- "He who controls the spice, controls the universe!"
- "I must have him dead and his line ended."
- "I made my peace gesture. The forms of kanly have been obeyed!"
- "I won't tell you who the traitor is, or when we'll attack. However, the Duke will die before these eyes and he'll know, he'll know, that it is I, Baron Vladimir Harkonnen, who encompasses his doom!"
- "Listen carefully, Feyd. Observe the plans within plans within plans."
- "The absence of a thing, this can be as deadly as the presence. The absence of air, eh? The absence of water? The absence of anything else we're addicted to."
- "The day hums sweetly when you have enough bees working for you."
- "My dear Piter, your pleasures are what tie you to me. How could I object to that?"
- "I never could bring myself to trust a traitor. Not even a traitor I created."
- "One must always keep the tools of statecraft sharp and ready. Power and fear - sharp and ready."
- "I will have Arrakis back for myself! He who controls the Spice controls the universe and what Piter did not tell you is we have control of someone who is very close, very close, to Duke Leto! This person, this traitor, will be worth more to us than ten legions of Sardaukar!"
piter:
- "I knew Yueh's wife. I was the one who broke his Imperial conditioning. I've thought of many pleasures with you. It is perhaps better that you die in the innards of a worm. Desire clouds my reason. That is not good. That is bad."
- "Vendetta, he says, using the ancient tongue. The art of kanly is still alive in the Universe. He does not wish to meet or speak with you."
alia:
- "The Guild... they're fighting me in the mental vaults. They're behind everything. They fear the one who will come, who will know more, who will see more. The Guild is behind everything. It's not finished yet. I'm not formed."
mapes:
- "Before I do your bidding, manling, I must cleanse the way between us. You've put a water burden on me that I'm not sure I care to support. But we Fremen pay our debts"
duncan:
- "My lord, I suspect an incredible secret has been kept on this planet: that the Fremen exist in vast numbers - vast. And it is they who control Arrakis."
- "Use the first moments in study. You may miss an opportunity for quick victory this way, but the moments of study are insurance of success. Take your time and be sure."
- "When your opponent fears you, then's the moment when you give the fear its own rein, give it the time to work on him. Let it become terror. The terrified man fights himself. Eventually, he attacks in desperation. That is the most dangerous moment, but the terrified man can be trusted usually to make a fatal mistake."
yueh:
- "But attack can take strange forms. And you will remember the tooth. The tooth. Duke Leto Atreides. You will remember the tooth."
- "Forgive me, my Lady! My thoughts were far away… I … did not mean to be familiar."
- "Those are date palms. One date palm requires forty liters of water a day. A man requires but eight liters. A palm, then, equals five men. There are twenty palms out there—one hundred men."
sayings:
bene_gesserit:
- "I must not fear. Fear is the mind-killer. Fear is the little-death that brings total obliteration. I will face my fear. I will permit it to pass over me and through me. And when it has gone past I will turn the inner eye to see its path. Where the fear has gone there will be nothing. Only I will remain."
- "A world is supported by four things ... the learning of the wise, the justice of the great, the prayers of the righteous and the valor of the brave. But all of these are as nothing ... without a ruler who knows the art of ruling. Make that the science of your tradition!"
- "The mind can go either direction under stress — toward positive or toward negative: on or off. Think of it as a spectrum whose extremes are unconsciousness at the negative end and hyperconsciousness at the positive end. The way the mind will lean under stress is strongly influenced by training."
- "Do not count a human dead until youve seen his body. And even then you can make a mistake."
- "Humans must never submit to animals."
- "To suspect your own mortality is to know the beginning of terror; to learn irrefutably that you are mortal is to know the end of terror."
- "Survival is the ability to swim in strange water."
- "Prophets have a way of dying by violence."
- "Humans live best when each has his place to stand, when each knows where he belongs in the scheme of things and what he may achieve. Destroy the place and you destroy the person."
fremen:
- "He shall know your ways as if born to them."
- "May thy knife chip and shatter."
- "The wise animal blends into its surroundings."
- "Bless the Maker and all His Water. Bless the coming and going of Him, May His passing cleanse the world. May He keep the world for his people."
- "Be prepared to appreciate what you meet."
- "A stone is heavy and the sand is weighty; but a fools wrath is heavier than them both."
- "Truth suffers from too much analysis."
- "A man's flesh is his own; the water belongs to the tribe."
mentat:
- "It is by will alone I set my mind in motion. It is by the juice of Sapho that thoughts acquire speed, the lips acquire stains. The stains become a warning."
- "A process cannot be understood by stopping it. Understanding must move with the flow of the process, must join it and flow with it."
- "Memory never recaptures reality. Memory reconstructs reality. Reconstructions change the original, becoming external frames of reference that inevitably fail."
muaddib:
- "Arrakis teaches the attitude of the knife, chopping off whats incomplete and saying, \"Now its complete because its ended here.\""
- "Greatness is a transitory experience. It is never persistent. It depends in part upon the myth-making imagination of humankind. The person who experiences greatness must have a feeling for the myth he is in. He must reflect what is projected upon him. And he must have a strong sense of the sardonic. This is what uncouples him from belief in his own pretensions. The sardonic is all that permits him to move within himself. Without this quality, even occasional greatness will destroy a man."
- "There is probably no more terrible instance of enlightenment than the one in which you discover your father is a man — with human flesh."
- "What do you despise? By this you are truly known."
- "God created Arrakis to train the faithful."
- "You do not beg the sun for mercy."
- "Fragmentation is the natural destiny of all power."
- "I am the Kwisatz Haderach. That is reason enough."
- "The eye that looks ahead to the safe course is closed forever."
- "Deep in the human unconscious is a pervasive need for a logical universe that makes sense. But the real universe is always one step beyond logic."
- "There exists no separation between gods and men: one blends softly casual into the other."
- "There should be a science of discontent. People need hard times and oppression to develop psychic muscles."
orange_catholic_bible:
- "Think you of the fact that a deaf person cannot hear. Then, what deafness may we not all possess? What senses do we lack that we cannot see and cannot hear another world all around us?"
- "When God hath ordained a creature to die in a particular place, He causeth that creature's wants to direct him to that place"
- "Thou shalt not make a machine in the likeness of a man's mind"
- "From water does all life begin."
+11
View File
@@ -0,0 +1,11 @@
en:
faker:
educator:
name: ['Marblewald', 'Mallowtown', 'Brookville', 'Flowerlake', 'Falconholt', 'Ostbarrow', 'Lakeacre', 'Clearcourt', 'Ironston', 'Mallowpond', 'Iceborough', 'Icelyn', 'Brighthurst', 'Bluemeadow', 'Vertapple', 'Ironbarrow']
secondary: ['High School', 'Secondary College', 'High']
tertiary:
type: ['College', 'University', 'Technical College', 'TAFE']
degree:
subject: ['Arts', 'Business', 'Education', 'Applied Science (Psychology)', 'Architectural Technology', 'Biological Science', 'Biomedical Science', 'Commerce', 'Communications', 'Creative Arts', 'Criminology', 'Design', 'Engineering', 'Forensic Science', 'Health Science', 'Information Systems', 'Computer Science', 'Law', 'Nursing', 'Medicine', 'Psychology', 'Teaching']
type: ['Associate Degree in', 'Bachelor of', 'Master of']
course_number: ['1##', '2##', '3##', '4##', '5##']
+11
View File
@@ -0,0 +1,11 @@
en:
faker:
games:
elder_scrolls:
race: ["Altmer", "Argonian", "Bosmer", "Breton", "Dunmer", "Dwemer", "Imperial", "Khajiit", "Nord", "Orc", "Redguard","Riekling"]
creature: ["Bear", "Cave Bear", "Chaurus", "Death Hound", "Snow Bear", "Wolf", "Ice Wolf", "Pit Wolf", "Sabre Cat", "Skeever", "Mudcrab", "Horker", "Ice Wraith", "Werewolf", "Troll", "Frost Troll", "Werebear", "Blue Dartwing", "Orange Dartwing", "Torchbugs", "Slaughterfish", "Chaurus Hunter", "Dremora Lord", "Flame Atronach", "Frost Atronach", "Storm Atronach", "Daedric Prince", "Dremora", "Lurker", "Seeker", "Draugr", "Restless Draugr", "Draugr Overlord", "Draugr Wight", "Draugr Deathlord", "Draugr Scourge", "Draugr Death Overlord", "Draugr Thrall", "Spider Worker", "Spider Soldier", "Spider Guardian", "Dwarven Shpere", "Dwarven Centurion", "Falmer", "Falmer Archer", "Falmer Gloomlurker", "Falmer Shaman", "Falmer Spellsword", "Falmer Shadowmaster", "Falmer Nightprowler", "Falmer Warmonger", "Feral Falmer", "Frostbite Spider", "Giant", "Frost Giant", "Hagraven", "Corrupted Shade", "Skeleton", "Spriggan", "Spriggan Matron", "Spriggan Earth Mother", "Wisp", "Shade", "Wispmother"]
region: ["Black Marsh", "Cyrodiil", "Elsweyr", "Hammerfell", "High Rock", "Morrowind", "Skyrim", "Summerset Isles", "Valenwood"]
dragon: ["Dragon", "Blood Dragon", "Frost Dragon", "Elder Dragon", "Ancient Dragon", "Revered Dragon", "Legendary Dragon", "Serpentine Dragon", "Paarthunax","Odahviing", "Alduin","Mirmulnir","Sahloknir"]
city: ["Solitude", "Winterhold", "Markarth", "Daggerfall", "Silvenar", "Tignus", "Lainlyn", "Dwyynen", "Glenpoint", "Whiterun", "Falkreath","Ykalon","Kozanset", "Kambria","Menevia", "Betony", "Northmoor", "Tulune", "Alcaire", "Verkarth", "Davon's Watch", "Abah's Landing", "Clockwork City", "Wayrest", "Stormhold", "Sentinel", "Dawnstar", "Morthal","Riften","Windhelm","Dragon Bridge","Helgen", "Ivarstead", "Karthwasten", "Riverwood", "Rorikstead", "Shor's Stone"]
first_name: ["Balgruuf", "Ralof", "Hadvar", "Irileth", "Gormlaith", "Farengar", "Felldir", "Hakon", "Iddra", "Malborn", "Tsun","Ysgramor", "Tsun", "Gerdur", "Dirge", "Orgnar", "Septimus", "Urag", "Brynjolf", "Faralda", "Vignar", "Elenwen", "Rulindil", "Gissur", "Drahff", "Hewnon", "Gian", "Sulla", "Umana", "J'darr", "Astrid", "Nazir", "Maliq", "Babette", "Gabriella", "Festus", "Arnbjorn", "Veezara", "Kodlak", "Aela", "Farkas", "Vilkas", "Skjor", "Athis", "Njada", "Ria", "Torvar", "Brill", "Eorlund", "Tilma", "Hestla", "Askar","Mercer", "Delvin", "Vex", "Tonilia", "Sapphire", "Cynric", "Niruin", "Rune", "Thrynn", "Vipir", "Garthar", "Ravyn", "Etienne", "Molgrom", "Karliah", "Syndus", "Vanryth", "Gulum-Ei", "Enthir", "Niranye", "Endon", "Mallus", "Athel", "Glover", "Erikur", "Ri'saad", "Atahbah", "Ma'randru-jo", "Khayla", "Ahkari", "Zaynabi", "Dro'marash", "Kharjo", "Ma'dran", "Ma'jhad", "Ra'zhinda", "Mjoll", "Brand-shei", "Inigo"]
last_name: ["The Old", "The Greater", "The Lesser", "One-Eye", "Golden-Hilt", "Secret-Fire", "Septim", "Signus", "gro-Shub","Gray-Mane", "Black-Skeever", "The Fist", "Krex", "Whitemane", "Hunter", "Stonearm","The Haggard", "The Unbroken", "The Man", "Ember-Master", "Battle-Born", "Black-Briar", "Lothaire", "Frey", "Mallory", "Endell", "The Fleet", "Imyan", "Rarnis", "Twice-Killed", "Gatharian", "Maccius", "Newberry", "Cruel-Sea", "The Lion"]
@@ -0,0 +1,6 @@
en:
faker:
electrical_components:
active: ["Diode", "LED", "Rectifier", "Transistor", "JFET", "MOSFET", "Integrated Circuit", "LCD", "Cathode Ray Tube", "Vacuum Tube", "Battery", "Fuel Cell", "Power Supply"]
passive: ["Resistor", "Potentiometer", "Trim Pot", "Varistor", "Capacitor", "Varicap Diode", "Inductor", "Transformer", "Generator", "Motor", "Solenoid", "Magnetic Amplifier", "Speaker", "Motion Sensor", "Accelerometer", "Thermocouple", "Antenna", "Oscillator", "Breadboard"]
electromechanical: ["Piezoelectric device", "crystal", "Ultrasonic Motor", "Terminal", "Socket", "Power Cord", "Toggle Switch", "Slide Switch", "DIP Switch", "Footswitch", "Keypad", "Circuit Breaker", "Fuse", "Printed Circuit Board"]
+8
View File
@@ -0,0 +1,8 @@
en:
faker:
esport:
players: ["Froggen", "Dendi", "Surefour", "Seagull", "xPeke", "shroud", "KennyS", "pasha", "RamboRay", "Crimsix", "ACE", "Grubby", "f0rest", "cArn", "Flash", "Faker", "Boxer", "Miracle", "Silvername"]
teams: ["Dignitas", "OpTic Gaming", "FaZe", "iBUYPOWER", "Evil Geniuses", "Ninjas in Pijamas", "Natus Vincere", "Team SoloMid", "Cloud9", "Fnatic", "CLG", "EnVyUs", "Virtus.Pro", "Team Secret"]
events: ["ESL Cologne", "MLG Meadowlands", "GFinity London", "Worlds", "IEM Championship", "League All Stars", "International"]
leagues: ["ESL", "IEM", "MLG", "GFinity", "Starladder"]
games: ["CS:GO", "League of Legends", "Overwatch", "StarCraft II", "Dota 2", "Super Smash Bros. Melee", "Hearthstone", "PUBG"]
+137
View File
@@ -0,0 +1,137 @@
en:
faker:
games:
fallout:
characters: [
"Ada",
"Angela Bishop",
"Boone",
"Cait",
"Christine Royce",
"Codsworth",
"Curie",
"Daecon",
"DiMA",
"Dogmeat",
"Elder Maxon",
"Harold",
"John Hancock",
"Joshua Graham",
"Legate Lanius",
"Leslie Ann Bishop",
"Liberty Prime",
"Lucas Simms",
"Madison Lee",
"Miria",
"Myron",
"Nick Valentine",
"Old Longfellow",
"Caesar",
"Paladin Danse",
"Piper Wright",
"Porter Gage",
"Preston Garvey",
"Robert Joseph Mac Cready",
"Rose of Sharon Cassidy",
"Strong",
"Sulik",
"The Master",
"Three Dog",
"X6-88",
"Yes Man"
]
factions: [
"Boomers",
"Brotherhood of Steel",
"Caesar's Legion",
"Chinese remnants",
"Diamond City security",
"Enclave",
"Followers of the Apocalypse",
"Gunners",
"Kings",
"Master's Army",
"Mojave Express",
"New California Republic",
"Nuka World Triumvirate",
"Powder Gangers",
"Raiders",
"State of Utobitha",
"Talon Company",
"Triggermen",
"United States Armed Forces",
"Van Graffs"
]
locations: [
"Anchorage",
"Big MT",
"Big town",
"Cambridge",
"Capital Wasteland",
"Concord",
"Diamond City",
"Dog City",
"Goodsprings",
"Hoover Dam",
"Lexington",
"Little Lamplight",
"Megaton",
"Nellis Air Force Base",
"New Reno",
"New Vegas",
"Nipton",
"Primm",
"Raven Rock",
"Red Rock Canyon",
"Sloan",
"The Commonwealth",
"The Institute",
"Vault 101",
"Vault 11",
"Vault 111",
"Vault 13",
"Vault 15",
"Vault 19",
"Vault 22",
"Vault 3",
"Vault 81",
"Vault City"
]
quotes: [
"Ad Victoriam!",
"Calm is what you have to be when people look to you, and it's all you can be when things are out of your hands.",
"Democracy is non-negotiable",
"Hi, I'm Jean Baptiste. And you're about to stop being a pain in my ass.",
"I'm a synth. Synthetic man. All the parts, minus a few red blood cells.",
"I'm dying.... so that democracy... can live.",
"I'm gonna run some diagnostics while you're tinkering. Take your time.",
"I've seen soldiers come and go. Some were brave. Some were honest. Some were even heroic. But I've never called any of them a friend.",
"If you want to see the fate of democracies, just look out the window",
"Let's go, pal.",
"Liberty Prime is online. All systems nominal. Weapons hot. Mission: the destruction of any and all Chinese communists.",
"Ngh. Hi. I'm Mahsofabish ang I gob ko keep fiebs gaeg.",
"Nobody has a Dick that long, not eve Long-Dick Johnson, and he had a fuckin long dick, thus the name.",
"Nothing to impede progress. If you want to see the fate of democracies, look out the windows.",
"Patrolling the Mojave almost makes you wish for a nuclear winter.",
"Please step out of the fountain",
"Revised stratagem: Initiate photonic resonance overcharge.",
"Stimpaks are a marvelous invention, don't you think?",
"Strange rumors from across the river indicate that a secret underground robot army has been destroyed before anyone had a chance to use it.",
"Success depends on forethought, dispassionate calculation of probabilities, accounting for every stray variable.",
"Sure. Be glad to take...I mean hold some stuff for you.",
"That chip of yours, I wouldn't wager it on Blackjack...Unless the dealer has a five of six showing.",
"That means you're, erm... two centuries late for dinner! Perhaps I could whip you up a snack? You must be famished!",
"The past, the present, and the future walked into a bar. It was tense.",
"The women of New Vegas ask me a lot if there's a Mrs. New Vegas. Well, of course there is. You're her. And you're still as perfect as the day we met.",
"Though dangerous, combat is quite vigorous exercise.",
"Today's forecast calls for a 99%chance of clear skies being ruined by artillery fire.",
"Voice module online. Audio functionality test initialized. Designation: Liberty Prime. Mission: the liberation of Anchorage, Alaska.",
"We must find the men of science and institutes of learning, surely they are out there still.",
"We'd move faster if you'd keep your eyes on the road and off me arse.",
"Well, ain't we all, right? That was a long time ago. I don't pay it much mind anymore.",
"What did you... did you put a plug in his cocktube and make him explode?",
"Who do you think actually won the war? No one, I guess.",
"You stood up to Elder Maxson for me. I'll never forget that for as long as I live.",
"You think I inject myself with all that shite and drink myself drunk because Im a tough Irish gal?",
"You'd be shocked how many people I've managed to convince I'm just a really sick ghoul."
]
+7
View File
@@ -0,0 +1,7 @@
en:
faker:
family_guy:
character: ["Peter Griffin", "Lois Griffin", "Meg Griffin", "Chris Griffin", "Stewie Griffin", "Brian Griffin", "Francis Griffin", "Mickey McFinnigan", "Thelma Griffin", "Karen Griffin", "Carter Pewterschmidt", "Barabara Pewterschmidt", "Glenn Quagmire", "Cleveland Brown", "Joe Swanson", "Bonnie Swanson", "Mort Goldman", "Tom Tucker", "Joyce Kinney", "Diane Simmons", "Ollie Williams", "Tricia Takanawa", "Fouad", "Principal Shephard", "Mayor Adam West", "Carl", "Consuela", "God", "Horace", "James Woods", "Evil Monkey"]
location: ["Cleveland's Deli", "Drunken Clam", "Goldman's Pharmacy", "Happy-Go-Lucky Toy Factory", "Jack's Joke Shop", "James Woods High", "Pawtucket Brewery", "Quahog 5 News", "Spooner Street"]
quote: ["Its Peanut Butter Jelly Time.", "Ive got an ideaan idea so smart that my head would explode if I even began to know what Im talking about.", "A degenerate, am I? Well, you are a festisio! See? I can make up words too, sister.", "Now I may be an idiot, but theres one thing I am not sir, and that sir, is an idiot.", "Isnt bribe just another word for love?", "I am so not competitive. In fact, I am the least non-competitive. So I win.", "Hey, don't try to take this away from me. This is the only thing I've ever been good at. Well, this and timing my farts to a thunderstorm.", "Joe, gag on my fat dauber.", "People in love can overcome anything.", "Amazing. One second of a stranger's voice on a phone, and you've got full Bollywood.", "You know, this is great guys. Drinking and eating garbage. I'm glad we all took a mental health day."]
@@ -0,0 +1,4 @@
en:
faker:
famous_last_words:
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
View File
@@ -0,0 +1,5 @@
en:
faker:
file:
extension: ["flac", "mp3", "wav", "bmp", "gif", "jpeg", "jpg", "png", "tiff", "css", "csv", "html", "js", "json", "txt", "mp4", "avi", "mov", "webm", "doc", "docx", "xls", "xlsx", "ppt", "pptx", "odt", "ods", "odp", "pages", "numbers", "key", "pdf"]
mime_type: ["application/atom+xml", "application/ecmascript", "application/EDI-X12", "application/EDIFACT", "application/json", "application/javascript", "application/ogg", "application/pdf", "application/postscript", "application/rdf+xml", "application/rss+xml", "application/soap+xml", "application/font-woff", "application/xhtml+xml", "application/xml-dtd", "application/xop+xml", "application/zip", "application/gzip", "audio/basic", "audio/L24", "audio/mp4", "audio/mpeg", "audio/ogg", "audio/vorbis", "audio/vnd.rn-realaudio", "audio/vnd.wave", "audio/webm", "image/gif", "image/jpeg", "image/pjpeg", "image/png", "image/svg+xml", "image/tiff", "image/vnd.microsoft.icon", "message/http", "message/imdn+xml", "message/partial", "message/rfc822", "model/example", "model/iges", "model/mesh", "model/vrml", "model/x3d+binary", "model/x3d+vrml", "model/x3d+xml", "multipart/mixed", "multipart/alternative", "multipart/related", "multipart/form-data", "multipart/signed", "multipart/encrypted", "text/cmd", "text/css", "text/csv", "text/html", "text/javascript", "text/plain", "text/vcard", "text/xml", "video/mpeg", "video/mp4", "video/ogg", "video/quicktime", "video/webm", "video/x-matroska", "video/x-ms-wmv", "video/x-flv"]
+102
View File
@@ -0,0 +1,102 @@
en:
faker:
finance:
credit_card:
visa:
- /4###########L/
- /4###-####-####-###L/
mastercard:
- /6771-89##-####-###L/
discover:
- /6011-####-####-###L/
- /65##-####-####-###L/
- /6011-62##-####-####-###L/
- /65##-62##-####-####-###L/
american_express:
- /34##-######-####L/
- /37##-######-####L/
diners_club:
- /368#-######-###L/
jcb:
- /3528-####-####-###L/
- /3529-####-####-###L/
switch:
- /6759-####-####-###L/
- /6759-####-####-####-#L/
- /6759-####-####-####-##L/
solo:
- /6767-####-####-###L/
- /6767-####-####-####-#L/
- /6767-####-####-####-##L/
dankort:
- /5019-####-####-###L/
forbrugsforeningen:
- /6007-22##-####-###L/
laser:
- /6304###########L/
- /6706###########L/
- /6771###########L/
- /6709###########L/
vat_number:
AT: "ATU########"
AR: "AR###########"
AU: "AU###########"
BR: "BR##.###.###/####-##"
BY: "УНП #########"
BE: "BE0#########"
BG:
- "BG#########"
- "BG##########"
CH: "CH######"
CL: "CL########-#"
CZ:
- "CZ########"
- "CZ#########"
- "CZ##########"
DK: "DK## ## ## ##"
EC: "EC#############"
EE: "EE#########"
FI: "FI########"
DE: "DE#########"
GB:
- "GB### #### ##"
- "GB### #### ## ###"
- "GBGD###"
- "GBHA###"
- "GB888 8### ##"
GR: "EL#########"
HR: "HR### ### ### ##"
"NO": "NO#########"
HU: "HU########"
IT: "IT##########"
LT:
- "LT#########"
- "LT############"
LU: "LU########"
LV: "LV###########"
MT: "MT########"
MX: "MX#### ###### ###"
PH: "PH### ### ### ###"
PL: "PL##########"
PT: "PT#########"
RO:
- "RO##"
- "RO###"
- "RO####"
- "RO#####"
- "RO######"
- "RO#######"
- "RO########"
- "RO#########"
- "RO##########"
RU:
- "RU##########"
- "RU############"
SE: "SE##########01"
SI: "SI########"
SK: "SK##########"
SM: "SM#####"
UA: "UA##########"
ZA:
- "ZA##########"
- "ZA###########"
File diff suppressed because one or more lines are too long
+8
View File
@@ -0,0 +1,8 @@
en:
faker:
football:
teams: ["Real Madrid", "FC Barcelona", "Valencia CF", "Atletico Madrid", "Manchester United", "Chelsea", "Liverpool", "Arsenal", "Tottenham Hotspur", "AC Milan", "Inter Milan", "AS Roma", "Juventus", "Bayern Munich", "Borussia Dortmund", "Schalke 04", "Benfica", "Galatasaray", "PSV Eindhoven", "LA Galaxy"]
players: ["Lionel Messi", "Gerard Pique", "Sergio Ramos", "Cristiano Ronaldo", "David De Gea", "Paul Pogba", "Antoine Griezmann", "Alvaro Morata", "Andres Iniesta", "Roberto Firmino", "Mohammed Salah", "Harry Kane", "Delle Alli", "Arjen Robben", "Franck Ribery", "Marco Reus", "Robert Lewandoski", "Zlatan Ibrahimovic", "Edinson Cavani", "Sergio Aguero", "Neymar", "Mesut Ozil", "Gianluigi Buffon", "Willian", "Manuel Neuer", "Juan Mata", "Manuel Neuer", "Cesc Fabregas", "Gareth Bale", "Eden Hazard", "Mario Mandzukic"]
coaches: ["Ernesto Valverde", "Zinedine Zidane", "Jose Mourinho", "Antonio Conte", "Jurgen Klopp", "Mauricio Pochettino", "Diego Simeone", "Massimiliano Allegri", "Jupp Heyneckes", "Arsene Wenger", "Jorge Sampaoli", "Fernando Santos", "Didier Deschamps", "Joachim Low", "Julen Lopetegui", "Mauricio Pochettino", "Unai Emery", "Massimiliano Allegri" ]
competitions: ["UEFA European Championship", "Asian Cup", "African Cup of Nations", "Copa America", "UEFA Champions League", "FIFA World Cup", "UEFA Europa League", "Serie A", "Barclays Premier League", "Bundesliga", "Liga Santander", "FA Cup", "Ligue 1", "Primeira Liga", "Eredivisie", "Super League", "Major League Soccer", "Coppa Italia", "DFB Pokal", "CONCACAF Gold Cup", "Nations Cup", "Copa del Rey"]
positions: ["Goalkeeper", "Full Back", "Right Back", "Left Back", "Defensive Midfielder", "Midfielder", "Attacking Midfielder", "Right Midfielder", "Left Midfielder", "Right Wing", "Left Wing", "Second Striker", "Centre Forward"]
@@ -0,0 +1,73 @@
en:
faker:
the_fresh_prince_of_bel_air:
characters: ['Will Smith', 'Philip Banks', 'Carlton Banks', 'Ashley Banks', 'Hilary Banks', 'Vivian Banks', 'Nicky Banks', 'Geoffrey Butler', 'Jazz', 'Vy Smith', 'Hattie Banks', 'Lisa Wilkes', 'Jackie Ames', 'Henry Furth', 'Trevor', 'Tyriq', 'Ice Tray', 'Dee Dee', 'Kellogg Lieberbaum', 'Coach Smiley', 'Judge Carl Robertson']
celebrities: ['Quincy Jones', 'Jay Leno', 'Ronald Reagan', 'Dick Clark', 'Evander Holyfield', 'Isaiah Thomas', 'Heavy D', 'Don Cornelius', 'Kadeem Hardison', 'Hugh M. Hefner', 'Kareem Abdul-Jabbar', 'Bo Jackson', 'Ken Griffey Jr.', 'Al B. Sure!', 'John Ridley', 'Doctor Dré', 'Regis Philbin', 'William Shatner', 'B. B. King', 'Kim Fields', 'Arthel Neville', 'Oprah Winfrey', 'Donal J. Trump', 'Leeza Gibbons', 'Susan Powter', 'Tempestt Bledsoe', 'Kathie Lee Gifford', 'Garcelle Beauvais', 'Bree Walker']
quotes: [
"Girl, you look so good, I would marry your brother just to get in your family.",
"In west Philadelphia born and raised, on the playground was where I spent most of my days.",
"Might I say you rate a perfect 10 on my niftiness meter?",
"Will, there's something you should know: Sometimes... parents just don't understand.",
"Word up. This is gonna be cold, stupid on the serious tip.",
"Any time you see a white guy in jail, you know he did something bad.",
"Yo whassup, Jazz?",
"I'd love to get a hold of you during a blackout.",
"Your mouth is saying 'get out', but your eyes are saying 'get busy'.",
"Come on baby, I'm saying bing bang bloozy, you and me in the jacuzzi. Whassup?",
"I love a woman who's hard to get.",
"Let's go get some barbecue and get busy.",
"No way. Dude's got a gun. Next thing you know, I got six warning shots in my back.",
"Miss Hilary, you can't go through life quitting everything. You never achieve anything unless you stick with something.",
"That must be jam, 'cause jelly don't shake like that.",
"Need some help with your African-American studies? We can go to my place and let freedom ring.",
"Well, someone has her rude hat on tonight.",
"Girl, if God created anything less beautiful than you, I hope He kept it for Himself.",
"Maybe I sometimes say things that are selfish and self-centered, but that's who I am, dammit.",
"I found that any game can be made interesting if you put some money on it.",
"Carlton, I think you've been deprived of oxygen at birth.",
"Hit the road, you little tramp!",
"Sarcasm? Whatever do you mean?",
"Between you and the humpty dance, I'll have to get a metal plate on my butt.",
"Looks like you eat here often.",
"My brother, you wanna take this outside?!?",
"Opera? I thought she said Oprah.",
"All this legal stuff won't work. The only legal phrase these people understand is 'will the defendant please rise.'",
"Courage is being the way you are no matter what anybody says about you. Will teases me, but you don't see me goin' 'Yo, yo, yo, homey, yo.'",
"Well you're so ugly that...uuhh...baby, you so fine.",
"Ashley, look how much you've grown! Hilary, look how much you've grown! Carlton... hi.",
"Ashley, if you found out the only person in the world who would go out with was mentally deranged, you'd go to bed too.",
"All I see is you guys getting a fancy ride, a fancy ride in a free car.",
"Oh, please, Vivian. You'd believe that boy if he told you that he was a big rap star whose album just went platinum.",
"You've heard of the Batmobile, get a load of the Rapmobile!",
"Hello darling...NO photographs!",
"I'm from Philly. We had to save up to be poor.",
"Carlton, skiing is for white guys named Sven, and O.J. Simpson.",
"The system doesn't work. You have to blow the door down. Looks to me like you forgot that.",
"Hurt me, hurt me! Whoa, whoa, whoa, whoa. What's up, baby?",
"Whoa, whoa, whoa, now, baby, I noticed you noticing me and I just want to put you on notice that I noticed you too.",
"I just want to let you know that I might let you consider being with me.",
"Girl. I know your feet must be tired 'cause you been running through my mind all day. Come 'ere!",
"Carlton, come on. Just because the baby is cute doesn't mean you're not the father.",
"If I keep the motorcycle, I'm a pimp. If I give it back, I'm a damn fool. Oh, well, pimp it is!",
"I always knew Will was gonna be the downfall of this family, but no one ever listens to me.",
"Mirror, mirror, on the wall, Jean Claude Van Damn, I'm fine!",
"Go, Will! Go, Will! Go, Will!",
"My situation does not define who I am. I define who I am.",
"I guess I can kiss heaven goodbye because it has got to be sin to look this good.",
"You know what they say: Behind every successful man is a woman... or if you want to switch positions that's okay with me, too.",
"Will is not a coat that you hang in the closet then pick it up when you're ready to wear it! His life goes on! He's not supposed to be there for you, you're supposed to be there for him!",
"I so rarely have a woman scream my name. I was rather enjoying it.",
"Don't tell me, 'cause if I know I can't say that I don't know when you get busted and Uncle Phil starts rounding up the usual suspects. And I am the usual suspects.",
"What kind of idiot picks a password no one can guess?",
"What is that, like the theme of this family? 'When in doubt, blame Will.'",
"Well, you know, because guys grow beards and some women don't.",
"I'm young and I'm restless. And I've only got one life to live, so I've got to follow my guiding light and search for tomorrow.",
"There's a beautiful woman talking to me, but I don't expect you to understand that!",
"EARTHQUAKE!",
"Of all the rooms to burn in your uncle's home... the kitchen! Are you mad, boy?",
"I exploit people everyday, but it's Thanksgiving so I'm taking a day off.",
"Oh, don't worry, Carlton, we're all uncomfortable with your nudity.",
"Oh, Geoffrey, I'm gonna miss you. Oh, we have to have a special going away dinner for you. What do you wanna make?",
"Well, it's got ceiling-to-floor doors, and wall-to-wall floors.",
"I'm definitely gonna miss you, C."
]
+6
View File
@@ -0,0 +1,6 @@
en:
faker:
friends:
characters: ["Peter Becker", "Ben", "Chandler Bing", "Charles Bing", "Erica Bing", "Jack Bing", "Nora Tyler Bing", "Bonnie", "Amanda Buffamonteezi", "Frank Buffay, Jr.", "Frances Buffay", "Phoebe Buffay", "Ursula Buffay", "Joshua Burgin", "Richard Burke", "Chloe", "Will Colbert", "Danny", "David", "Rob Donnan", "Doug", "Eric", "Erica", "Erika", "Barry Farber", "Fun Bobby", "Gary", "Emma Geller", "Jack Geller", "Monica Geller", "Ross Geller", "Missy Goldberg", "Janice Goralnik", "Leonard Green", "Rachel Green", "Bitsy Hannigan", "Mike Hannigan", "Theodore Hannigan", "Mr. Heckles", "Benjamin Hobart", "Joanna", "Tag Jones", "Julie", "Kathy", "Kim", "Alice Knight", "Janine LaCroix", "Dr. Ledbetter", "Estelle Leonard", "Dr. Long", "Marcel", "Eddie Menuek", "Kate Miller", "Gavin Mitchell", "Molly", "Mona", "Susie Moss", "Parker", "Mark Robinson", "Roy", "Ryan", "Sandy", "Sophie", "Steve", "Elizabeth Stevens", "Paul Stevens", "Stu", "Terry", "Mr. Treeger", "Joey Tribbiani", "Ugly Naked Guy", "Mr. Waltham", "Andrea Waltham", "Emily Waltham", "Stephen Waltham", "Charlie Wheeler", "Mr. Zelner", "Carol Willick", "Miss Chanandler Bong"]
locations: ["Monica's Apartment", "Central Perk", "Chandler and Joey's Apartment", "Monica and Chandler's House", "Phoebe's Apartment", "Ross' Third Apartment", "Javu", "Moondance Diner", "Allesandro's", "Bloomingdale's", "Ross' First Apartment", "Ross' Second Apartment", "Lincoln High School", "Joey's Apartment", "Monica and Ross' Parents House", "Becco", "Dot's Spot", "Carol and Susan's Apartment", "Gina's House", "Waltham House", "Celestino Custom Tailor", "Ernie's", "New York University", "Silvercup Studios", "Marcel's", "945 Grove St Apt. 20", "Ralph Lauren", "New York Museum of Prehistoric History", "Days of Our Lives", "15 Yemen Road, Yemen"]
quotes: ["I can handle this. Handle is my middle name. Actually, handle is the middle of my first name.", "Pivot! Pivot! Pivot! Pivot! Pivot!", "Shut up! Shut up! Shut up!", "Joey doesnt share food!", "Guys can fake it? Unbelievable! The one thing thats ours!", "If youre going to call me names, I would prefer Ross, the Divorce Force. Its just cooler.", "All right, look if you absolutely have to tell her the truth, at least wait until the timings right. And thats what deathbeds are for.", "Your teeth? Yeah, I saw them from outside.", "Dear God! This parachute is a knapsack!", "No, homo habilis was erect. Australopithecus was never fully erect.", "Well, maybe he was nervous.", "Im glad were having a rehearsal dinner. I rarely practice my meals before I eat.", "Until I was 25 I thought the only response to I love you was Oh crap!'", "Whats not to like? Custard good. Jam good. Meat good!", "No. Interestingly enough, her leaf blower picked up.", "You know whats weird? Donald Duck never wore pants. But whenever hes getting out of the shower, he always puts a towel around his waist. I mean, what is that about?", "Ross, just for my own peace of mind, youre not married to any more of us are you?", "Its a moo point. Its like a cows opinion; it doesnt matter. Its moo.", "First divorce: wifes hidden sexuality, not my fault. Second divorce: said the wrong name at the altar, kind of my fault. Third divorce: they shouldnt let you get married when youre that drunk and have stuff drawn all over your face, Nevadas fault.", "It hurts my Joeys apple!", "Oh, are you setting Ross up with someone? Does she have a wedding dress?", "Your collective dating record reads like a whos who of human crap.", "If you dont help me cook Im going to take a bunch of those hot dogs and make a new appetiser called pigs in Ross.", "Im not so good with the advice. Can I interest you in a sarcastic comment?", "No! No, Joey! U-N-I-sex.", "Oh look, ugly naked guy is decorating his Christmas tree! Wow, you should see the size of his Christmas balls!", "I cant believe my Dad saw us having sex! He didnt make it to one of my piano recitals, but this he sees!", "If you want to receive emails about my upcoming shows please give me money so I can buy a computer.", "Come on Ross youre a palaeontologist dig a little deeper.", "You cant have S-E-X when your taking care of the B-A-B-I-E.", "A hundred million people went to see a movie about what I do. I wonder how many people would go see a movie called Jurassic Parka. No, no, no, a bunch of out-of-control jackets take over an island!", "Hey buddy, this is a family place. Put the mouse back in the house.", "Im not someone who goes after a guy five minutes after hes divorced.", "We were on a break!", "Oh, my God! If you say that one more time, Im going to break up with you!", "How you doin?", "Forty-two to twenty-one! Like the turkey, Ross is done!", "SEVEN! SEVEN! SEVEN!", "I'm Monica. Im disgusting. I stalk guys and keep their underpants.", "Fine judge all you want but... married a lesbian, left a man at the altar, fell in love with a gay ice dancer, threw a girls wooden leg in the fire, LIVE IN A BOX.", "Welcome to the real world. It sucks. Youre gonna love it!", "Sure I peed on her. And if I had to, Id pee on any one of you!", "If the homo sapiens were, in fact, HOMO sapiens…is that why theyre extinct?", "You could not be any more wrong. You could try, but you would not be successful.", "Youve been BAMBOOZLED!", "It was summer… and it was hot. Rachel was there… A lonely grey couch…”OH LOOK!” cried Ned, and then the kingdom was his forever. The End.", "Je mappelle Claude", "Raspberries? Good. Ladyfingers? Good. Beef? GOOD!", "Could I BE wearing any more clothes?", "Oh no, two women love me. They're both gorgeous and sexy. My wallet's too small for my fifties AND MY DIAMOND SHOES ARE TOO TIGHT."]
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+5
View File
@@ -0,0 +1,5 @@
en:
faker:
gender:
types: ["Female", "Male", "Non-binary", "Agender", "Genderfluid", "Genderqueer", "Bigender", "Polygender"]
binary_types: ["Female", "Male"]
+91
View File
@@ -0,0 +1,91 @@
en:
faker:
ghostbusters:
actors: ["Bill Murray", "Dan Aykroyd", "Sigourney Weaver", "Harold Ramis", "Rick Moranis", "Annie Potts", "Ernie Hudson"]
characters: ["Dr. Peter Venkman", "Dr. Raymond Stantz", "Dana Barrett", "Dr. Egon Spengler", "Louis Tully", "Janine Melnitz", "Winston Zeddmore"]
quotes: [
"This city is headed for a disaster of biblical proportions.",
"What he means is Old Testament, Mr. Mayor, real wrath of God type stuff.",
"Human sacrifice, dogs and cats living together... mass hysteria!",
"Ray, when someone asks you if you're a god, you say 'YES'!",
"Gozer the Traveler. He will come in one of the pre-chosen forms. During the rectification of the Vuldrini, the traveler came as a large and moving Torg! Then, during the third reconciliation of the last of the McKetrick supplicants, they chose a new form for him: that of a giant Slor! Many Shuvs and Zuuls knew what it was to be roasted in the depths of the Slor that day, I can tell you!",
"Don't cross the streams.",
"Try to imagine all life as you know it stopping instantaneously and every molecule in your body exploding at the speed of light.",
"Total protonic reversal.",
"Do you believe in UFOs, astral projections, mental telepathy, ESP, clairvoyance, spirit photography, telekinetic movement, full trance mediums, the Loch Ness monster and the theory of Atlantis?",
"It's the Stay Puft Marshmallow Man.",
"We came, we saw, we kicked its ass!",
"Ray has gone bye-bye, Egon... what've you got left?",
"Sorry, Venkman, I'm terrified beyond the capacity for rational thought.",
"Why worry? Each one of us is carrying an unlicensed nuclear accelerator on his back.",
"There is no Dana, there is only Zuul.",
"Symmetrical book stacking. Just like the Philadelphia mass turbulence of 1947.",
"You're very handy, I can tell. I bet you like to read a lot, too.",
"Oh, that's very fascinating to me. I read a lot myself. Some people think I'm too intellectual but I think it's a fabulous way to spend your spare time. I also play racquetball. Do you have any hobbies?",
"I collect spores, molds, and fungus.",
"Are you troubled by strange noises in the middle of the night?",
"Do you experience feelings of dread in your basement or attic?",
"Have you or your family ever seen a spook, spectre or ghost?",
"Our courteous and efficient staff is on call 24 hours a day to serve all your supernatural elimination needs.",
"We're ready to believe you.",
"That's the bedroom, but nothing ever happened in there.",
"You have been a participant in the biggest interdimensional cross rip since the Tunguska blast of 1909!",
"We'd like to get a sample of your brain tissue.",
"Gozer the Gozerian... good evening. As a duly designated representative of the City, County and State of New York, I order you to cease any and all supernatural activity and return forthwith to your place of origin or to the nearest convenient parallel dimension.",
"I am the Keymaster! The Destructor is coming. Gozer the Traveler, the Destroyer.",
"I am Vinz, Vinz Clortho, Keymaster of Gozer. Volguus Zildrohar, Lord of the Sebouillia. Are you the Gatekeeper?",
"Hey, he pulls the wagon, I made the deals. You want a ride?",
"Wait for the sign. Then our prisoners will be released.",
"You will perish in flame, you and all your kind! Gatekeeper!",
"If I'm wrong, nothing happens! We go to jail - peacefully, quietly. We'll enjoy it! But if I'm *right*, and we *can* stop this thing... Lenny, you will have saved the lives of millions of registered voters.",
"The whole building is a huge, superconductive antenna that was designed and built expressly for the purpose of pulling in and concentrating spiritual turbulence. Your girlfriend lives in the corner penthouse... of Spook Central.",
"She's not my girlfriend. I find her interesting because she's a client and because she sleeps above her covers... FOUR FEET above her covers. She barks, she drools, she claws!",
"Listen... you smell something?",
"I'm Winston Zeddmore, Your Honor. I've only been with the company for a couple of weeks, but these things are real. Since I joined these men, I've seen shit that'll turn you white.",
"Somebody blows their nose and wanna keep it?",
"I tried to think of the most harmless thing. Something I loved from my childhood. Something that could never ever possibly destroy us. Mr. Stay Puft!",
"Some are people who just want attention. Others, just nutballs who come in off the street.",
"Generally you don't see that kind of behavior in a major appliance.",
"Hello, Ghostbusters... Yes, of course they're serious... You do?... You have?... No kidding! Just gimme the address... Oh sure, they will be totally discreet. Thank you!",
"I feel like the floor of a taxi cab.",
"As they say in T.V., I'm sure there's one big question on everybody's mind, and I imagine you are the man to answer that. How is Elvis, and have you seen him lately?",
"Hee hee hee! 'Get her!'' That was your whole plan, huh, 'get her.' Very scientific.",
"OK... so... she's a dog...",
"Ray, pretend for a moment that I don't know anything about metallurgy, engineering, or physics, and just tell me what the hell is going on.",
"I'm gonna take back some of the things I said about you, Egon.",
"Tell him about the Twinkie.",
"Sir, what you had there is what we refer to as a focused, non-terminal, repeating phantasm or a class-five full-roaming vapor. A real nasty one, too.",
"Coming through! One class-five full-roaming vapor. Move 'em out.",
"Hey, wait a minute. Hey, hey, hey, hey, hey! Hold it! Now, are we actually gonna go before a federal judge, and tell him that some moldy Babylonian god is going to drop in on Central Park West, and start tearing up the city?",
"You know, you don't act like a scientist.",
"You're more like a game show host.",
"Well, this is great. If the ionization-rate is constant for all ectoplasmic entities, we can really bust some heads... in a spiritual sense, of course.",
"I make it a rule never to get involved with possessed people.",
"Some moron brought a cougar to a party and it went berserk.",
"And then she threw me out of her life. She thought I was a creep, she thought I was a geek, and she probably wasn't the first.",
"I think this building should be condemned. There's serious metal fatigue in all the load-bearing members, the wiring is substandard, it's completely inadequate for our power needs, and the neighborhood is like a demilitarized zone.",
"Wow. This place is great. When can we move in? You gotta try this pole. I'm gonna get my stuff. Hey. We should stay here. Tonight. Sleep here. You know, to try it out.",
"Venkman, shorten your stream! I don't want my face burned off!",
"He slimed me.",
"I'm studying the effects of negative reinforcement on ESP ability",
"Let's say this Twinkie represents the normal amount of psychokinetic energy in the New York area. According to this morning's sample, it would be a twinkie... 35 feet long and weighing approximately 600 pounds.",
"That's a big Twinkie.",
"We could on the verge of a fourfold cross-reap. A P.K.E. surge of incredible, even dangerous proportions!",
"Of course you forget, Peter. I was present at an undersea, unexplained mass sponge migration.",
"Uhhh... this magnificent feast here represents the LAST of the petty cash.",
"Your theories are the worst kind of popular tripe, your methods are sloppy, and your conclusions are highly questionable. You are a poor scientist, Dr. Venkman!",
"I think we can get her a guest shot on 'Wild Kingdom.' I just whacked her up with about 300 cc's of Thorazaine... she's gonna take a little nap now.",
"Everybody can relax, I found the car. Needs some suspension work and shocks. Brakes, brake pads, lining, steering box, transmission, rear-end.",
"Maybe now you'll never slime a guy with a positron collider, huh?",
"So, what are we doing today, Zuul?",
"We must prepare for the coming of Gozer.",
"We've neutronized it, you know what that means? A complete particle reversal.",
"We have the tools, and we have the talent!",
"Okay, Ghostbusters. The mayor wants to see you guys. The whole island's going crazy. Let's go.",
"The structure of this roof cap is exactly like the kind of telemetry tracker that NASA uses to identify dead pulsars in deep space.",
"Nobody ever made them like this! The architect was either a certified genius, or an authentic wacko.",
"Nice thinking, Ray.",
"It's true, your honor. The man is some kind of rodent, I don't know which.",
"Is it just a mist, or does it have arms and legs?",
"Nice doggy. Cute little pooch. Maybe I've got a Milk-Bone."
]
+47
View File
@@ -0,0 +1,47 @@
en:
faker:
grateful_dead:
players: [ "Jerry Garcia",
"Bob Weir",
"Bill Kreutzmann",
"Phil Lesh",
"Ron McKernan",
"Robert Hunter",
"Brent Mydland",
"Donna Jean Godchaux",
"Keith Godchaux",
"Bruce Hornsby",
"John Barlow" ]
songs: [ "Touch of Grey",
"Althea",
"Ripple",
"Truckin",
"Eyes of the World",
"Scarlet Begonias",
"Friend of the Devil",
"Uncle Johns Band",
"China Cat Sunflower",
"Fire on the Mountain",
"Sugar Magnolia",
"I Know You Rider",
"Franklins Tower",
"Me and My Uncle",
"Box of Rain",
"Sugaree",
"St Stephen",
"Jack Straw",
"Morning Dew",
"Wharf Rat",
"The Other One",
"Casey Jones",
"Hurts Me Too",
"Dark Star",
"Brokedown Palace",
"Playing in the Band",
"Cumberland Blues",
"New Speedway Boogie",
"US Blues",
"The Music Never Stopped",
"Black Muddy River",
"Looks Like Rain",
"Bird Song"]
@@ -0,0 +1,26 @@
en:
faker:
greek_philosophers:
names: ["Plato", "Aristotle", "Pythagoras", "Heraclitus", "Parmenides", "Democritus", "Zeno of Elea", "Epicurus", "Anaxagoras", "Diogenes", "Antisthenes", "Gorgias", "Hippocrates", "Plutarch", "Proclus", "Chrysippus", "Solon", "Archimedes", "Thucydides", "Arcesilaus", "Posidonius", "Galen"]
quotes: [
"Quality is not an act, it is a habit.",
"Only the educated are free.",
"Control thy passions lest they take vengence on thee.",
"Love is composed of a single soul inhabiting two bodies.",
"Rhetoric is the art of ruling the minds of men.",
"The unexamined life is not worth living.",
"There was never a genius without a tincture of madness.",
"Dignity does not consist in possessing honors, but in deserving them.",
"Most people would rather give than get affection.",
"Beware the barrenness of a busy life.",
"The secret to humor is surprise.",
"Pleasure in the job puts perfection in the work.",
"Philosophy is the highest music.",
"The virtue of justice consists in moderation, as regulated by wisdom.",
"Know how to listen, and you will profit even from those who talk badly.",
"A few vices are sufficient to darken many virtues.",
"It is impossible to begin to learn that which one thinks one already knows.",
"It's not what happens to you, but how you react to it that matters.",
"The mind is not a vessel to be filled but a fire to be kindled.",
"Good habits formed at youth make all the difference.",
]
+8
View File
@@ -0,0 +1,8 @@
en:
faker:
hacker:
abbreviation: [TCP,HTTP,SDD,RAM,GB,CSS,SSL,AGP,SQL,FTP,PCI,AI,ADP,RSS,XML,EXE,COM,HDD,THX,SMTP,SMS,USB,PNG,SAS,IB,SCSI,JSON,XSS,JBOD]
adjective: [auxiliary,primary,back-end,digital,open-source,virtual,cross-platform,redundant,online,haptic,multi-byte,bluetooth,wireless,1080p,neural, optical,solid state,mobile]
noun: [driver,protocol,bandwidth,panel,microchip,program,port,card,array,interface,system,sensor,firewall,hard drive,pixel,alarm,feed,monitor,application,transmitter,bus,circuit,capacitor,matrix]
verb: [back up,bypass,hack,override,compress,copy,navigate,index,connect,generate,quantify,calculate,synthesize,input,transmit,program,reboot,parse]
ingverb: [backing up,bypassing,hacking,overriding,compressing,copying,navigating,indexing,connecting,generating,quantifying,calculating, synthesizing,transmitting,programming,parsing]
+7
View File
@@ -0,0 +1,7 @@
en:
faker:
games:
half_life:
character: ["Adrian Shephard", "Alyx Vance", "Arne Magnusson", "Barney Calhoun", "Colette Green", "Dog", "Eli Vance", "Father Grigori", "G-Man", "Gina Cross", "Gordon Freeman", "Isaac Kleiner", "Judith Mossman", "Odessa Cubbage", "Richard Keller", "Simmons", "Wallace Breen", "Walter Bennet"]
enemy: ["APC", "Alien Controller", "Alien Grunt", "Antlion", "Antlion Guard", "Assassin", "Baby Headcrab", "Barnacle", "Bullsquid", "City Scanner", "Civil Protection", "Combine Advisor", "Combine Gunship", "Crab Synth", "Fast Headcrab", "Fast Zombie", "Garg", "Gene Worm", "Gonarch", "Grunt", "Headcrab", "Hopper Mine", "Houndeye", "Hunter-Chopper", "Ichthyosaur", "Leech", "Manhack", "Mortar Synth", "Overwatch Elite", "Overwatch Sniper", "Overwatch Soldier", "Pit Drone", "Pit Worm", "Poison Headcrab", "Poison Zombie", "Rollermine", "Shield Scanner", "Shock Roach", "Shock Trooper", "Snark", "Strider", "Tentacle", "Voltigore", "Vortigaunt", "Zombie"]
location: ["Black Mesa East", "Black Mesa Research Facility", "Citadel", "City 17", "Earth", "Nova Prospekt", "Ravenholm", "Section A-17 Prototype Labs", "Sector A Training Facility", "Sector B Coolant Reserve", "Sector C Test Labs", "Sector D Administration", "Sector E Biodome Complex", "Sector F Lambda Complex", "Sector G Hydro Electric", "St. Olga", "White Forest", "Xen"]
+9
View File
@@ -0,0 +1,9 @@
en:
faker:
harry_potter:
characters: ["Hannah Abbott", "Bathsheda Babbling", "Ludo Bagman", "Bathilda Bagshot", "Marcus Belby", "Katie Bell", "Cuthbert Binns", "Phineas Nigellus Black", "Regulus Arcturus Black", "Sirius Black", "Broderick Bode", "Bogrod", "Amelia Bones", "Susan Bones", "Terry Boot", "Mr. Borgin", "Lavender Brown", "Millicent Bulstrode", "Charity Burbage", "Frank Bryce", "Alecto Carrow", "Amycus Carrow", "Reginald Cattermole", "Mary Cattermole", "Cho Chang", "Penelope Clearwater", "Mrs. Cole", "Michael Corner", "Vincent Crabbe, Sr.", "Vincent Crabbe", "Dennis Creevey", "Dirk Cresswell", "Bartemius Crouch, Sr.", "Barty Crouch, Jr.", "Roger Davies", "John Dawlish", "Fleur Delacour", "Gabrielle Delacour", "Dedalus Diggle", "Amos Diggory", "Cedric Diggory", "Armando Dippet", "Elphias Doge", "Antonin Dolohov", "Aberforth Dumbledore", "Albus Dumbledore", "Ariana Dumbledore", "Dudley Dursley", "Marge Dursley", "Petunia Dursley", "Vernon Dursley", "Marietta Edgecombe", "Everard", "Arabella Figg", "Argus Filch", "Justin Finch-Fletchley", "Seamus Finnigan", "Marcus Flint", "Nicholas Flamel", "Mundungus Fletcher", "Filius Flitwick", "Florean Fortescue", "Cornelius Fudge", "Marvolo Gaunt", "Merope Gaunt", "Morfin Gaunt", "Anthony Goldstein", "Goyle Sr.", "Gregory Goyle", "Heromine Granger", "Gregorovitch", "Fenrir Greyback", "Gellert Grindelwald", "Wilhelmina Grubbly-Plank", "Godric Gryffindor", "Astoria Greengrass", "Rubeus Hagrid", "Rolanda Hooch", "Mafalda Hopkirk", "Helga Hufflepuff", "Angelina Johnson", "Lee Jordan", "Bertha Jorkins", "Igor Karkaroff", "Viktor Krum", "Bellatrix Lestrange", "Rabastan Lestrange", "Rodolphus Lestrange", "Gilderoy Lockhart", "Alice Longbottom", "Augusta Longbottom", "Frank Longbottom", "Neville Longbottom", "Luna Lovegood", "Xenophilius Lovegood", "Remus Lupin", "Walden Macnair", "Draco Malfoy", "Lucius Malfoy", "Narcissa Malfoy", "Madam Malkin", "Griselda Marchbanks", "Olympe Maxime", "Ernie Macmillan", "Minerva McGonagall", "Cormac McLaggen", "Graham Montague", "Alastor (Mad-Eye) Moody", "Moran", "Theodore Nott", "Bob Ogden", "Garrick Ollivander", "Pansy Parkinson", "Padma Patil", "Parvati Patil", "Peter Pettigrew", "Antioch Peverell", "Cadmus Peverell", "Ignotus Peverell", "Irma Prince", "Sturgis Podmore", "Poppy Pomfrey", "Harry Potter", "James Potter", "Lily Potter", "Fabian Prewett", "Gideon Prewett", "Quirinus Quirrell", "Helena Ravenclaw (The Grey Lady)", "Rowena Ravenclaw", "Tom Marvolo Riddle", "Mr. Roberts", "Demelza Robins", "Augustus Rookwood", "Albert Runcorn", "Scabior", "Newt Scamander", "Rolf Scamander", "Rufus Scrimgeour", "Kingsley Shacklebolt", "Stan Shunpike", "Aurora Sinistra", "Rita Skeeter", "Horace Slughorn", "Salazar Slytherin", "Hepzibah Smith", "Zacharias Smith", "Severus Snape", "Alicia Spinnet", "Pomona Sprout", "Pius Thicknesse", "Dean Thomas", "Andromeda Tonks", "Nymphadora Tonks", "Ted Tonks", "Travers", "Sybill Trelawney", "Wilky Twycross", "Dolores Jane Umbridge", "Emmeline Vance", "Romilda Vane", "Septima Vector", "Lord Voldemort", "Myrtle Warren", "Cassius Warrington", "Arthur Weasley", "Bill Weasley", "Charlie Weasley", "Fred Weasley", "George Weasley", "Ginny Weasley", "Molly Weasley", "Percy Weasley", "Ron Weasley", "Oliver Wood", "Kennilworthy Whisp", "Yaxley", "Blaise Zabini", "Aragog", "Bane", "Beedle the Bard", "The Bloody Baron", "Buckbeak", "Sir Cadogan", "Crookshanks", "Dobby", "Enid", "Errol", "Fang", "The Fat Friar", "Fridwulfa", "The Fat Lady", "Fawkes", "Firenze", "Fluffy", "Grawp", "Griphook", "Hedwig", "Hokey", "Kreacher", "Magorian", "Moaning Myrtle", "Mrs. Norris", "Great Aunt Muriel", "Nagini", "Nearly Headless Nick", "Norbert", "Peeves", "Pigwidgeon", "Madam Rosmerta", "Ronan", "Scabbers", "Trevor", "Winky"]
locations: ["The Burrow", "Godric's Hollow", "Little Hangleton", "Malfoy Manor", "Number 12, Grimmauld Place", "Shell Cottage", "Sinner's End", "Beauxbatons", "Castlelobruxo", "Durmstrang", "Hogwarts", "Ilvermorny", "Mahoutokoro", "Uagadou", "Diagon Alley", "Eeylops Owl Emporium", "Florean Fortescue's Ice Cream Parlour", "Flourish & Blotts", "Gambol and Japes", "Gringotts Wizarding Bank", "Knockturn Alley", "Borgin & Burkes", "The Leaky Cauldron", "Madam Malkin's Robes for All Occasions", "Magical Menagerie", "Ollivanders", "Potage's Cauldron Shop", "Quality Quidditch Shop", "Slug and Jiggers Apothecary", "Stalls", "Twilfitt and Tatting's", "Weasleys' Wizard Wheezes", "Wiseacre's Wizarding Equipment", "Hogsmeade", "The Three Broomsticks", "Honeydukes", "Zonko's Joke Shop", "Hogsmeade Station", "The Hog's Head", "Dervish & Banges", "Gladrags Wizardwear", "Scrivenshaft's Quill Shop", "Madam Puddifoot's", "Post Office", "Shrieking Shack", "Azkaban", "Ministry of Magic", "St. Mungo's Hospital for Magical Maladies and Injuries", "Numengard", "Platform 9 3/4"]
quotes: ["It does not do to dwell on dreams and forget to live.", "It takes a great deal of bravery to stand up to our enemies, but just as much to stand up to our friends.", "To the well-organized mind, death is but the next great adventure.", "It is our choices, Harry, that show what we truly are, far more than our abilities.", "Happiness can be found even in the darkest of times if only one remembers to turn on the light.", "If you want to know what a mans like, take a good look at how he treats his inferiors, not his equals.", "Dark and difficult times lie ahead. Soon we must all face the choice between what is right and what is easy.", "Just because you have the emotional range of a teaspoon doesnt mean we all have.", "Weve all got both light and dark inside us. What matters is the part we choose to act on. Thats who we really are.", "Harry, suffering like this proves you are still a man! This pain is part of being human...the fact that you can feel pain like this is your greatest strength.", "Things we lose have a way of coming back to us in the end, if not always in the way we expect.", "It is the unknown we fear when we look upon death and darkness, nothing more.", "Of course it is happening inside your head, Harry, but why on earth should that mean that it is not real?", "Words are in my not-so-humble opinion, the most inexhaustible form of magic we have, capable both of inflicting injury and remedying it.", "After all this time? Always.", "No story lives unless someone wants to listen. The stories we love best do live in us forever. So whether you come back by page or by the big screen, Hogwarts will always be there to welcome you home.", "You're a wizard, Harry.", "We could all have been killed - or worse, expelled.", "Never trust anything that can think for itself if you can't see where it keeps its brain.", "Its wingardium leviOsa, not leviosAH.", "You sort of start thinking anythings possible if youve got enough nerve.", "I solemnly swear that I am up to no good.", "There are some things you can't share without ending up liking each other, and knocking out a twelve-foot mountain troll is one of them."]
books: ["Harry Potter and the Sorcerer's Stone", "Harry Potter and the Chamber of Secrets", "Harry Potter and the Prisoner of Azkaban", "Harry Potter and the Goblet of Fire", "Harry Potter and the Order of the Phoenix", "Harry Potter and the Half-Blood Prince", "Harry Potter and the Deathly Hallows"]
houses: ["Gryffindor", "Slytherin", "Ravenclaw", "Hufflepuff", "Horned Serpent", "Wampus", "Thunderbird", "Pukwudgie"]
spells: ["Accio", "Alohomora", "Avada Kedavra", "Crucio", "Confundo", "Expelliarmus", "Expecto Patronum", "Lumos", "Obliviate", "Reparo", "Revelio", "Riddikulus", "Stupefy", "Sectumsempra", "Wingardium Leviosa"]
+6
View File
@@ -0,0 +1,6 @@
en:
faker:
heroes:
names: ["Christian", "Edric", "Orrin", "Sylvia", "Valeska", "Sorsha", "Tyris", "Lord Haart", "Catherine", "Roland", "Sir Mullich", "Adela", "Adelaide", "Caitlin", "Cuthbert", "Ingham", "Loynis", "Rion", "Sanya", "Jenova", "Kyrre", "Ivor", "Ufretin", "Clancy", "Thorgrim", "Ryland", "Mephala", "Gelu", "Aeris", "Alagar", "Coronius", "Elleshar", "Malcom", "Melodia", "Gem", "Uland", "Fafner", "Iona", "Josephine", "Neela", "Piquedram", "Rissa", "Thane", "Torosar", "Aine", "Astral", "Cyra", "Daremyth", "Halon", "Serena", "Solmyr", "Theodorus", "Dracon", "Calh", "Fiona", "Ignatius", "Marius", "Nymus", "Octavia", "Pyre", "Rashka", "Xeron", "Ash", "Axsis", "Ayden", "Calid", "Olema", "Xyron", "Xarfax", "Zydar", "Charna", "Clavius", "Galthran", "Isra", "Moandor", "Straker", "Tamika", "Vokial", "Lord Haart", "Aislinn", "Nagash", "Nimbus", "Sandro", "Septienna", "Thant", "Vidomina", "Xsi", "Ajit", "Arlach", "Dace", "Damacon", "Gunnar", "Lorelei", "Shakti", "Synca", "Mutare", "Mutare Drake", "Alamar", "Darkstorn", "Deemer", "Geon", "Jaegar", "Jeddite", "Malekith", "Sephinroth", "Crag Hack", "Gretchin", "Gurnisson", "Jabarkas", "Krellion", "Shiva", "Tyraxor", "Yog", "Boragus", "Kilgor", "Dessa", "Gird", "Gundula", "Oris", "Saurug", "Terek", "Vey", "Zubin", "Alkin", "Broghild", "Bron", "Drakon", "Gerwulf", "Korbac", "Tazar", "Wystan", "Andra", "Merist", "Mirlanda", "Rosic", "Styg", "Tiva", "Verdish", "Voy", "Adrienne", "Erdamon", "Fiur", "Ignissa", "Kalt", "Lacus", "Monere", "Pasis", "Thunar", "Aenain", "Brissa", "Ciele", "Gelare", "Grindan", "Inteus", "Labetha", "Luna"]
specialties: ["Ballista", "Griffins", "Archery", "Navigation", "Archers", "Swordsmen", "Cavaliers", "Estates", "Speed", "Bless", "Frost Ring", "Gold", "Weakness", "Monks", "Prayer", "First Aid", "Eagle Eye", "Logistics", "Elves", "Dwarves", "Unicorns", "Resistance", "Dendroids", "Armorer", "Sharpshooters", "Pegasi", "Ice Bolt", "Slayer", "Intelligence", "Fortune", "Cure", "Nagas", "Genies", "Golems", "Gargoyles", "Mercury", "Hypnotize", "Haste", "Mysticism", "Chain Lightning", "Magi", "Enchanters", "Gogs", "Hell Hounds", "Imps", "Demons", "Pit Fiends", "Efreeti", "Devils", "Bloodlust", "Sulfur", "Inferno (spell)", "Fireball", "Sorcery", "Wights", "Skeletons", "Necromancy", "Liches", "Walking Dead", "Black Knights", "Vampires", "Meteor Shower", "Death Ripple", "Animate Dead", "Stone Skin", "Beholders", "Minotaurs", "Harpies", "Troglodytes", "Manticores", "Dragons", "Resurrection", "Crystal", "Offense", "Goblins", "Orcs", "Ogres", "Rocs", "Wolf Riders", "Cyclops", "Behemoths", "Gems", "Precision", "Gorgons", "Wyverns", "Basilisks", "Gnolls", "Serpent Flies", "Lizardmen", "Fire Magic", "Earth Elementals", "Fire Elementals", "Water Elementals", "Psychic Elementals", "Disrupting Ray", "Magic Arrow", "Fire Wall"]
klasses: ["Knight", "Cleric", "Ranger", "Druid", "Alchemist", "Wizard", "Demoniac", "Heretic", "Death Knight", "Necromancer", "Overlord", "Warlock", "Barbarian", "Battle Mage", "Beastmaster", "Witch", "Planeswalker", "Elementalist"]
@@ -0,0 +1,7 @@
en:
faker:
heroes_of_the_storm:
battlegrounds: ["Alterac Pass", "Battlefield of Eternity", "Blackheart's Bay", "Braxis Holdout", "Cursed Hollow", "Dragon Shire", "Garden of Terror", "Hanamura Temple", "Haunted Mines", "Infernal Shrines", "Sky Temple", "Tomb of the Spider Queen", "Towers of Doom", "Volskaya Foundry", "Warhead Junction"]
classes: ["Assasin", "Multiclass", "Specialist", "Support", "Warrior"]
heroes: ["Abathur", "Alarak", "Alexstrasza", "Ana", "Anub'arak", "Artanis", "Arthas", "Auriel", "Azmodan", "Blaze", "Brightwing", "Cassia", "Chen", "Cho", "Chromie", "D.Va", "Deckard", "Dehaka", "Diablo", "E.T.C.", "Falstad", "Fenix", "Gall", "Garrosh", "Gazlowe", "Genji", "Greymane", "Gul'dan", "Hanzo", "Illidan", "Jaina", "Johanna", "Junkrat", "Kael'thas", "Kel'Thuzad", "Kerrigan", "Kharazim", "Leoric", "Li Li", "Li-Ming", "Lt. Morales", "Lunara", "Lúcio", "Maiev", "Mal'Ganis", "Malfurion", "Malthael", "Medivh", "Mephisto", "Muradin", "Murky", "Nazeebo", "Nova", "Orphea", "Probius", "Ragnaros", "Raynor", "Rehgar", "Rexxar", "Samuro", "Sgt. Hammer", "Sonya", "Stitches", "Stukov", "Sylvanas", "Tassadar", "The Butcher", "The Lost Vikings", "Thrall", "Tracer", "Tychus", "Tyrael", "Tyrande", "Uther", "Valeera", "Valla", "Whitemane", "Xul", "Yrel", "Zagara", "Zarya", "Zeratul", "Zul'jin"]
quotes: ["Beat them like they owe you money!", "Careful wizard, your kind has upset the balance beforeo I become re-dead? Deader? ... Alive?\"", "Don't forget to check the pocket!", "Have you ever considered aiming anywhere other than the face?", "Hey, you look like the cover of E.T.C.s new album!", "Human words are hard to make together talking for expressing... things!", "I like happy things! Like puppies, and rainbows, and dead enemies!", "I must leave and I blame this failure upon you.", "Mrgrgrlrgrlgr!!!", "Oh my God, I can't believe I just killed a panda.", "Taunting life form; you are weak! And physically unappealing!", "Teammates. Much to improve.\" is a pretty good contender.", "That was easy! You were easy to kill!", "This will only hurt until you die.", "Ugh, I've known much better healers.", "We drink first blood!", "You look like you could actually be of use here!", "You might be a king, or just a street sweeper... yet sooner or later you dance with the reaper.", "You see this hero yes? Then kill them!", "You think us fools?", "You waste both my time and your breath, and the former has value."]
+24
View File
@@ -0,0 +1,24 @@
en:
faker:
hey_arnold:
characters: ["Arnold", "Steely Phil", "Pookie", "Oskar Kokoschka", "Suzie Kokoschka", "Mr. Hyuhn", "Helga G. Pataki", "Miriam Pataki", "Olga Pataki", "Gerald Johannssen", "Harold Berman", "Phoebe Heyerdahl", "Rhonda Lloyd", "Lila Sawyer", "Stinky Peterson", "Eugene Horowitz", "Sid", "Curly", "Torvald", "Sheena", "Lorenzo", "Iggy", "Brainy", "Nadine", "Park", "Joey Stevenson", "Peapod Kid", "Big Gino", "Campfire Lass", "Wolfgang", "Edmund", "Big Patty", "Mickey the Weasel", "Chocolate Boy",
"Ruth P. McDougal", "Robert Simmons", "Miss Slovak", "Principal Wartz", "Jack Wittenburg", "Tish Wittenburg", "Tucker Wittenburg", "Dino Spumoni", "Jimmy Kafka", "Ernie Potts", "Ronnie Matthews", "Mickey Kaline", "Monkey Man", "Pigeon Man", "Robbie Fisher", "Sewer King", "Stoop Kid", "The Jolly Olly Man", "Abner", "Four-Eyed Jack", "Wheezin' Ed", "Don Reynolds", "Big Bob Pataki", "Miriam Pataki", "Jamie O", "Timberly", "Marty Green", "Ludwig", "Dr. Bliss", "Lieutenant Major Goose", "Alphonse Perrier du von Scheck", "The Mauve Avenger", "Earl"]
locations: ["P.S. 118", "Stoop Kid's Stoop", "Antonio's Pizzeria", "Mickey's Dog Pound", "Big Bob's Beeper Emporium", "Sundae Salon", "Omar's Falafel Hut", "The Fudge Place", "Hillwood City", "Green Meats", "Roscoe's Funky Rags", "Watch Repair", "Yahoo Chocolate Factory", "Sunset Arms", "Stinky's farm", "Chez Paris", "Gerald Field", "Madame Bovary's Dance School for Boys"]
quotes: [
"Stoop Kid's afraid to leave his stoop!",
"MONKEYMAAAAN!",
"You better not touch my gal, or I'll pop you in the kisser, pal",
"Yahoo Soda Just Drink It",
"I saw your face and wow!",
"But you see, Arnold and tall hair boy, I dont want to be famous! I want to live my life simply! I like my banana wallpaper, I like doing my own laundry! Just give me the simple things!",
"Kitty, kitty, kitty, do you like to pet the kitty? I like to pet the kitty! Hey look! I'm petting the kitty!",
"You're a bold kid, Arnold, a bold kid.",
"Hey, short man!",
"You keep the money!",
"Suzie, make me a sandwich!",
"But Gerald, the Jolly Olly Man is a stingy, mean spirited jerk, who hates kids and is constantly teetering on the brink of insanity.",
"Can you get your arm off my shoulder? As I've told you many times before, I don't like you like you, I just like you.",
"Move it, Footballhead",
"Never eat raspberries.",
"I'm okay!"
]
+4
View File
@@ -0,0 +1,4 @@
en:
faker:
hipster:
words: ["Wes Anderson", "chicharrones", "narwhal", "food truck", "marfa", "aesthetic", "keytar", "art party", "sustainable", "forage", "mlkshk", "gentrify", "locavore", "swag", "hoodie", "microdosing", "VHS", "before they sold out", "pabst", "plaid", "Thundercats", "freegan", "scenester", "hella", "occupy", "truffaut", "raw denim", "beard", "post-ironic", "photo booth", "twee", "90's", "pitchfork", "cray", "cornhole", "kale chips", "pour-over", "yr", "five dollar toast", "kombucha", "you probably haven't heard of them", "mustache", "fixie", "try-hard", "franzen", "kitsch", "austin", "stumptown", "keffiyeh", "whatever", "tumblr", "DIY", "shoreditch", "biodiesel", "vegan", "pop-up", "banjo", "kogi", "cold-pressed", "letterpress", "chambray", "butcher", "synth", "trust fund", "hammock", "farm-to-table", "intelligentsia", "loko", "ugh", "offal", "poutine", "gastropub", "Godard", "jean shorts", "sriracha", "dreamcatcher", "leggings", "fashion axe", "church-key", "meggings", "tote bag", "disrupt", "readymade", "helvetica", "flannel", "meh", "roof", "hashtag", "knausgaard", "cronut", "schlitz", "green juice", "waistcoat", "normcore", "viral", "ethical", "actually", "fingerstache", "humblebrag", "deep v", "wayfarers", "tacos", "taxidermy", "selvage", "put a bird on it", "ramps", "portland", "retro", "kickstarter", "bushwick", "brunch", "distillery", "migas", "flexitarian", "XOXO", "small batch", "messenger bag", "heirloom", "tofu", "bicycle rights", "bespoke", "salvia", "wolf", "selfies", "echo", "park", "listicle", "craft beer", "chartreuse", "sartorial", "pinterest", "mumblecore", "kinfolk", "vinyl", "etsy", "umami", "8-bit", "polaroid", "banh mi", "crucifix", "bitters", "brooklyn", "PBR&B", "drinking", "vinegar", "squid", "tattooed", "skateboard", "vice", "authentic", "literally", "lomo", "celiac", "health", "goth", "artisan", "chillwave", "blue bottle", "pickled", "next level", "neutra", "organic", "Yuccie", "paleo", "blog", "single-origin coffee", "seitan", "street", "gluten-free", "mixtape", "venmo", "irony", "everyday", "carry", "slow-carb", "3 wolf moon", "direct trade", "lo-fi", "tousled", "tilde", "semiotics", "cred", "chia", "master", "cleanse", "ennui", "quinoa", "pug", "iPhone", "fanny pack", "cliche", "cardigan", "asymmetrical", "meditation", "YOLO", "typewriter", "pork belly", "shabby chic", "+1", "lumbersexual", "williamsburg", "muggle magic", "phlogiston"]
@@ -0,0 +1,45 @@
en:
faker:
hitchhikers_guide_to_the_galaxy:
characters: ["Agda", "Agrajag", "Arthur Dent", "Arthur Philip Deodat", "Barry Manilow", "Bowerick Wowbagger", "Charles Darwin", "Colin the Security Robot", "Dan Streetmentioner", "Deep Thought", "Eccentrica Gallumbits", "Eddie the Computer", "Effrafax of Wug", "Elvis", "Emily Saunders", "Fenchurch", "Ford Prefect", "Frankie and Benjy", "Gag Halfrunt", "Gail Andrews", "Galaxia Woonbeam", "Garkbit", "Genghis Khan", "Grunthos the Flatulent", "Hactar", "Hillman Hunter", "Hotblack Desiato", "Hotblack Desiato's bodyguard", "Humma Kavula", "JinJenz", "Lintilla", "Loonquawl", "Loonquawl and Phouchg", "Lunkwill and Fook", "Magrathean sperm whale", "Majikthise", "Marvin", "Max Quordlepleen", "Mella", "Mr. Prosser", "Oolon Colluphid", "Pasta Fasta", "Paula Nancy Millstone Jennings", "Phouchg", "Pizpot Gargravarr", "Prak", "Prostetnic Vogon Jeltz", "Prostetnic Vogon Kwaltz", "Questular Rontok", "Random Dent", "Reg Nullify", "Rob McKenna", "Roosta", "Slartibartfast", "The Allitnils", "Tricia McMillan", "Trillian", "Trin Tragula", "Vroomfondel", "Wonko the Sane", "Yooden Vranx", "Zaphod Beeblebrox", "Zarniwoop", "Zarquon"]
locations: ["29 Arlington Avenue", "Arthur Dent's house", "Asbleg", "Barnard's Star", "Belgium", "Betelgeuse", "Bistro Illegal", "Boston", "Bournemouth", "Café Lou", "Cathedral of Chalesm", "Croydon", "Denmark", "Easter Island", "Evildrome Boozarama", "Fenchurch Street railway station", "France", "Frogstar system", "Frogstar World B", "Guildford", "Han Dold City", "Highgate Cemetery", "Horse and Groom", "Horsehead Nebula", "Ibiza", "Islington", "Kakrafoon Kappa", "Lamuella", "London", "Lord's Cricket Ground", "Madagascar", "Megabrantis cluster", "Milliways", "North West Ripple", "Norway", "Oglaroon", "Pleiades system", "Preliumtarn", "Rickmansworth", "Rupert", "Sector XXXZ5QZX", "Sector ZZ9 Plural Z Alpha", "Seventh Galaxy of Light and Ingenuity", "Slim's Throat Emporium", "Space", "Stavro Mueller Beta", "Stavromula Beta", "The Big Bang Burger Bar", "The Domain of The King", "Total Perspective Vortex", "Western Spiral Arm", "Xaxis", "Ysllodins", "Zarss", "Ziggie's Den of Iniquity"]
marvin_quote: [
"Life? Don't talk to me about life.",
"Here I am, brain the size of a planet, and they tell me to take you up to the bridge. Call that job satisfaction? 'Cos I don't.",
"I think you ought to know I'm feeling very depressed.",
"Pardon me for breathing, which I never do anyway so I don't know why I bother to say it, Oh God, I'm so depressed.",
"I won't enjoy it.",
"You think you've got problems? What are you supposed to do if you are a manically depressed robot? No, don't try to answer that. I'm fifty thousand times more intelligent than you and even I don't know the answer. It gives me a headache just trying to think down to your level.",
"There's only one life-form as intelligent as me within thirty parsecs of here and that's me.",
"I wish you'd just tell me rather trying to engage my enthusiasm, because I haven't got one.",
"And then of course I've got this terrible pain in all the diodes down my left side."
]
planets: ["Allosimanius Syneca", "Argabuthon", "Arkintoofle Minor", "Bartledan", "Bethselamin", "Blagulon Kappa", "Brontitall", "Broop Kidron 13", "Broop Kidron Thirteen", "Burphon XII", "Damogran", "Dangrabad Beta", "Earth", "Eroticon VI", "Fallia", "Flargathon", "Frogstar World A", "Frogstar World B", "Frogstar World C", "Gagrakacka", "Golgafrincham", "Han Wavel", "Happi-Werld III", "Hawalius", "Jaglan Beta", "Jajazikstak", "Kakrafoon Kappa", "Kria", "Krikkit", "Lamuella", "Magrathea", "Nano", "NowWhat", "Oglaroon", "Poghril", "Preliumtarn", "Rupert", "Santraginus V", "Sesefras Magna", "Sqornshellous Zeta", "Traal", "Viltvodle VI", "Vogsphere", "Xaxis"]
quotes: [
"Earth: Mostly Harmless",
"Whatever your tastes, Magrathea can cater for you. We are not proud.",
"But Mr. Dent, the plans have been available in the local planning office for the last nine months.",
"theres an infinite number of monkeys outside who want to talk to us about this script for Hamlet theyve worked out.",
"Will you open up the exit hatch, please, computer?",
"According to the legends, the Magratheans lived most of their lives underground.",
"Magrathea itself disappeared and its memory soon passed into the obscurity of legend. In these enlightened days, of course, no one believes a word of it.",
"Evolution? they said to themselves, Who needs it?",
"Curiously enough, the only thing that went through the mind of the bowl of petunias as it fell was Oh no, not again.",
"Parts of the inside of her head screamed at other parts of the inside of her head.",
"if youve never been through a matter transference beam before youve probably lost some salt and protein. The beer you had should have cushioned your system a bit.",
"I've just had an unhappy love affair, so I don't see why anybody else should have a good time.",
"Its only half completed, Im afraid we havent even finished burying the artificial dinosaur skeletons in the crust yet.",
"Theyve got as much sex appeal as a road accident.",
"...they discovered only a small asteroid inhabited by a solitary old man who claimed repeatedly that nothing was true, though he was later discovered to be lying.",
"If they dont keep exercising their lips, he thought, their brains start working.",
"If there's anything more important than my ego around, I want it caught and shot now.",
"In the beginning, the Universe was created. This has made a lot of people very angry and been widely regarded as a bad move.",
"On the planet Earth, man had always assumed that he was more intelligent than dolphins because he had achieved so much—the wheel, New York, wars and so on—whilst all the dolphins had ever done was muck about in the water having a good time. But conversely, the dolphins had always believed that they were far more intelligent than man—for precisely the same reasons.",
"It seemed to me that any civilization that had so far lost its head as to need to include a set of detailed instructions for use in a packet of toothpicks, was no longer a civilization in which I could live and stay sane.",
"Nothing travels faster than the speed of light with the possible exception of bad news, which obeys its own special laws.",
"He was staring at the instruments with the air of one who is trying to convert Fahrenheit to centigrade in his head while his house is burning down.",
"Dont Panic",
"42"
]
species: ["Algolian Suntiger", "Arcturan MegaDonkey", "Arcturan Megagrasshopper", "Azgoths of Kria", "Babel Fish", "Belcerebon", "Boghog", "Cow", "Damogran Frond Crested Eagle", "Dentrassis", "Dolphins", "Flaybooz", "Golgafrinchan", "Grebulon", "Grebulons", "Hingefreel", "Hooloovoo", "Human", "Jatravartid", "Mattress", "Mice", "Mouse", "Nanites", "Perfectly Normal Beast", "Ravenous Bugblatter Beast of Traal", "Sarkopsi", "Shaltanac", "Silastic Armorfiends", "Silver Tongued Devils", "Vl'Hurg", "Vogon"]
starships: ["Billion Year Bunker", "Bistromath", "Golgafrinchan Ark Fleet Ship B", "Heart of Gold", "Krikkit One", "RW6", "Starship Titanic", "Tanngrisnir", "Vogon Constructor Fleet"]
+19
View File
@@ -0,0 +1,19 @@
en:
faker:
hobbit:
character: ["Bilbo Baggins", "Bungo Baggins", "Belladonna Took", "Bullroarer Took", "Gandalf The Grey", "Radagast", "Dain", "Thorin Oakenshield", "Fili", "Kili", "Balin", "Dwalin", "Oin", "Gloin", "Dori", "Nori", "Ori", "Bifur", "Bofur", "Bombur", "Elrond", "Galion", "Bard the Bowman", "Beorn", "Tom", "Bert", "William (Bill Huggins)", "Gollum", "The Necromancer", "Smaug", "Carc", "Roac", "The Lord of the Eagles", "The Great Goblin", "Bolg", "Golfimbul"]
thorins_company: ["Thorin Oakenshield", "Fili", "Kili", "Balin", "Dwalin", "Oin", "Gloin", "Dori", "Nori", "Ori", "Bifur", "Bofur", "Bombur", "Gandalf", "Bilbo Baggins"]
quote: [
"Do you wish me a good morning, or mean that it is a good morning whether I want it or not; or that you feel good this morning; or that it is a morning to be good on?",
"There is nothing like looking, if you want to find something. You certainly usually find something, if you look, but it is not always quite the something you were after.",
"In a hole in the ground there lived a hobbit.",
"It does not do to leave a live dragon out of your calculations, if you live near him.",
"May the wind under your wings bear you where the sun sails and the moon walks.",
"Where there's life there's hope.",
"So comes snow after fire, and even dragons have their endings.",
"Where did you go to, if I may ask?' said Thorin to Gandalf as they rode along. To look ahead,' said he. And what brought you back in the nick of time?' Looking behind,' said he.",
"'You have nice manners for a thief and a liar,' said the dragon.",
"May the hair on your toes never fall out!",
"The road goes ever on and on",
"Never laugh at live dragons, Bilbo you fool!" ]
location: ["Bree", "The Shire", "Rivendell", "The Misty Mountains", "Beorn's Hall", "Mirkwood", "Esgaroth", "Erebor", "Bag-End", "Under-Hill", "Mount Gram", "Green Fields", "Last Desert", "Lonely Mountain", "Withered Heath", "Country Round", "Long Lake", "River Running", "Mines of Moria", "Green Dragon Inn", "Bywater", "The Great Mill", "Wilderland", "Gondolin", "Land Beyond", "Goblin Gate", "Carrock", "High Pass", "Great River", "Grey Mountains", "Land of the Necromancer", "Long Marshes", "Forest River", "Lake Town", "Dorwinion", "Ravenhill", "Iron Hills", "Mount Gundabad"]
+5
View File
@@ -0,0 +1,5 @@
en:
faker:
house:
furniture: ["chair", armchair", "table", "dining table", "stool", "sofa", "couch", "bath", "bed", "cupboard", "drawers", "dresser", "floor lamp", "bedside table", "futon"]
rooms: ["kitchen", "living room", "reception room", "bedroom", "master bedroom", "guest room", "drawing room", "conservatory", "porch", "hallway", "pantry", "sunroom", "bathroom", "ensuite bathroom", "cellar", "attic", "loft"]
@@ -0,0 +1,28 @@
en:
faker:
how_i_met_your_mother:
character: ["Ted Mosby", "Marshall Eriksen", "Lily Aldrin", "Robin Scherbatsky", "Barney Stinson", "Tracy Mosby", "Luke Mosby", "Penny Mosby", "Alan Thicke", "Arthur Hobbs", "Bilson", "Brad Morris", "Carl MacLaren", "Claudia Grice", "Don Frank", "Doug Martin",
"Gary Blauman", "George Van Smoot", "Hammond Druthers", "James Stinson", "Jerome Whittaker", "Judy Eriksen", "Loretta Stinson", "Marcus Eriksen", "Marvin Eriksen Jr.", "Marvin Eriksen Sr.", "Mickey Aldrin", "Nick Podarutti", "Quinn Garvey", "Ranjit Singh", "Robin Scherbatsky Sr.",
"Sandy Rivers", "Stella Zinman", "Stuart Bowers", "Wendy the Waitress", "Virginia Mosby", "William Zabka", "Zoey Pierson"]
catch_phrase: ["Legendary", "Suit Up", "Wait For it", "But… umm", "Lawyered", "Challenege Accepted", "Just… O.K?", "Wheres the poop?", "Thats the Dream", "True Story", "Patent Pending", "What Up", "Classic Shmosby"]
high_five: ["Arthritis Five", "Relapse Five", "Phone Five", "Solemn Low Five", "Hypothetical High Five", "Self Five", "Freeze Fram High Five", "Tiny Five", "High Two", "Multiple High Fives", "The Highest of Fives", "Door Five", "High Six", "Motility Five", "Claw Five", "High V",
"Word Play Five", "Condolence Five", "Almighty Five", "Mental Self Five", "Retraction Five", "Angry Self Five", "Mushroom Five", "Get-this-over-with-quickly-so-we-can-move-past-how-awkward-it-was-that-I-just-said-that Five", "High Infinity"]
quote: [
"Whenever Im sad, I stop being sad and be awesome instead.",
"Because sometimes even if you know how somethings gonna end that doesnt mean you cant enjoy the ride.",
"The littlest thing can cause a ripple effect that changes your life.",
"Thats life, you know, we never end up where you thought you wanted to be.",
"Were going to get older whether we like it or not, so the only question is whether we get on with our lives, or desperately cling to the past.",
"Ted, how many times have I told you to put the lid back on the peanut butter jar?! Its this inconsiderate, immature jackassery that makes me feel like Im living in The Real World House! And not the early days when they all had jobs and social consciences, Im talking about Hawaii, and after!",
"There are a lot of little reasons why the big things in our lives happen.",
"I keep waiting for it to happen. Im waiting for it to happen. I guess Im just tired of waiting. And that is all Im going to say on that subject.",
"Look, you cant design your life like a building. It doesnt work that way. You just have to live it… and itll design itself.",
"Definitions are important.",
"You cant just skip ahead to where you think your life should be.",
"Its just, eventually were all gonna move on. Its called growing up.",
"There are two big days in any love story: the day you meet the girl of your dreams and the day you marry her.",
"The future is scary but you cant just run back to the past because its familiar.",
"I realized that Im searching, searching for what I really want in life. And you know what? I have absolutely no idea what that is.",
"Revenge fantasies never work out the way you want.",
"Whether a gestures charming or alarming, depends on how its received."
]
+5
View File
@@ -0,0 +1,5 @@
en:
faker:
id_number:
valid: "#{IDNumber.ssn_valid}"
invalid: ['000-##-####', '###-00-####', '###-##-0000', '666-##-####', '9##-##-####']
@@ -0,0 +1,7 @@
en:
faker:
industry_segments:
industry: ["Oil & Gas", "Basic Materials", "Industrials", "Consumer Goods", "Health Care", "Consumer Services", "Telecommunications", "Utilities", "Financials", "Technology"]
super_sector: ["Oil & Gas", "Chemicals", "Basic Resources", "Construction & Materials", "Industrial Goods & Services", "Automobiles & Parts", "Food & Beverage", "Personal & Household Goods", "Health Care", "Retail", "Media", "Travel & Leisure", "Telecommunications", "Utilities", "Banks", "Insurance", "Real Estate", "Financial Services", "Technology"]
sector: ["Oil & Gas Producers", "Oil Equipment, Services & Distribution", "Alternative Energy", "Chemicals", "Forestry & Paper", "Industrial Metals & Mining", "Mining", "Construction & Materials", "Aerospace & Defense", "General Industrials", "Electronic & Electrical Equipment", "Industrial Engineering", "Industrial Transportation", "Support Services", "Automobiles & Parts", "Beverages", "Food Producers", "Household Goods & Home Construction", "Leisure Goods", "Personal Goods", "Tobacco", "Health Care Equipment & Services", "Pharmaceuticals & Biotechnology", "Food & Drug Retailers", "General Retailers", "Media", "Travel & Leisure", "Fixed Line Telecommunications", "Mobile Telecommunications", "Electricity", "Gas, Water & Multiutilities", "Banks", "Nonlife Insurance", "Life Insurance", "Real Estate Investment & Services", "Real Estate Investment Trusts", "Financial Services", "Equity Investment Instruments", "Nonequity Investment Instruments", "Software & Computer Services", "Technology Hardware & Equipment"]
sub_sector: ["Exploration & Production", "Integrated Oil & Gas", "Oil Equipment & Services", "Pipelines", "Renewable Energy Equipment", "Alternative Fuels", "Commodity Chemicals", "Specialty Chemicals", "Forestry", "ÊPaper", "Aluminum", "Nonferrous Metals", "Iron & Steel", "Coal", "Diamonds & Gemstones", "General Mining", "Gold Mining", "Platinum & Precious Metals", "Building Materials & Fixtures", "Heavy Construction", "Aerospace", "Defense", "Containers & Packaging", "Diversified Industrials", "Electrical Components & Equipment", "Electronic Equipment", "Commercial Vehicles & Trucks", "Industrial Machinery", "Delivery Services", "Marine Transportation", "Railroads", "Transportation Services", "Trucking", "Business Support Services", "Business Training & Employment Agencies", "Financial Administration", "Industrial Suppliers", "Waste & Disposal Services", "Automobiles", "Auto Parts", "Tires", "Brewers", "Distillers & Vintners", "Soft Drinks", "Farming & Fishing", "Food Products", "Durable Household Products", "Nondurable Household Products", "Furnishings", "Home Construction", "Consumer Electronics", "Recreational Products", "Toys", "Clothing & Accessories", "Footwear", "Personal Products", "Tobacco", "Health Care Providers", "Medical Equipment", "Medical Supplies", "Biotechnology", "Pharmaceuticals", "Drug Retailers", "Food Retailers & Wholesalers", "Apparel Retailers", "Broadline Retailers", "Home Improvement Retailers", "Specialized Consumer Services", "Specialty Retailers", "Broadcasting & Entertainment", "Media Agencies", "Publishing", "Airlines", "Gambling", "Hotels", "Recreational Services", "Restaurants & Bars", "Travel & Tourism", "Fixed Line Telecommunications", "Mobile Telecommunications", "Conventional Electricity", "Alternative Electricity", "Gas Distribution", "Multiutilities", "Water", "Banks", "Full Line Insurance", "Insurance Brokers", "Property & Casualty Insurance", "Reinsurance", "Life Insurance", "Real Estate Holding & Development", "Real Estate Services", "Industrial & Office REITs", "Retail REITs", "Residential REITs", "Diversified REITs", "Specialty REITs", "Mortgage REITs", "Hotel & Lodging REITs", "Asset Managers", "Consumer Finance", "Specialty Finance", "Investment Services", "Mortgage Finance", "Equity Investment Instruments", "Nonequity Investment Instruments", "Computer Services", "Internet", "Software", "Computer Hardware", "Electronic Office Equipment", "Semiconductors", "Telecommunications Equipment"]
File diff suppressed because one or more lines are too long
+6
View File
@@ -0,0 +1,6 @@
en:
faker:
invoice:
reference:
check_digit_method: method_731
pattern: '\d{3,19}#'
+15
View File
@@ -0,0 +1,15 @@
en:
faker:
job:
field: [Marketing, IT, Accounting, Administration, Advertising, Banking, Community-Services, Construction, Consulting, Design, Education, Farming, Government, Healthcare, Hospitality, Legal, Manufacturing, Marketing, Mining, Real-Estate, Retail, Sales, Technology]
seniority: [Lead, Senior, Product, National, Regional, District, Central, Global, Customer, Investor, Dynamic, International, Legacy, Forward, Internal, Chief, Direct, Corporate, Future, Human, Principal]
position: [Supervisor, Associate, Executive, Liaison, Officer, Manager, Engineer, Specialist, Director, Coordinator, Administrator, Architect, Analyst, Designer, Planner, Orchestrator, Technician, Developer, Producer, Consultant, Assistant, Facilitator, Agent, Representative, Strategist]
key_skills: [Teamwork, Communication, Problem solving, Leadership, Organisation, Work under pressure, Confidence, Self-motivated, Networking skills, Proactive, Fast learner, Technical savvy]
employment_type: [Full-time, Part-time, Temporary, Contract, Internship, Commission]
education_level: [Associates, Bachelor, Master, Doctorate]
title:
- "#{seniority} #{field} #{position}"
- "#{seniority} #{field} #{position}"
- "#{field} #{position}"
- "#{field} #{position}"
- "#{seniority} #{position}"
+83
View File
@@ -0,0 +1,83 @@
en:
faker:
kpop:
i_groups: ["Seo Taiji and Boys", "Deux", "Cool", "DJ DOC", "Roo'ra", "Two Two", "R.ef", "Turbo", "Baby V.O.X.", "Diva", "Eve", "Jinusean", "NRG",
"Sechs Kies", "S.E.S", "1TYM", "Fin.K.L.", "Koyote", "S#arp", "Shinhwa", "As One", "Chakra", "Cleo", "Click-B", "Fly to the Sky", "g.o.d", "T.T.MA"]
ii_groups: ["CB Mass", "Papaya", "5tion", "Jewelry", "KISS.", "M.I.L.K", "jtL", "Epik High", "Sugar", "Black Beat", "Shinvi", "Leessang", "LUV",
"Isak N Jiyeon", "Moon Child", "Moon Child", "Big Mama", "Dynamic Duo", "Brown Eyed Soul", "Buzz", "TVXQ", "SG Wannabe", "V.O.S", "TRAX", "SS501",
"LPG", "The Grace", "Gavy NJ", "Super Junior", "Paran", "SeeYa", "Brown Eyed Girls", "Untouchable", "Big Bang", "Super Junior-K.R.Y.", "DickPunks",
"Wonder Girls", "Kara", "F.T. Island", "Girls' Generation", "8eight", "Sunny Hill", "Supernova", "Tritops", "Super Junior-T", "Baby Vox Re.V",
"Davichi", "Mighty Mouth", "Miss $", "Shinee", "Super Junior-M", "Super Junior-H", "2AM", "2PM", "U-KISS", "2NE1", "4Minute", "After School",
"Beast", "f(x)", "JQT", "MBLAQ", "Rainbow", "Secret", "SHU-I", "T-ara", "December"]
iii_groups: ["APeace", "CNBLUE", "Coed School", "DMTN", "F.Cuz", "Girl's Day", "GD&TOP", "GP Basic", "Infinite", "JYJ", "Led Apple", "Miss A",
"Nine Muses", "Orange Caramel", "Sistar", "Teen Top", "Touch", "The Boss", "ZE:A", "AA", "APink", "B1A4", "Blady", "Block B", "Boyfriend",
"Brave Girls", "C-Real", "Chocolat", "Dal Shabet", "F-ve Dolls", "M&D", "M.I.B", "My Name", "N-Sonic", "N-Train", "RaNia", "Sistar19", "Stellar",
"Super Junior-D&E", "Trouble Maker", "100%", "15&", "24K", "A-Jax", "AOA", "B.A.P", "Big Star", "BtoB", "C-Clown", "Crayon Pop", "Cross Gene",
"D-Unit", "EvoL", "EXID", "EXO", "Fiestar", "Gangkiz", "Girls' Generation-TTS", "GLAM", "HELLOVENUS", "JJ Project", "Lunafly", "Mr. Mr.",
"NU'EST", "Phantom", "Puretty", "She'z", "Skarf", "Spica", "Sunny Days", "Tahiti", "Tasty", "The SeeYa", "Tiny-G", "Two X", "VIXX", "2Yoon",
"5urprise", "AlphaBat", "AOA Black", "BESTie", "Boys Republic", "BTS", "G.I", "History", "Infinite H", "Ladies' Code", "LC9", "M.Pire",
"NOM", "QBS", "Royal Pirates", "Speed", "T-ara N4", "Topp Dogg", "Wa$$up", "2000 Won", "4L", "4Ten", "Akdong Musician", "Almeng",
"Badkiz", "Berry Good", "B.I.G", "Bigflo", "Bob Girls", "BTL", "D.Holic", "GD X Taeyang", "GOT7", "HeartB", "Hi Suhyun", "High4", "HOTSHOT",
"HALO", "Infinite F", "JJCC", "K-Much", "Laboum", "Lip Service", "Lovelyz", "Madtown", "Mamamoo", "Melody Day", "Minx", "Play the Siren",
"Red Velvet", "Sonamoo", "The Legend", "ToHeart", "UNIQ", "Wings", "Winner", "April", "Bambino", "Bastarz", "Big Brain", "CLC", "Cupid",
"Day6", "DIA", "GFriend", "iKon", "Monsta X", "N.Flying", "Oh My Girl", "PLAYBACK", "Romeo", "Rubber Soul", "Seventeen", "Snuper", "Twice",
"UNICORN", "UP10TION", "VAV", "VIXX LR", "AOA Cream", "Astro", "Blackpink", "Bolbbalgan4", "BP Rania", "C.I.V.A", "Cosmic Girls", "EXO-CBX",
"Gugudan", "I.B.I", "I.O.I", "Imfact", "KNK", "MASC", "MOBB", "Momoland", "NCT", "Nine Muses A", "Pentagon", "SF9", "The East Light", "Unnies",
"Victon", "Vromance", "A.C.E", "Be.A", "Dream Catcher", "Duetto", "ELRIS", "Favorite", "Fromis", "Golden Child", "Good Day", "Gugudan Ogu-ogu",
"Hash Tag", "HONEYST", "Highlight", "IN2IT", "IZ", "JBJ", "K.A.R.D", "Longguo & Shihyun", "MVP", "MXM", "MYTEEN", "NU'EST W", "ONF", "P.O.P",
"Pristin", "Rainz", "S.I.S", "Seven O'Clock", "The Boyz", "Top Secret", "TRCNG", "Triple H", "Wanna One", "Weki Meki"]
girl_groups: [2NB", "2NE1", "2Yoon", "4L ", "4Minute", "4Ten", "15&", "After School ", "AOA", "AOA Black", "AOA Cream", "Apink", "April",
"As One", "Baby Vox", "Baby Vox Re.V", "Badkiz", "Bambino", "The Barberettes", "Berry Good", "Bestie", "Big Mama",
"Black Pearl", "Blackpink", "Blady", "Bob Girls", "Bolbbalgan4", "BP Rania", "Brave Girls", "Brown Eyed Girls", "C-REAL ", "Chakra",
"Chocolat", "CLC", "Cleo", "Cosmic Girls", "Crayon Pop", "Cupid ", "D-Unit", "D.Holic", "Dal Shabet", "Davichi", "Dia", "Diva",
"Dreamcatcher", "Elris", "EvoL", "EXID", "F-ve Dolls", "F(x)", "Favorite", "Fiestar", "Fin.K.L", "Fromis", "Gangkiz", "Gavy NJ",
"GFriend", "GI", "Girl Friends", "Girl's Day", "Girls Girls", "Girls' Generation", "Girls' Generation-TTS", "Glam", "Good Day", "GP Basic",
"The Grace", "Gugudan", "Hash Tag", "Hello Venus", "Hi Suhyun", "I.B.I", "I.O.I", "Isak N Jiyeon", "Jewelry", "JQT", "Kara", "Kiss", "Laboum",
"Ladies' Code", "Lip Service", "Loona", "Lovelyz", "LPG", "Luv", "Mamamoo", "Melody Day", "Milk", "Miss A", "Miss S", "Momoland",
"Nine Muses", "Nine Muses A", "Oh My Girl", "Orange Caramel", "P.O.P", "Papaya", "Playback", "Pristin", "Pungdeng-E", "Puretty",
"QBS", "Rainbow", "Red Velvet", "Rubber Soul", "S.E.S.", "S.I.S", "Secret", "SeeYa", "The SeeYa", "She'z", "Shinvi", "Sistar",
"Sistar19", "Skarf", "Sonamoo", "Sorea Band", "Spica", "Stellar", "Sugar", "Sunny Days", "Sunny Hill", "T-ara", "T-ara N4", "T.T.Ma",
"Tahiti", "Draft:THE ARK", "Tiny-G", "Twice", "Two X", "Unicorn", "Wassup", "Weki Meki", "Wink", "Wonder Girls"]
boy_bands: ["1TYM", "2AM", "2PM", "4Men", "5tion", "5urprise", "24K", "100%", "2000 Won", "A-Jax", "A.cian", "Ace", "AlphaBat", "Apeace",
"Astro", "B.A.P", "B.I.G", "B1A4", "Bastarz", "Battle", "Be.A", "Beatwin", "Big Bang", "Big Star", "Bigflo", "Black Beat", "Block B",
"The Blue", "The Boss", "Boyfriend", "Boys Republic", "Boys24", "The Boyz", "Brown Eyed Soul", "Brown Eyes", "BTL", "BtoB", "BTS", "C-Clown",
"Can", "Click-B", "CNBLUE", "Cross Gene", "DMTN", "Day6", "December", "Double S 301", "Double-A", "The East Light", "Every Single Day",
"Exo", "EXO-CBX", "F.Cuz", "Flower", "Fly to the Sky", "GD & TOP", "GD X Taeyang", "G.o.d", "Golden Child", "Got7", "H.O.T.", "Halo",
"HeartB", "High4", "Highlight", "History", "Homme", "Honey G", "HONEYST", "Hotshot ", "IKon", "Imfact", "IN2IT", "Infinite", "Infinite F",
"Infinite H", "IZ ", "J-Walk", "JBJ", "JJ Project", "JJCC", "JnC", "JtL", "JYJ", "KNK", "K'Pop", "LC9", "Ledt", "The Legend", "Lunafly",
"M.Pire", "M4M", "Madtown", "M&D", "MAP6", "MAS", "MASC", "MBLAQ", "MC the Max", "Monday Kiz", "Monsta X", "Mr. Mr", "MVP", "Myname",
"Myteen", "N-Sonic", "N-Train", "N.Flying", "NCT ", "Noel", "NOM", "NRG", "NU'EST", "One Way", "ONF", "Pentagon", "Rainz", "Rok Kiss",
"Romeo", "Sechs Kies", "Seven O'Clock", "Seventeen", "SF9", "SG Wannabe", "Shinee", "Shinhwa", "Shu-I", "Snuper", "Speed", "SS501", "Super Junior", "Super Junior-D&E", "Super Junior-H", "Super Junior-K.R.Y.", "Super Junior-M", "Super Junior-T", "Supernova ", "Sweet Sorrow", "T-max", "Tasty ", "Teen Top", "Toheart ", "Top Secret ", "Topp Dogg", "Touch", "TRCNG", "Tritops ", "TVXQ", "U-KISS", "Ulala Session", "UN ", "Uniq ", "UP10TION", "V.O.S ", "Varsity", "VAV ", "Vibe ", "Victon", "VIXX", "VIXX LR", "Voisper", "Vromance", "Wanna One", "Wanted", "Winner", "Yurisangja", "ZE:A" ]
solo: ["Ailee", "Ajoo", "Alexander Lee Eusebio", "Ali", "Amber Liu", "Bada", "Bae Suzy", "Bae Seul-ki", "Baek Ji-young", "Bang Yong Guk", "Bi",
"Baro", "Bizniz", "BoA", "Byul", "Byun Baek-hyun", "Brian Joo", "Baek A-yeon", "Boom", "Bora", "Bang Cheol Yong", "Chae Jung-an", "Chae Yeon",
"Chen", "Cho Yong-pil", "CNU", "Choi Minho", "Choi Sulli", "Cho Kyuhyun", "Choi Siwon", "Choi Soo-young", "Choi Min-hwan", "Choi Jong-hoon",
"Crush", "Dae Sung", "Dana", "Dara", "Do Kyung-soo", "Dean", "Dok2", "Drunken Tiger", "Eru", "Eugene", "Eunhyuk",
"Eun Ji Won", "E.via", "Eric Nam", "Fat Cat", "G.NA", "Gary", "Gil Seong-joon", "Gummy", "G-Dragon", "Goo Ha-ra", "Gain", "G.O", "Gongchan",
"Han Seungyeon", "Ham Eun-jeong", "Han Sunhwa", "Ha Ji-won", "Haha", "Henry Lau", "Heo Ga Yoon", "Heo Young Saeng", "Heo Young-ji",
"Hong Jin-Young", "Hong Kyung Min", "Hoon", "Hyolyn", "Hyomin", "Hyun Bin", "Huh Gak", "Hwangbo", "Hwang Chansung", "Tiffany Hwang", "Hwanhee",
"Hwayobi", "Hyun Young", "Hyelim", "Im Chang-jung", "Im Yoona", "Insooni", "IU", "Ivy", "J", "JB", "Jr.", "Jang Dong-woo", "Jang Keun-suk",
"Jang Hyun-seung", "Jang Na-ra", "Jang Woo Hyuk", "Jang Wooyoung", "Jang Yun-jeong", "Jeon Boram", "Jeon Hye Bin", "Jia", "Jeon Ji Yoon",
"Jeong Jinwoon", "Jessica Jung", "J-Min", "Jo Eun Byul", "Jo Kwon", "Jo Sungmo", "JOO", "Joy", "John Park", "Jonghyun", "Joo Hyun-Mi",
"Jun Jin", "Jun Hyoseong", "Jun.K", "Jung Daehyun", "Jung Hana", "Jinyoung", "Nicole Jung", "Jung Yong-hwa", "Juniel", "K", "Kai", "Kim Jungah",
"KCM", "Kahi", "Kan Mi-youn", "Kang Min-hyuk", "Kang Seung-yoon", "Kang Sung-hoon", "Kangin", "Kangta", "Key", "Kibum", "Kim Ah-joong",
"Kim Bum", "Kim Bum-soo", "Kim C", "Kim Dong-ryool", "Kim Dong-wan", "Kim Gun-mo", "Kim Heechul", "Kim Himchan", "Kim Hyoyeon", "Kim Hyuna",
"Kim Hyun-joong", "Kim Hyung-jun", "Kim Jaejoong", "Kim Jong-kook", "Kim Joon", "Kim Junsu", "Kim Kyu-jong", "Kim Kyung-ho", "Kim Myung-soo",
"Kim Ryeowook", "Kim Tae-woo", "Kim Tae-yeon", "Kim Seol-hyun", "Kim Soo-hyun", "Kim Sung-kyu", "Kim Taeyeon", "Kim Yeonji", "Kwon So-hyun",
"Kim Young-sook", "Krystal Jung", "Kwon Mina", "Kwon Yuri", "K.Will", "Lay", "Lee Jooyeon", "Lee Chae-rin", "Lee Dong-gun", "Lee Donghae",
"Lee Gi-kwang", "Lee Min-young", "Lee Hi", "Lee Howon", "Lee Hong-gi", "Lee Hyori", "Lee Hyun", "Lee Jae-jin", "Lee Jae-won", "Lee Ji-hoon",
"Lee Jin", "Lee Jong-hyun", "Lee Joon", "Lee Junho", "Lee Jung", "Lee Jung-hyun", "Lee Joon-gi", "Lee Ki-chan", "Lee Min-ho", "Lee Min-woo",
"Lee Seung-hoon", "Lee Seung-chul", "Lee Seung-gi", "Lee Seung-hyun", "Lee Soo-young", "Lee Sora", "Lee Sung-jong", "Lee Sungmin",
"Lee Sung-yeol", "Lee Tae-min", "Leeteuk", "Lena Park", "Lexy", "Lim Jeong-hee", "Luna", "Lyn", "MC Mong", "MC Sniper", "Min Hae Kyung",
"Min Hyorin", "Min Hyuk", "Minzy", "Mina", "Minwoo", "Moon Ga-young", "Moon Hee Jun", "Moon Jong Up", "Nam Ji-hyun", "Nam Woo-hyun", "Nana",
"Narsha", "Nichkhun Horvejkul", "Nicole", "Nicky Lee", "No Minwoo", "NS Yoon-G", "Oh Se-hun", "Onew", "Outsider", "Park Bom", "Park Chan-yeol",
"Park Choa", "Park Gyu-ri", "Park Jung-ah", "Park Jung-min", "Park Ji-yeon", "Park Ji-yoon", "Park Jin-young", "Park Junyoung", "Park Yong-ha",
"Jay Park", "Park Shin-hye", "Park Myeong-su", "Park Soyeon", "Psy", "Qri", "Raina", "Rain", "Rap Monster", "Roh Ji Hoon", "Ryu Si-won",
"Ryu Hwayoung", "Ryu Hyoyoung", "Sandeul", "Se7en", "Seo Joohyun", "Seo Hyo-rim", "Seo In-guk", "Seo In-young", "Seo Ji-young", "Seo Yuna",
"Seomoon Tak", "Seo Taiji", "Seungho", "Shim Changmin", "Shim Eun-jin", "Shin Dongho", "Shin Dong-hee", "Shin Hae-chul", "Shin Hye-jeong",
"Shin Hye-sung", "Shin Ji", "Shin Ji-min", "Shin Seung-hun", "Shoo", "Sim Soo-bong", "So Chan-whee", "Sohee", "Solbi", "Son Dam-bi",
"Son Dong-woon", "Son Hoyoung", "Song Jieun", "Song Ji-hyo", "Song Joong-ki", "Song Min-ho", "Song Seung-hyun", "Suho", "Sung Si-kyung",
"Sung Yu-ri", "Sunny", "T.O.P", "Tablo", "Tae Bin", "Taecyeon", "Tae Jin Ah", "Taegoon", "Taeyang", "Tasha Reid", "Tim", "Tony An", "Thunder",
"Uee", "U;Nee", "Uhm Jung-hwa", "Victoria Song", "Wax", "Wendy", "Wheesung", "Wang Fei Fei", "Woo Sung-hyun", "Xiumin", "Yang Hyun-suk",
"Yang Yo-seob", "Yeon Woo", "Yesung", "Yim Jae-beom", "Yoo Ara", "Yoo Chae-yeong", "Yoo Seung-jun", "Yoo Young-jae", "Yoon Eun-hye",
"Yoon Mi-rae", "Yong Jun-hyung", "Yoochun", "You Hee-yeol", "Younha", "Yubin", "Yoo Seung-ho", "Yunho", "Yoon Doo-joon", "Yeeun", "Yangpa",
"Zelo", "Zhou Mi", "Zia", "Zion.T"]
@@ -0,0 +1,10 @@
en:
faker:
games:
league_of_legends:
champion: ["Aatrox", "Ahri", "Akali", "Alister", "Amumu", "Anivia", "Annie", "Ashe", "Aurelion Sol", "Azir", "Bard", "Blitzcrank", "Brand", "Braum", "Caitlyn", "Camille", "Cassiopeia", "Cho-Gath", "Corki", "Darius", "Diana", "Dr. Mundo", "Draven", "Ekko", "Elise", "Evelynn", "Ezreal", "Fiddlesticks", "Fiora", "Fizz", "Galio", "Gangplank", "Garen", "Gnar", "Gragas", "Graves", "Hecarim", "Heimerdinger", "Illaoi", "Irelia", "Ivern", "Janna", "Jarvan IV", "Jax", "Jayce", "Jhin", "Jinx", "Kalista", "Karma", "Karthus", "Kassadin", "Katarina", "Kayle", "Kennen", "Kha'Zix", "Kindred", "Kled", "Kog'Maw", "LeBlanc", "Lee Sin", "Leona", "Lissandra", "Lucian", "Lulu", "Lux", "Malphite", "Malzahar", "Maokai", "Master Yi", "Miss Fortune", "Mordekaiser", "Morgana", "Nami", "Nasus", "Nautilus", "Nidalee", "Nocturne", "Nunu", "Olaf", "Orianna", "Pantheon", "Poppy", "Quinn", "Rammus", "Rek'Sai", "Renekton", "Rengar", "Riven", "Rakan", "Rumble", "Ryze", "Sejuani", "Shaco", "Shen", "Shyvanna", "Singed", "Sion", "Sivir", "Skarner", "Sona", "Soraka", "Swain", "Syndra", "Tahm Kench", "Taliyah", "Talon", "Taric", "Teemo", "Thresh", "Tristana", "Trundle", "Tryndamere", "Twisted Fate", "Twitch", "Udyr", "Urgot", "Varus", "Vayne", "Veigar", "Vel'Koz", "Vi", "Viktor", "Vladimir", "Volibear", "Warwick", "Wukong", "Xayah", "Xerath", "Xin Zhao", "Yasuo", "Yorick", "Zac", "Zed", "Ziggs", "Zilean", "Zyra"]
location: ["Demacia", "Noxus", "Shadow Isles", "Valoran", "Runeterra", "Bandle City", "Bilgewater", "Freljord", "Ionia", "Mount Targon", "Piltover", "Lokfar", "Zaun"]
quote: ["Purge the unjust.", "By my will, this shall be finished!", "You only have to click once, fool!", "My right arm is a lot stronger than my left.", "Ready to set the world on fire...", "The early bird guts the worm!", "Don't you trust me?", "Welcome to Summoners Rift!", "Have you seen my Bear Tibbers?", "NOM NOM NOM", "Defy Noxus and taste your own blood.", "Behold the might of the shadow isles.", "Who wants a piece of the champ?!", "Come on, live a little... while you can!", "Master yourself, master the enemy.", "Blindness is no impairment against a smelly enemy.", "ok.", "Caught between a rock... and a hard place.", "Mundo will go where he pleases!", "Mundo say his own name a lot, or else he forget! Has happened before.", "A man, a woman and a yordle walk into the sun. They die! Because it burns them alive? heh heh heh heh", "The cycle of life and death continues. We will live, they will die.", "My profession?! You know, now that I think of it, I've always wanted to be a baker.", "Tonight we hunt!", "Monsters can be made to fear.", "How about a drink?", "Captain Teemo on duty.", "Hut, two, three, four. Yes, sir!", "I'll scout ahead!", "That's gotta sting.", "Never underestimate the power of the Scout's code.", "I suppose you're expecting some inBEARable pun?", "It's not how much you can lift. It's how good you look!", "Welcome to the League of Draven.", "Not Draven; Draaaaven.", "Who wants some Draven? Heheheh.", "Subtle? I don't do subtle."]
summoner_spell: ["Teleport", "Exhaust", "Barrier", "Smite", "Flash", "Ignite", "Clarity", "Mark", "To the King!", "Ghost", "Heal", "Poro Toss", "Cleanse"]
masteries: ["Battle Trance", "Double Edged Sword", "Bounty Hunter", "Fresh Blood", "Expose Weakness", "Feast", "Warlord's Bloodlust", "Fervor of Battle", "Deathfire Touch", "Greenfather's Gift", "Dangerous Game", "Bandit", "Courage of the Colossus", "Stoneborn Pact", "Grasp of the Undying", "Siegemaster", "Tough Skin", "Explorer", "Assassin", "Secret Stash", "Runic Affinity", "Windspeaker's Blessing", "Thunderlord's Decree", "Stormraider's Surge", "Fearless", "Unyielding", "Meditation", "Battering Blows", "Piercing Thoughts", "Insight", "Perseverance", "Intelligence", "Precision", "Sorcery", "Vampirism", "Fury", "Natural Talent", "Savagery", "Wanderer", "Merciless", "Recovery", "Legendary Guardian", "Swiftness", "Runic Armor", "Veteran's Scars"]
rank: ["Bronze V", "Bronze IV", "Bronze III", "Bronze II", "Bronze I", "Silver V", "Silver IV", "Silver III", "Silver II", "Silver I", "Gold V", "Gold IV", "Gold III", "Gold II", "Gold I", "Platinum V", "Platinum IV", "Platinum III", "Platinum II", "Platinum I", "Diamond V", "Diamond IV", "Diamond III", "Diamond II", "Diamond I", "Master", "Challenger"]
+43
View File
@@ -0,0 +1,43 @@
en:
faker:
lebowski:
actors: ['Jeff Bridges', 'John Goodman', 'Julianne Moore', 'Steve Buscemi', 'David Huddleston', 'Philip Seymour Hoffman', 'Tara Reid',
'Flea', 'Peter Stormare', 'John Turturro', 'Ben Gazzara']
characters: ['The Dude', 'Walter Sobchak', 'Maude Lebowski', 'Donny', 'The Big Lebowski', 'Brandt', 'Bunny Lebowski', 'Karl Hungus', 'Jesus Quintana',
'Jackie Treehorn']
quotes: [
"He's a good man...and thorough.",
"Hey, I know that guy. He's a nihilist. Karl Hungus.",
"Mr. Treehorn treats objects like women, man.",
"Is this your homework, Larry?",
"Yeah, well, that's just, like, your opinion, man.",
"Mark it zero!",
"So then you have no frame of reference here Donny. You're like a child who wonders into the middle of a movie.",
"You want a toe? I can get you a toe, believe me. There are ways, Dude. You don't wanna know about it, believe me.",
"Hell, I can get you a toe by 3 o'clock this afternoon...with nail polish.",
"Calmer than you are.",
"I'm perfectly calm, Dude.",
"You are entering a world of pain.",
"This aggression will not stand, man.",
"Obviously, you're not a golfer",
"Mind if I do a J?",
"This is not 'Nam. This is bowling. There are rules.",
"Look, let me explain something to you. I'm not Mr. Lebowski. You're Mr. Lebowski. I'm the Dude.",
"I'm the dude, so that's what you call me. That or, uh His Dudeness, or uh Duder, or El Duderino, if you're not into the whole brevity thing.",
"This is a very complicated case Maude. You know, a lotta ins, a lotta outs, lotta what-have-yous.",
"Eight-year-olds, Dude.",
"Careful man, there's a beverage here!",
"The Dude abides.",
"That rug really tied the room together.",
"I mean, say what you want about the tenets of National Socialism, Dude, at least it's an ethos.",
"Forget it, Donny, you're out of your element!",
"I don't like your jerk-off name. I don't like your jerk-off face. And I don't like you...jerk-off.",
"Three thousand years of beautiful tradition, from Moses to Sandy Koufax.",
"I am the walrus",
"V.I. Lenin. Vladimir! Ilyich! Ulyanov!",
"Oh, the usual. I bowl. Drive around. The occasional acid flashback.",
"So what are you saying? When you get divorced you turn in your library card? You get a new license? You stop being Jewish?",
"You know, Dude, I myself dabbled in pacifism once. Not in 'Nam of course.",
"Stay away from my special lady friend, man.",
"I don't roll on Shabbos!"
]
@@ -0,0 +1,6 @@
en:
faker:
lord_of_the_rings:
characters: ["Frodo Baggins", "Gandalf the Grey", "Samwise Gamgee", "Meriadoc Brandybuck", "Peregrin Took", "Aragorn", "Legolas", "Gimli", "Boromir", "Sauron", "Gollum", "Bilbo Baggins", "Tom Bombadil", "Glorfindel", "Elrond", "Arwen Evenstar", "Galadriel", "Saruman the White", "Éomer", "Théoden", "Éowyn", "Grìma Wormtongue", "Shadowfax", "Treebeard", "Quickbeam", "Shelob", "Faramir", "Denethor", "Beregond", "Barliman Butterbur"]
locations: ["Aglarond", "Aldburg", "Andustar", "Angband", "Argonath", "Bag End", "Barad-dûr", "Black Gate", "Bridge of Khazad-dûm", "Carchost", "Cirith Ungol", "Coldfells", "Crack of Doom", "Dark Land", "Dol Guldur", "Dome of Stars", "Doors of Durin", "Doriath", "East Beleriand", "Eastfarthing", "East Road", "Eithel Sirion", "Elostirion", "Enchanted Isles", "Endless Stair", "Eä", "Falls of Rauros", "Fens of Serech", "Field of Celebrant", "Fords of Isen", "The Forsaken Inn", "Gap of Rohan", "Gladden Fields", "Gorgoroth", "Greenway", "Haudh-en-Nirnaeth", "Haven of the Eldar", "Helm's Deep", "Henneth Annûn", "Hobbit-hole", "Houses of Healing", "Hyarnustar", "Ilmen", "Inn of the Prancing Pony", "Isengard", "Isenmouthe", "Isle of Balar", "Land of the Sun", "Losgar", "Luthany", "Lothlorièn", "Maglor's Gap", "Marish", "Meduseld", "Minas Tirith", "Minhiriath", "Máhanaxar", "Narchost", "Nargothrond", "Núath", "Old Ford", "Old Forest", "Old Forest Road", "Orthanc", "Parth Galen", "Paths of the Dead", "Pelennor Fields", "Rath Dínen", "Regions of the Shire", "Rivendell", "The Rivers and Beacon-Hills of Gondor", "Sarn Ford", "Taur-en-Faroth", "Taur-im-Duinath", "Timeless Halls", "Tol Brandir", "Tol Galen", "Tol Morwen", "Tol-in-Gaurhoth", "Tumladen", "Utumno", "Vaiya", "Vista", "The Void", "Warning beacons of Gondor"]
quotes: ["Often does hatred hurt itself!", "Go now, and die in what way seems best to you.", "Memory is not what the heart desires. That is only a mirror....", "Dwarves tongues run on when speaking of their handiwork, they say.", "But alls well as ends well", "Sing, all ye children of the West", "...and all the stars flowered in the sky.", "Clothes are but little loss, if you escape from drowning.", "The wolf that one hears is worse than the orc that one fears. - Boromir", "I don't keep water in my pockets.", "For he gave it up in the end of his own accord: an important point. No,", "I could not 'make' you--except by force, which would break your mind.", "Their faces were as a rule good-natured rather than beautiful.", "The Lord of the Ringwraiths had met his doom.", "Many that live deserve death. And some that die deserve life", "Short cuts make delays, but inns make longer ones.", "But where the warg howls, there also the orc prowls. - Aragorn", "In winter here no heart could mourn for summer or for spring.","his old life lay behind in the mists, dark adventure lay in front.", "I sang of leaves, of leaves of gold, and leaves of gold there grew", "Someone else always has to carry on the story.", "It's the job that's never started as takes longest to finish.", "Moonlight drowns out all but the brightest stars.", "Fear nothing! Have peace until the morning! Heed no nightly noises!", "Ill get there, if I leave everything but my bones behind,", "NO ADMITTANCE EXCEPT ON PARTY BUSINESS.", "Real names tell you the story of the things they belong to", "Deeds will not be less valiant because they are unpraised.", "Even the smallest person can change the course of the future.", "Who knows? Have patience. Go where you must go, and hope!", "Yet dawn is ever the hope of men, said Aragorn.", "You will soon be well, if I do not talk you to death.", "Memory is not what the heart desires. That is only a mirror,", "You have shown your usual cunning in getting up just in time for a meal.", "The great storm is coming, but the tide has turned.", "...as young and as ancient as Spring....", "Why couldnt he stop talking and let them drink his health?", "Not all those who wander are lost", "But in this at least thou shalt not defy my will: to rule my own end.", "I look foul and feel fair.","It's the job that's never started as takes longest to finish.", "Moonlight drowns out all but the brightest stars.", "I didn't think it would end this way.", "Home is behind, the world ahead", "All's well that ends better.", "I want to be a healer, and love all things that grow and are not barren.", "Where there's life there's hope, and need of vittles.", "A hunted man sometimes wearies of distrust and longs for friendship.", "The leaves were long, the grass was green", "Begone, foul dwimmerlaik, lord of carrion! Leave the dead in peace!", "The world is indeed full of peril and in it there are many dark places.", "To the sea, to the sea! The white gulls are crying", "Do not scorn pity that is the gift of a gentle heart, Éowyn!", "I wish the Ring had never come to me. I wish none of this had happened."]
File diff suppressed because one or more lines are too long
+9
View File
@@ -0,0 +1,9 @@
en:
faker:
lovecraft:
fhtagn: ["Ph'nglui mglw'nafh Cthulhu R'lyeh wgah'nagl fhtagn"]
deity: ["Azathoth", "Cthulhu", "Dagon", "Hastur", "Nyarlathotep", "Shub-Niggurath", "Tsathoggua", "Yog-Sothoth"]
location: ["Arkham", "Dunwich", "Innsmouth", "Kadath", "Kingsport", "Leng", "Miskatonic", "Rlyeh", "Yuggoth", "Irem"]
tome: ["Necronomicon", "Pnakotic Manuscripts", "De Vermis Mysteriis", "Book of Eibon", "Eltdown Shards"]
words: ["abnormal", "accursed", "amorphous", "antediluvian", "antiquarian", "blasphemous", "cat", "charnel", "comprehension", "cyclopean", "dank", "decadent", "daemoniac", "effulgence", "eldritch", "fainted", "foetid", "fungus", "furtive", "gambrel", "gibbous", "gibbering", "hideous", "immemorial", "indescribable", "iridescence", "loathsome", "lurk", "madness", "manuscript", "mortal", "nameless", "noisome", "non-euclidean", "shunned", "singular", "spectral", "squamous", "stench", "stygian", "swarthy", "tenebrous", "tentacles", "ululate", "unmentionable", "unnamable", "unutterable"]
+5
View File
@@ -0,0 +1,5 @@
en:
faker:
markdown:
headers: ["#", "##", "###", "####", "#####", "######"]
emphasis: ["_", "~", "*", "**"]
+4
View File
@@ -0,0 +1,4 @@
en:
faker:
marketing:
buzzwords: ["etc. etc.", "put a pin in it", "t-shirt sizes", "heavy lifting", "circle back", "two-way street", "data points", "out of the box", "get value out of the conversation", "penetrate the market", "plug and chug", "deep dive", "SWAG", "bucketize it", "sales funnel", "market share", "impact map", "growth unit", "tee it up", "make it actionable", "put a bow on it", "give you some time back", "bandwidth-constrained", "had to 'punt' on that", "home stretch", "get a pulse on", "value add", "expansion play", "rubber meets the road", "sprint to the finish line", "button up the loose ends", "heads down", "learnings", "ideate", "customer journey", "buying cycle", "synergy", "snackable content", "thought leader", "thought leadership", "immersive experience", "value proposition", "gamification", "agile marketing", "infographic", "granular", "streamline", "swim lane", "best practice", "bleeding edge", "out of pocket", "let's take this offline", "branding"]
+28
View File
@@ -0,0 +1,28 @@
en:
faker:
matz:
quotes: [
"I believe consistency and orthogonality are tools of design, not the primary goal in design.",
"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.",
"The orthogonal features, when combined, can explode into complexity.",
"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.",
"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.",
"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.",
"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.",
"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.",
"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.",
"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.",
"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.",
"Smart people underestimate the ordinarity of ordinary people.",
"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.",
"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.",
"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.",
"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.",
"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.",
"It is not the responsibility of the language to force good looking code, but the language should make good looking code possible.",
"Plant a memory, plant a tree, do it today for tomorrow.",
"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.",
"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.",
"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.",
"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."
]
+11
View File
@@ -0,0 +1,11 @@
en:
faker:
measurement:
height: ["inch", "foot"]
length: ["yard", "foot", "mile"]
volume: ["cup", "tablespoon", "teaspoon", "quart", "pint", "gallon", "fluid ounce"]
weight: ["pound", "ounce", "ton"]
metric_height: ["centimeter", "meter"]
metric_length: ["millimeter", "centimeter", "decimeter", "meter", "dekameter", "hectometer", "kilometer"]
metric_volume: ["milliliter", "liter"]
metric_weight: ["milligram", "centigram", "decigram", "gram", "dekagram", "hectogram", "kilogram", "metric ton"]
File diff suppressed because one or more lines are too long

Some files were not shown because too many files have changed in this diff Show More