{"id":19228909,"url":"https://github.com/heppu/seed-finder","last_synced_at":"2026-06-17T20:04:09.361Z","repository":{"id":84342019,"uuid":"63199991","full_name":"heppu/seed-finder","owner":"heppu","description":"Go tool that finds seed numbers for words","archived":false,"fork":false,"pushed_at":"2016-07-13T00:06:21.000Z","size":759,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-04T22:44:59.679Z","etag":null,"topics":["go","random"],"latest_commit_sha":null,"homepage":null,"language":"Go","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/heppu.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,"publiccode":null,"codemeta":null}},"created_at":"2016-07-12T23:51:36.000Z","updated_at":"2016-07-13T00:00:48.000Z","dependencies_parsed_at":null,"dependency_job_id":"ede0981c-92d2-441b-94cd-5c7103917db6","html_url":"https://github.com/heppu/seed-finder","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/heppu%2Fseed-finder","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/heppu%2Fseed-finder/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/heppu%2Fseed-finder/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/heppu%2Fseed-finder/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/heppu","download_url":"https://codeload.github.com/heppu/seed-finder/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240304572,"owners_count":19780312,"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","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":["go","random"],"created_at":"2024-11-09T15:30:57.639Z","updated_at":"2026-06-17T20:04:04.340Z","avatar_url":"https://github.com/heppu.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Seed finder\n\nGo tool that finds math/rand seed number for given word. Right now it's limited to [a-z] but can be easily modified for wider ascii range.\n\n## Usage\n\n```sh\ngo get github.com/heppu/seed-finder\ngo install seed-finder\nseed-finder -w hello\n```\n\n## Example\n\n```go\npackage main\n\nimport (\n    \"fmt\"\n    \"math/rand\"\n)\n\nfunc main() {\n    fmt.Println(getRandStr(-4611686018426513711, 5))\n    fmt.Println(getRandStr(13143826, 5))\n}\n\nfunc getRandStr(seed int64, len int) (s string) {\n    rand.Seed(seed)\n    for i := 0; i \u003c len; i++ {\n        s += string(rand.Intn(26) + 97)\n    }\n    return\n}\n\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fheppu%2Fseed-finder","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fheppu%2Fseed-finder","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fheppu%2Fseed-finder/lists"}