├── .gitignore ├── .travis.yml ├── LICENCE.md ├── README.md ├── bin ├── check └── sort └── data ├── cs-CZ ├── capital.txt ├── city.txt ├── country.txt ├── job.txt ├── namefemale.txt ├── namemale.txt ├── postcode.txt ├── surname.txt ├── surnamefemale.txt └── surnamemale.txt ├── da-DK ├── city.txt ├── namefemale.txt ├── namemale.txt ├── postcode.txt ├── region.txt └── surname.txt ├── de-DE ├── city.txt ├── country.txt ├── job.txt ├── lorem.txt ├── namefemale.txt ├── namemale.txt ├── postcode.txt ├── state.txt ├── streetname.txt └── surname.txt ├── en-GB ├── city.txt ├── color.txt ├── country.txt ├── county.txt ├── hobby.txt ├── job.txt ├── lorem.txt ├── namefemale.txt ├── namemale.txt ├── postcode.txt ├── streetsuffix.txt ├── surname.txt ├── titlefemale.txt └── titlemale.txt ├── en-US ├── namefemale.txt ├── namemale.txt ├── states.txt └── surname.txt ├── es-ES ├── cities.txt ├── country.txt ├── job.txt ├── lorem.txt ├── namefemale.txt ├── namemale.txt └── surname.txt ├── fr-FR ├── city.txt ├── country.txt ├── lorem.txt ├── namefemale.txt ├── namemale.txt ├── state.txt ├── surname.txt ├── titlefemale.txt └── titlemale.txt ├── hi-IN ├── city.txt ├── country.txt ├── namefemale.txt └── namemale.txt ├── it-IT ├── city.txt ├── color.txt ├── country.txt ├── hobby.txt ├── namefemale.txt ├── namemale.txt ├── postcode.txt ├── state.txt └── surname.txt ├── pl-PL ├── cities.txt ├── colors.txt ├── femalenames.txt ├── jobs.txt └── malenames.txt └── sk-SK ├── job.txt ├── namefemale.txt ├── namemale.txt └── surname.txt /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/LICENCE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/README.md -------------------------------------------------------------------------------- /bin/check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/bin/check -------------------------------------------------------------------------------- /bin/sort: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/bin/sort -------------------------------------------------------------------------------- /data/cs-CZ/capital.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/cs-CZ/capital.txt -------------------------------------------------------------------------------- /data/cs-CZ/city.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/cs-CZ/city.txt -------------------------------------------------------------------------------- /data/cs-CZ/country.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/cs-CZ/country.txt -------------------------------------------------------------------------------- /data/cs-CZ/job.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/cs-CZ/job.txt -------------------------------------------------------------------------------- /data/cs-CZ/namefemale.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/cs-CZ/namefemale.txt -------------------------------------------------------------------------------- /data/cs-CZ/namemale.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/cs-CZ/namemale.txt -------------------------------------------------------------------------------- /data/cs-CZ/postcode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/cs-CZ/postcode.txt -------------------------------------------------------------------------------- /data/cs-CZ/surname.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/cs-CZ/surname.txt -------------------------------------------------------------------------------- /data/cs-CZ/surnamefemale.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/cs-CZ/surnamefemale.txt -------------------------------------------------------------------------------- /data/cs-CZ/surnamemale.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/cs-CZ/surnamemale.txt -------------------------------------------------------------------------------- /data/da-DK/city.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/da-DK/city.txt -------------------------------------------------------------------------------- /data/da-DK/namefemale.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/da-DK/namefemale.txt -------------------------------------------------------------------------------- /data/da-DK/namemale.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/da-DK/namemale.txt -------------------------------------------------------------------------------- /data/da-DK/postcode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/da-DK/postcode.txt -------------------------------------------------------------------------------- /data/da-DK/region.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/da-DK/region.txt -------------------------------------------------------------------------------- /data/da-DK/surname.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/da-DK/surname.txt -------------------------------------------------------------------------------- /data/de-DE/city.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/de-DE/city.txt -------------------------------------------------------------------------------- /data/de-DE/country.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/de-DE/country.txt -------------------------------------------------------------------------------- /data/de-DE/job.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/de-DE/job.txt -------------------------------------------------------------------------------- /data/de-DE/lorem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/de-DE/lorem.txt -------------------------------------------------------------------------------- /data/de-DE/namefemale.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/de-DE/namefemale.txt -------------------------------------------------------------------------------- /data/de-DE/namemale.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/de-DE/namemale.txt -------------------------------------------------------------------------------- /data/de-DE/postcode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/de-DE/postcode.txt -------------------------------------------------------------------------------- /data/de-DE/state.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/de-DE/state.txt -------------------------------------------------------------------------------- /data/de-DE/streetname.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/de-DE/streetname.txt -------------------------------------------------------------------------------- /data/de-DE/surname.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/de-DE/surname.txt -------------------------------------------------------------------------------- /data/en-GB/city.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/en-GB/city.txt -------------------------------------------------------------------------------- /data/en-GB/color.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/en-GB/color.txt -------------------------------------------------------------------------------- /data/en-GB/country.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/en-GB/country.txt -------------------------------------------------------------------------------- /data/en-GB/county.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/en-GB/county.txt -------------------------------------------------------------------------------- /data/en-GB/hobby.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/en-GB/hobby.txt -------------------------------------------------------------------------------- /data/en-GB/job.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/en-GB/job.txt -------------------------------------------------------------------------------- /data/en-GB/lorem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/en-GB/lorem.txt -------------------------------------------------------------------------------- /data/en-GB/namefemale.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/en-GB/namefemale.txt -------------------------------------------------------------------------------- /data/en-GB/namemale.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/en-GB/namemale.txt -------------------------------------------------------------------------------- /data/en-GB/postcode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/en-GB/postcode.txt -------------------------------------------------------------------------------- /data/en-GB/streetsuffix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/en-GB/streetsuffix.txt -------------------------------------------------------------------------------- /data/en-GB/surname.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/en-GB/surname.txt -------------------------------------------------------------------------------- /data/en-GB/titlefemale.txt: -------------------------------------------------------------------------------- 1 | Mrs 2 | Ms 3 | Miss -------------------------------------------------------------------------------- /data/en-GB/titlemale.txt: -------------------------------------------------------------------------------- 1 | Mr -------------------------------------------------------------------------------- /data/en-US/namefemale.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/en-US/namefemale.txt -------------------------------------------------------------------------------- /data/en-US/namemale.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/en-US/namemale.txt -------------------------------------------------------------------------------- /data/en-US/states.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/en-US/states.txt -------------------------------------------------------------------------------- /data/en-US/surname.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/en-US/surname.txt -------------------------------------------------------------------------------- /data/es-ES/cities.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/es-ES/cities.txt -------------------------------------------------------------------------------- /data/es-ES/country.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/es-ES/country.txt -------------------------------------------------------------------------------- /data/es-ES/job.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/es-ES/job.txt -------------------------------------------------------------------------------- /data/es-ES/lorem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/es-ES/lorem.txt -------------------------------------------------------------------------------- /data/es-ES/namefemale.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/es-ES/namefemale.txt -------------------------------------------------------------------------------- /data/es-ES/namemale.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/es-ES/namemale.txt -------------------------------------------------------------------------------- /data/es-ES/surname.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/es-ES/surname.txt -------------------------------------------------------------------------------- /data/fr-FR/city.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/fr-FR/city.txt -------------------------------------------------------------------------------- /data/fr-FR/country.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/fr-FR/country.txt -------------------------------------------------------------------------------- /data/fr-FR/lorem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/fr-FR/lorem.txt -------------------------------------------------------------------------------- /data/fr-FR/namefemale.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/fr-FR/namefemale.txt -------------------------------------------------------------------------------- /data/fr-FR/namemale.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/fr-FR/namemale.txt -------------------------------------------------------------------------------- /data/fr-FR/state.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/fr-FR/state.txt -------------------------------------------------------------------------------- /data/fr-FR/surname.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/fr-FR/surname.txt -------------------------------------------------------------------------------- /data/fr-FR/titlefemale.txt: -------------------------------------------------------------------------------- 1 | Mme 2 | Mlle -------------------------------------------------------------------------------- /data/fr-FR/titlemale.txt: -------------------------------------------------------------------------------- 1 | M -------------------------------------------------------------------------------- /data/hi-IN/city.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/hi-IN/city.txt -------------------------------------------------------------------------------- /data/hi-IN/country.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/hi-IN/country.txt -------------------------------------------------------------------------------- /data/hi-IN/namefemale.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/hi-IN/namefemale.txt -------------------------------------------------------------------------------- /data/hi-IN/namemale.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/hi-IN/namemale.txt -------------------------------------------------------------------------------- /data/it-IT/city.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/it-IT/city.txt -------------------------------------------------------------------------------- /data/it-IT/color.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/it-IT/color.txt -------------------------------------------------------------------------------- /data/it-IT/country.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/it-IT/country.txt -------------------------------------------------------------------------------- /data/it-IT/hobby.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/it-IT/hobby.txt -------------------------------------------------------------------------------- /data/it-IT/namefemale.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/it-IT/namefemale.txt -------------------------------------------------------------------------------- /data/it-IT/namemale.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/it-IT/namemale.txt -------------------------------------------------------------------------------- /data/it-IT/postcode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/it-IT/postcode.txt -------------------------------------------------------------------------------- /data/it-IT/state.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/it-IT/state.txt -------------------------------------------------------------------------------- /data/it-IT/surname.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/it-IT/surname.txt -------------------------------------------------------------------------------- /data/pl-PL/cities.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/pl-PL/cities.txt -------------------------------------------------------------------------------- /data/pl-PL/colors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/pl-PL/colors.txt -------------------------------------------------------------------------------- /data/pl-PL/femalenames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/pl-PL/femalenames.txt -------------------------------------------------------------------------------- /data/pl-PL/jobs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/pl-PL/jobs.txt -------------------------------------------------------------------------------- /data/pl-PL/malenames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/pl-PL/malenames.txt -------------------------------------------------------------------------------- /data/sk-SK/job.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/sk-SK/job.txt -------------------------------------------------------------------------------- /data/sk-SK/namefemale.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/sk-SK/namefemale.txt -------------------------------------------------------------------------------- /data/sk-SK/namemale.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/sk-SK/namemale.txt -------------------------------------------------------------------------------- /data/sk-SK/surname.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niklongstone/open-data-sample/HEAD/data/sk-SK/surname.txt --------------------------------------------------------------------------------