{"id":20306014,"url":"https://github.com/olyutorskii/jarabradix","last_synced_at":"2026-06-03T22:30:58.667Z","repository":{"id":51385556,"uuid":"88846356","full_name":"olyutorskii/JarabraDix","owner":"olyutorskii","description":"JarabraDix is a integer value to Arabic decimal sequence converter Java library.","archived":false,"fork":false,"pushed_at":"2026-03-02T12:09:56.000Z","size":271,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"develop","last_synced_at":"2026-03-02T16:09:14.057Z","etag":null,"topics":["base-conversion","bcd","conversion","decimal","digits","gc-friendry","java","java-library","number","radix"],"latest_commit_sha":null,"homepage":"","language":"Java","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/olyutorskii.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.txt","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":"2017-04-20T09:27:28.000Z","updated_at":"2026-03-02T12:08:10.000Z","dependencies_parsed_at":"2025-10-25T09:04:06.551Z","dependency_job_id":"471ebbad-c1c9-46ba-a4a0-3a6fcc23d997","html_url":"https://github.com/olyutorskii/JarabraDix","commit_stats":null,"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/olyutorskii/JarabraDix","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/olyutorskii%2FJarabraDix","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/olyutorskii%2FJarabraDix/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/olyutorskii%2FJarabraDix/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/olyutorskii%2FJarabraDix/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/olyutorskii","download_url":"https://codeload.github.com/olyutorskii/JarabraDix/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/olyutorskii%2FJarabraDix/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33883102,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-03T02:00:06.370Z","response_time":59,"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":["base-conversion","bcd","conversion","decimal","digits","gc-friendry","java","java-library","number","radix"],"created_at":"2024-11-14T17:11:20.184Z","updated_at":"2026-06-03T22:30:58.645Z","avatar_url":"https://github.com/olyutorskii.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# JarabraDix #\n\n![Java CI with Maven](https://github.com/olyutorskii/JarabraDix/workflows/Java%20CI%20with%20Maven/badge.svg)\n![CodeQL](https://github.com/olyutorskii/JarabraDix/workflows/CodeQL/badge.svg)\n\n-----------------------------------------------------------------------\n\n## What is JarabraDix ? ##\n\n* **JarabraDix** is a Java library\nthat supports **binary integer value to decimal sequence conversion**.\n\n* Yes, it will substitute implementations such as\n`Integer.toString(int)`, `System.out(=PrintStream).println(int)` and so on.\n\n* **JarabraDix** was forked from [**DoubDabC**][DDC].\nWe decided to separate GC-friendry-API idea\nfrom DoubDabC implementation.\n\n\n## JarabraDix implementation ##\n\n* There is no String constructor during conversion.\nThat means, **GC-friendry !**\n\n\n## Supported Input ##\n\n* JarabraDix supports int \u0026 long primitive value input.\n\n\n## Supported Output ##\n\n* You can get decimal number sequence result by `char[]` array.\n\n* You can assign\n`Appendable`, `Writer`, `StringBuffer`, `StringBuilder`, or `CharBuffer`\nas Arabic numeral characters\\(0-9\\) sequence output.\n\n* `CharSequence` wrapper class is provided.\n\n* Extended `Writer` class is provided\nwhich supports `print(int)` \u0026 `print(long)` methods\nlike `PrintWriter`.\n\n\n## What is the difference with [**DoubDabC**][DDC] ? ##\n\n* If you use huge binary integer value that does not fit in long,\nuse **DoubDabC**.\n\n* If you have an extremely slow JVM(and CPU) for integer division,\nlet's try **DoubDabC**.\n\n\n## How to build ##\n\n* JarabraDix needs to use [Maven 3.3.9+](https://maven.apache.org/)\nand JDK 1.8+ to be built.\n\n* JarabraDix runtime does not depend on any other library at all.\nJust compile Java sources under `src/main/java/` if you don't use Maven.\n\n\n## License ##\n\n* Code is under [The MIT License][MIT].\n\n\n## Project founder ##\n\n* By [olyutorskii](https://github.com/olyutorskii) at 2017\n\n\n[DDC]: https://github.com/olyutorskii/DoubDabC\n[MIT]: https://opensource.org/licenses/MIT\n\n\n--- EOF ---\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Folyutorskii%2Fjarabradix","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Folyutorskii%2Fjarabradix","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Folyutorskii%2Fjarabradix/lists"}