{"id":29890017,"url":"https://github.com/aoxetech/aoxe.identifier","last_synced_at":"2026-03-04T05:31:27.559Z","repository":{"id":206374338,"uuid":"716504339","full_name":"AoxeTech/Aoxe.Identifier","owner":"AoxeTech","description":null,"archived":false,"fork":false,"pushed_at":"2025-05-24T14:04:53.000Z","size":74,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-27T12:40:05.428Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C#","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/AoxeTech.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,"zenodo":null}},"created_at":"2023-11-09T09:27:30.000Z","updated_at":"2025-05-24T14:04:56.000Z","dependencies_parsed_at":"2024-01-05T14:30:34.123Z","dependency_job_id":"42a6d5f0-fc85-4d27-b683-78a33c25c673","html_url":"https://github.com/AoxeTech/Aoxe.Identifier","commit_stats":null,"previous_names":["picohex/zaabee.identifier","aoxetech/aoxe.identifier"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/AoxeTech/Aoxe.Identifier","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AoxeTech%2FAoxe.Identifier","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AoxeTech%2FAoxe.Identifier/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AoxeTech%2FAoxe.Identifier/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AoxeTech%2FAoxe.Identifier/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AoxeTech","download_url":"https://codeload.github.com/AoxeTech/Aoxe.Identifier/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AoxeTech%2FAoxe.Identifier/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30072496,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-04T05:13:31.218Z","status":"ssl_error","status_checked_at":"2026-03-04T05:10:24.293Z","response_time":59,"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-07-31T22:23:24.131Z","updated_at":"2026-03-04T05:31:27.526Z","avatar_url":"https://github.com/AoxeTech.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Aoxe.Identifier# Aoxe.Identifier\n\nA collection of .NET implementations for generating unique identifiers.\n\n## Overview\n\nThis solution contains implementations for various unique identifier algorithms:\n\n- **Aoxe.SequentialGuid**: Generates sequential GUIDs suitable for database indexing.\n- **Aoxe.Snowflake**: Implementation of the Snowflake algorithm for generating unique 64-bit integers.\n- **Aoxe.Ulid**: Generates ULIDs (Universally Unique Lexicographically Sortable Identifiers).\n- **Aoxe.UUIDv7**: Implementation of UUID version 7.\n\n## Project Structure\n\n- **Aoxe.Identifier.sln**: The main solution file.\n- **src**: Contains the source code for each identifier implementation.\n  - **Aoxe.SequentialGuid/**: Sequential GUID implementation.\n  - **Aoxe.Snowflake/**: Snowflake algorithm implementation.\n  - **Aoxe.Ulid/**: ULID implementation.\n  - **Aoxe.UUIDv7/**: UUIDv7 implementation.\n- **tests**: Contains test projects for each implementation.\n  - **Aoxe.SequentialGuid.TestProject/**: Tests for Sequential GUID.\n  - **Aoxe.Snowflake.TestProject/**: Tests for Snowflake.\n  - **Aoxe.UUIDv7.TestProject/**: Tests for UUIDv7.\n  - **Aoxe.Ulid.TestProject/**: Test project for ULID implementation.\n\n## Getting Started\n\n### Prerequisites\n\n- [.NET SDK](https://dotnet.microsoft.com/download) installed.\n\n### Building the Solution\n\nTo build the solution, run:\n\n```bash\ndotnet build Aoxe.Identifier.sln\n```\n\n### Running Tests\n\nTo run all unit tests, execute:\n\n```bash\ndotnet test Aoxe.Identifier.sln\n```\n\n## Usage\n\n### ULID Generation\n\nUse the `UlidGenerator` class in Aoxe.Ulid:\n\n```csharp\nvar ulid = UlidGenerator.NewUlid();\nConsole.WriteLine(ulid);\n```\n\n### Snowflake ID Generation\n\nUse the `SnowflakeGenerator` class in Aoxe.Snowflake:\n\n```csharp\nvar generator = new SnowflakeIdGenerator(1, 1);\nvar snowflakeId = generator.NextId();\nConsole.WriteLine(snowflakeId);\n```\n\n### Sequential GUID Generation\n\nUse the `SequentialGuidGenerator` class in Aoxe.SequentialGuid:\n\n```csharp\nvar sequentialGuid = SequentialGuidGenerator.NewGuid();\nConsole.WriteLine(sequentialGuid);\n```\n\n### UUIDv7 Generation\n\nUse the `Uuid7Generator` class in Aoxe.UUIDv7:\n\n```csharp\nvar uuid7 = Uuid7Generator.NewUuid7();\nConsole.WriteLine(uuid7);\n```\n\n## License\n\nThis project is licensed under the MIT License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faoxetech%2Faoxe.identifier","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faoxetech%2Faoxe.identifier","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faoxetech%2Faoxe.identifier/lists"}