All Projects → StefH → Randomdatagenerator

StefH / Randomdatagenerator

Licence: mit
This is a configurable generator to create random data like Lorum Ipsum Text, Words, Text Patterns, First/Last Names, MAC-Addresses, IP-Addresses, Guids and DateTime.

Projects that are alternatives of or similar to Randomdatagenerator

GPT2-Telegram-Chatbot
GPT-2 Telegram Chat bot
Stars: ✭ 67 (+48.89%)
Mutual labels:  text, generation
FigmaConvertXib
FigmaConvertXib is a tool for exporting design elements from figma.com and generating files to a projects iOS .xib / Android .xml
Stars: ✭ 111 (+146.67%)
Mutual labels:  generator, text
tools-generation-detection-synthetic-content
Compilation of the state of the art of tools, articles, forums and links of interest to generate and detect any type of synthetic content using deep learning.
Stars: ✭ 107 (+137.78%)
Mutual labels:  text, generation
Baba Core
Mini-language for creating random text generators.
Stars: ✭ 127 (+182.22%)
Mutual labels:  random, generator
Swift Video Generator
Stars: ✭ 517 (+1048.89%)
Mutual labels:  generator, generation
Gofakeit
Random fake data generator written in go
Stars: ✭ 2,193 (+4773.33%)
Mutual labels:  random, generator
prestashop-shop-creator
Generate random demo data to test your PrestaShop shop.
Stars: ✭ 22 (-51.11%)
Mutual labels:  generator, random
Mockery
A mock code autogenerator for Golang
Stars: ✭ 3,138 (+6873.33%)
Mutual labels:  generator, generation
Dharma
Generation-based, context-free grammar fuzzer.
Stars: ✭ 416 (+824.44%)
Mutual labels:  random, generation
Roguesharp
A .NET Standard class library providing map generation, path-finding, and field-of-view utilities frequently used in roguelikes or 2D tile based games. Inspired by libtcod
Stars: ✭ 316 (+602.22%)
Mutual labels:  random, generator
Rando Php
RandoPhp is a open source library that implements random generators (Integer, Char, Byte, Sequences, Boolean) and take random sample from arrays
Stars: ✭ 107 (+137.78%)
Mutual labels:  random, generator
Randomix
🎲 An open source app to choose randomly between numbers, answers, options and so on.
Stars: ✭ 24 (-46.67%)
Mutual labels:  random, generator
Keygen Php
A fluent PHP random key generator.
Stars: ✭ 93 (+106.67%)
Mutual labels:  random, generator
Jnanoid
A unique string ID generator for Java.
Stars: ✭ 147 (+226.67%)
Mutual labels:  random, generator
Spicy Proton
Generate a random English adjective-noun word pair in Ruby
Stars: ✭ 76 (+68.89%)
Mutual labels:  random, generator
probabilistic nlg
Tensorflow Implementation of Stochastic Wasserstein Autoencoder for Probabilistic Sentence Generation (NAACL 2019).
Stars: ✭ 28 (-37.78%)
Mutual labels:  text, generation
Swiftcolorgen
A tool that generate code for Swift projects, designed to improve the maintainability of UIColors
Stars: ✭ 152 (+237.78%)
Mutual labels:  generator, generation
Kaiten
A Undetectable Payload Generation
Stars: ✭ 169 (+275.56%)
Mutual labels:  generator, generation
modelina
Library for generating data models based on inputs such as AsyncAPI, OpenAPI, or JSON Schema documents.
Stars: ✭ 55 (+22.22%)
Mutual labels:  generator, generation
Laravel Bootstrap Table List
Bootstrap table list generator for Laravel.
Stars: ✭ 16 (-64.44%)
Mutual labels:  generator, generation

RandomDataGenerator.Net

This is a simple generator to create random data.

NuGet

NuGet Badge

Supported Random Data

  • Text Regex Patterns
  • Lorum Ipsum Text
  • Words
  • First/Last Names
  • Cities
  • Countries
  • IP-Addresses (V4 and V6)
  • IBANs
  • MAC Addresses
  • Email Addresses
  • Guids
  • DateTime
  • Numbers (integer, long, float, double, byte, ...)
  • Bytes
  • NaughtyStrings

Usage

// Generate a random text with a Regular expression
var randomizerTextRegex = RandomizerFactory.GetRandomizer(new FieldOptionsTextRegex { Pattern = @"^[0-9]{4}[A-Z]{2}" });
string textRegex = randomizerTextRegex.Generate();

// Generate a random first name
var randomizerFirstName = RandomizerFactory.GetRandomizer(new FieldOptionsFirstName());
string firstName = randomizerFirstName.Generate();

// Generate a random text (no numbers or special characters allowed)
var randomizerText = RandomizerFactory.GetRandomizer(new FieldOptionsText { UseNumber = false, UseSpecial = false });
string text = randomizerText.Generate();

Usage (as SQL Data Generator GUI)

You can also use a UI to generate SQL insert table statements. Random Data Generator - 1

Random Data Generator - 2

Copyright

Referenced files

NuGet dependencies

  • Fare
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].