Giter Site home page Giter Site logo

randomator's Introduction

Randomator

C# library for generating randomness

I created this library as for one of my projects, I needed to have random "user" data. I plan to add more randomness to this overtime.

Markov capabilities (sentence generator) have been taken from https://github.com/chriscore/MarkovSharp under MIT license. Thanks to Chris Core for this work. All the code for Markov is in the Markov folder.

Current Random information

Identities

  • Firstname
  • Lastname
  • Home Address consisting of a location
  • Work Address location in the same city as home address
  • Home Phone Random phone number based on the location of home address
  • Work Phone Random phone number based on the location of work address

Locations

  • Street Number no verification that these street numbers exist yet
  • Street Name street names exist in the respective city, country
  • City
  • Country

Phone Numbers

  • Mobile Number Mobile phone number that should be in the right format
  • Phone Number Land line phone number that should be in the right format

Misc

  • Random String Random string

How to use

Random Identity

RandomPerson RandomPerson = new RandomPerson();

Random Location

Anywhere

RandomLocation RandomLocation = new RandomLocation();

In specified country

RandomLocation RandomLocation = new RandomLocation("Australia");

In specified country, city

RandomLocation RandomLocation = new RandomLocation("Australia", "Sydney");

Random Phone

Landline, anywhere.

RandomPhone RandomPhone = new RandomPhone(RandomPhoneType.Land);

Mobile, anywhere.

RandomPhone RandomPhone = new RandomPhone(RandomPhoneType.Mobile);

Landline, in a country.

RandomPhone RandomPhone = new RandomPhone(RandomPhoneType.Land, "Australia");

Mobile, in a country.

RandomPhone RandomPhone = new RandomPhone(RandomPhoneType.Mobile, "Australia");

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.