{"id":17572411,"url":"https://github.com/n0str/rgen","last_synced_at":"2026-02-16T20:02:02.987Z","repository":{"id":48403185,"uuid":"323364951","full_name":"n0str/rgen","owner":"n0str","description":"Easy to use helpers for random data generation","archived":false,"fork":false,"pushed_at":"2023-07-29T13:10:53.000Z","size":464,"stargazers_count":0,"open_issues_count":1,"forks_count":3,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-11T13:35:22.435Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/n0str.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-12-21T14:49:20.000Z","updated_at":"2023-07-29T12:56:48.000Z","dependencies_parsed_at":"2024-10-21T23:13:51.452Z","dependency_job_id":null,"html_url":"https://github.com/n0str/rgen","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/n0str/rgen","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/n0str%2Frgen","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/n0str%2Frgen/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/n0str%2Frgen/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/n0str%2Frgen/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/n0str","download_url":"https://codeload.github.com/n0str/rgen/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/n0str%2Frgen/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279007345,"owners_count":26084282,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-11T02:00:06.511Z","response_time":55,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-21T19:04:35.386Z","updated_at":"2025-10-11T13:35:22.641Z","avatar_url":"https://github.com/n0str.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"rgen\n==========\n\nEasy to use helpers for random data generation\n\n[![push](https://github.com/n0str/rgen/workflows/push/badge.svg?branch=master\u0026event=push)](https://github.com/n0str/rgen/actions)\n[![Go Report Card](https://goreportcard.com/badge/github.com/n0str/rgen?)](https://goreportcard.com/report/github.com/n0str/rgen)\n\nUsage\n-----\n\nRun binary file with the following arguments\n\n```\nUsage: ./rgen: \u003ccommand\u003e \u003carguments\u003e\nCommands: id58, id58l, id58u, id92\nArguments:\n  -n int\n        how many symbols to generate (default 10)\nCommand: word\nArguments:\n  -n int\n    \thow many words to generate (default 4)\n```\n\nOutput\n-----\n\nSample output of `for i in {1..5}; do ./rgen id58 -n 16; done`\n```\nqGGXyV3JfbAsFFDy\ngFDvKc2uNbeCnuMj\n8vBJxASnbdPXFFeX\n8ssaJNpYkqUep9tB\nMoCQpSPTwouywycE\n```\n\nSample output of `for i in {1..5}; do ./rgen id58l -n 4; done`\n```\npa4u\nsc99\nua2d\neohp\no3wr\n```\n\nSample output of `for i in {1..3}; do ./rgen id58u -n 31; done`\n```\n2R5TG33TABP9KDLAQ4AY7DZ3EZ4SE85\n6NCQNEMNPBMEGW8CBVDKHEQC13V6SJT\nJRVM1XC7QTGKSFHH3EALRSYPQQF8MD9\n```\n\nSample output of `for i in {1..3}; do ./rgen id92 -n 9; done`\n```\nKe!.rBp2y\nR\\3s:ynf[\nga8Ue7[w\n```\n\nSample output of `for i in {1..3}; do ./rgen word -n 5; done`\n```\nthiller-matinal-kecked-spaned-slept\ntorched-hamba-gaijin-delve-fact\nkutch-cubebs-mineral-acting-ridgy\n```\n\nInstallation\n-----\n\n```\ngo get github.com/n0str/rgen\n```\n\nYou can also download release files from [GitHub](https://github.com/n0str/rgen/releases/tag/v1.1)\n\nBuild\n-----\n\nClone the repository, compile binary for linux, macos or windows and run.\n\n```\ngit clone https://github.com/n0str/rgen\ncd rgen\nGOOS=linux go build -o rgen-linux .\n```\n\nOr you can compile binary for linux, macos or windows with docker.\n\n```\ngit clone https://github.com/n0str/rgen\ncd rgen\ndocker-compose run --rm rgen make build-linux\n```\nAnd binary file will be in directory \"build\".\n\n```\ncd build\n```\n\nNow you can run the binary file `rgen-linux`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fn0str%2Frgen","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fn0str%2Frgen","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fn0str%2Frgen/lists"}