{"id":34701393,"url":"https://github.com/oganm/randomids","last_synced_at":"2026-05-25T01:31:48.490Z","repository":{"id":80646810,"uuid":"155274236","full_name":"oganm/randomIDs","owner":"oganm","description":"Create random names by combining words from groups","archived":false,"fork":false,"pushed_at":"2024-03-12T17:24:36.000Z","size":38,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-03-12T18:40:42.661Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"R","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/oganm.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2018-10-29T20:08:51.000Z","updated_at":"2024-03-12T17:24:40.000Z","dependencies_parsed_at":"2023-03-12T11:41:52.398Z","dependency_job_id":null,"html_url":"https://github.com/oganm/randomIDs","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/oganm/randomIDs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oganm%2FrandomIDs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oganm%2FrandomIDs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oganm%2FrandomIDs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oganm%2FrandomIDs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/oganm","download_url":"https://codeload.github.com/oganm/randomIDs/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oganm%2FrandomIDs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33456833,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-24T19:21:36.376Z","status":"ssl_error","status_checked_at":"2026-05-24T19:21:10.562Z","response_time":57,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":"2025-12-24T22:52:32.914Z","updated_at":"2026-05-25T01:31:48.478Z","avatar_url":"https://github.com/oganm.png","language":"R","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n## randomNames\n\nThis is a pakcage for generating random names possibly to replace\nnameless identifiers returned from clustering algorithms\n\n### Installation\n\n``` r\ndevtools::install_github('oganm/randomIDs')\n```\n\n### Use\n\nPick an available name list or or make up your own. To see available\nname lists do `?namelists` or\n\n``` r\nnamelists\n```\n\n    ## [1] \"docker\"                \"helldivers_destroyers\" \"occidental_companies\" \n    ## [4] \"xcom2_names\"           \"xcom2_words\"\n\nTo generate names simply do\n\n``` r\nrandom_names(10,namelist = 'docker')\n```\n\n    ##  [1] \"vigorous_kalam\"      \"recursing_gauss\"     \"inspiring_galois\"   \n    ##  [4] \"naughty_brahmagupta\" \"ecstatic_mendel\"     \"thirsty_gauss\"      \n    ##  [7] \"romantic_saha\"       \"admiring_montalcini\" \"flamboyant_brown\"   \n    ## [10] \"affectionate_fermi\"\n\nIf you want edgier names try\n\n``` r\nrandom_names(10,namelist = 'xcom2_names')\n```\n\n    ##  [1] \"Massive_Sword\"      \"Glass_Apollo\"       \"Poisoned_Dawn\"     \n    ##  [4] \"Half-dead_Laughter\" \"Heavy_Doom\"         \"Glass_Engine\"      \n    ##  [7] \"Brutal_Heart\"       \"Vengeful_Gasp\"      \"Lost_Ring\"         \n    ## [10] \"Bleeding_Stranger\"\n\nYou can also make your own name lists. Names of the list elements aren’t\nimportant. Random words will be selected from each element in order.\nGenerated names are guaranteed to be unique. If the name list doesnt\nallow enough permutations, an integer will be added to the end of the\nname to ensure unique names\n\n``` r\nmynames = list(first = c('shiny','red','tasty'),\n               second = c('apple','gummy-bear','strawberry'),\n               finally = c('yum','mmm'))\n\nrandom_names(20,namelist = mynames)\n```\n\n    ##  [1] \"red_gummy-bear_mmm\"    \"shiny_gummy-bear_yum\"  \"shiny_strawberry_yum\" \n    ##  [4] \"tasty_strawberry_mmm\"  \"shiny_apple_mmm\"       \"tasty_gummy-bear_yum\" \n    ##  [7] \"tasty_apple_yum\"       \"red_strawberry_yum\"    \"red_strawberry_mmm\"   \n    ## [10] \"shiny_apple_yum\"       \"shiny_strawberry_mmm\"  \"shiny_gummy-bear_mmm\" \n    ## [13] \"tasty_gummy-bear_mmm\"  \"red_apple_mmm\"         \"tasty_apple_mmm\"      \n    ## [16] \"red_gummy-bear_yum\"    \"red_apple_yum\"         \"tasty_strawberry_yum\" \n    ## [19] \"tasty_apple_yum1\"      \"tasty_gummy-bear_yum1\"\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foganm%2Frandomids","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Foganm%2Frandomids","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foganm%2Frandomids/lists"}