{"id":24367106,"url":"https://github.com/webermarci/base62","last_synced_at":"2026-02-18T07:32:01.683Z","repository":{"id":61172844,"uuid":"548923904","full_name":"webermarci/base62","owner":"webermarci","description":"uint64 -\u003e base62 string","archived":false,"fork":false,"pushed_at":"2026-02-12T16:06:26.000Z","size":17,"stargazers_count":0,"open_issues_count":4,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-02-13T00:27:43.533Z","etag":null,"topics":["base62","go","golang"],"latest_commit_sha":null,"homepage":"","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/webermarci.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-10-10T11:56:35.000Z","updated_at":"2026-02-11T10:07:39.000Z","dependencies_parsed_at":"2025-05-07T23:26:09.975Z","dependency_job_id":"4f873e29-93cc-489e-b956-f2ab7c0dab30","html_url":"https://github.com/webermarci/base62","commit_stats":{"total_commits":11,"total_committers":2,"mean_commits":5.5,"dds":0.2727272727272727,"last_synced_commit":"6a71941ce113315fee675a8aab0d70afe19b81dc"},"previous_names":[],"tags_count":25,"template":false,"template_full_name":null,"purl":"pkg:github/webermarci/base62","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webermarci%2Fbase62","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webermarci%2Fbase62/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webermarci%2Fbase62/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webermarci%2Fbase62/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/webermarci","download_url":"https://codeload.github.com/webermarci/base62/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webermarci%2Fbase62/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29572407,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-18T06:19:27.422Z","status":"ssl_error","status_checked_at":"2026-02-18T06:18:44.348Z","response_time":162,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["base62","go","golang"],"created_at":"2025-01-19T01:13:50.388Z","updated_at":"2026-02-18T07:32:01.660Z","avatar_url":"https://github.com/webermarci.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Base 62 Encoder\n\n## Usage\n```go\nimport \"github.com/webermarci/base62\"\n\nvar number uint64 = 1665401943785138000\nencoded := base62.Encode(number)\n// 1z1Yd99Ld0i\n\ndecoded, err := base62.Decode(encoded)\n// 1665401943785138000\n```\n\n## Performance\nIt's a bit faster than the standard `math/big.Int` implementation.\n\n```\ngoos: darwin\ngoarch: arm64\npkg: github.com/webermarci/base62\nBenchmarkEncode/10^0_base62-8         \t56710610\t        20.99 ns/op\t      64 B/op\t       1 allocs/op\nBenchmarkEncode/10^0_bigint-8         \t15800838\t        75.11 ns/op\t      56 B/op\t       4 allocs/op\nBenchmarkEncode/10^5_base62-8         \t32987422\t        35.64 ns/op\t      67 B/op\t       2 allocs/op\nBenchmarkEncode/10^5_bigint-8         \t15108235\t        78.66 ns/op\t      56 B/op\t       4 allocs/op\nBenchmarkEncode/10^10_base62-8        \t27390901\t        42.71 ns/op\t      72 B/op\t       2 allocs/op\nBenchmarkEncode/10^10_bigint-8        \t13797662\t        86.18 ns/op\t      56 B/op\t       4 allocs/op\nBenchmarkEncode/10^15_base62-8        \t23152762\t        51.31 ns/op\t      80 B/op\t       2 allocs/op\nBenchmarkEncode/10^15_bigint-8        \t13191324\t        91.99 ns/op\t      64 B/op\t       4 allocs/op\nBenchmarkDecode/10^0_base62-8         \t292363821\t         4.11 ns/op\t       0 B/op\t       0 allocs/op\nBenchmarkDecode/10^0_bigint-8         \t20652962\t        56.90 ns/op\t      40 B/op\t       2 allocs/op\nBenchmarkDecode/10^5_base62-8         \t89711798\t        12.86 ns/op\t       0 B/op\t       0 allocs/op\nBenchmarkDecode/10^5_bigint-8         \t17419663\t        68.31 ns/op\t      40 B/op\t       2 allocs/op\nBenchmarkDecode/10^10_base62-8        \t49069218\t        24.45 ns/op\t       0 B/op\t       0 allocs/op\nBenchmarkDecode/10^10_bigint-8        \t14067397\t        83.87 ns/op\t      40 B/op\t       2 allocs/op\nBenchmarkDecode/10^15_base62-8        \t35270646\t        33.58 ns/op\t       0 B/op\t       0 allocs/op\nBenchmarkDecode/10^15_bigint-8        \t12042242\t        99.09 ns/op\t      40 B/op\t       2 allocs/op\nPASS\nok  \tgithub.com/webermarci/base62\t21.386s\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwebermarci%2Fbase62","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwebermarci%2Fbase62","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwebermarci%2Fbase62/lists"}