{"id":15788317,"url":"https://github.com/joellefkowitz/roman","last_synced_at":"2026-03-18T16:42:48.947Z","repository":{"id":50216349,"uuid":"371983277","full_name":"JoelLefkowitz/roman","owner":"JoelLefkowitz","description":"Convert between Roman numerals and base 10.","archived":false,"fork":false,"pushed_at":"2025-11-20T18:30:54.000Z","size":423,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-11-20T20:04:12.464Z","etag":null,"topics":["convert","numerals","roman"],"latest_commit_sha":null,"homepage":null,"language":"PureScript","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/JoelLefkowitz.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":"CODE_OF_CONDUCT.md","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":"2021-05-29T13:42:40.000Z","updated_at":"2025-11-20T18:30:59.000Z","dependencies_parsed_at":"2024-05-28T01:51:12.128Z","dependency_job_id":"0592023c-0f86-452c-b4fc-1125f87ccb4f","html_url":"https://github.com/JoelLefkowitz/roman","commit_stats":null,"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/JoelLefkowitz/roman","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JoelLefkowitz%2Froman","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JoelLefkowitz%2Froman/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JoelLefkowitz%2Froman/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JoelLefkowitz%2Froman/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JoelLefkowitz","download_url":"https://codeload.github.com/JoelLefkowitz/roman/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JoelLefkowitz%2Froman/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28336316,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-12T06:09:07.588Z","status":"ssl_error","status_checked_at":"2026-01-12T06:05:18.301Z","response_time":98,"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":["convert","numerals","roman"],"created_at":"2024-10-04T21:41:48.768Z","updated_at":"2026-01-12T06:22:53.607Z","avatar_url":"https://github.com/JoelLefkowitz.png","language":"PureScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Roman\n\nConvert between Roman numerals and base 10.\n\n![Review](https://img.shields.io/github/actions/workflow/status/JoelLefkowitz/roman/review.yaml)\n![Version](https://pursuit.purescript.org/packages/purescript-roman/badge)\n![Quality](https://img.shields.io/codacy/grade/ec61f81349714facb1a2d53d317c77d6)\n\n## Installing\n\n```bash\nspago install roman\n```\n\n## Documentation\n\nDocumentation and more detailed examples are hosted on [Pursuit](https://pursuit.purescript.org/packages/purescript-roman).\n\n## Usage\n\n\u003c!-- spellchecker: disable --\u003e\n\n```purs\nimport Data.Roman.Convert (toRoman, fromRoman)\n\n\u003e toRoman 145\n\"CXLV\"\n\n\u003e fromRoman \"CXLV\"\n145\n```\n\n\u003c!-- spellchecker: enable --\u003e\n\n```purs\nimport Data.Map (fromFoldable)\nimport Data.Tuple (Tuple(..))\nimport Data.Roman.Symbols (symbolsTable)\n\n\u003e symbolsTable\nSymbolsTable\n    ( fromFoldable\n        [ Tuple \"I\"  1\n        , Tuple \"IV\" 4\n        , Tuple \"V\"  5\n        , Tuple \"IX\" 9\n        , Tuple \"X\"  10\n        , Tuple \"XL\" 40\n        , Tuple \"L\" 50\n        , Tuple \"XC\" 90\n        , Tuple \"C\" 100\n        , Tuple \"CD\" 400\n        , Tuple \"D\" 500\n        , Tuple \"CM\" 900\n        , Tuple \"M\" 1000\n        ]\n    )\n```\n\n```purs\nimport Data.Roman.Generate (generateSymbolsTable)\n\n\u003e generateSymbolsTable [\"I\", \"V\", \"X\", \"L\", \"C\", \"D\", \"M\", \"V*\", \"X*\"]\nSymbolsTable\n    ( fromFoldable\n        [ Tuple \"I\" 1\n        , Tuple \"IV\" 4\n        , Tuple \"V\" 5\n        , Tuple \"IX\" 9\n        , Tuple \"X\" 10\n        , Tuple \"XL\" 40\n        , Tuple \"L\" 50\n        , Tuple \"XC\" 90\n        , Tuple \"C\" 100\n        , Tuple \"CD\" 400\n        , Tuple \"D\" 500\n        , Tuple \"CM\" 900\n        , Tuple \"M\" 1000\n        , Tuple \"MV*\" 4000\n        , Tuple \"V*\" 5000\n        , Tuple \"MX*\" 9000\n        , Tuple \"X*\" 10000\n        ]\n    )\n```\n\n## Tooling\n\n### Dependencies\n\nTo install dependencies:\n\n```bash\nyarn install\nyarn spago install\n```\n\n### Tests\n\nTo run tests:\n\n```bash\nyarn spago test\n```\n\n### Documentation\n\nTo generate the documentation locally:\n\n```bash\nyarn spago docs\n```\n\n### Linters\n\nTo run linters:\n\n```bash\nyarn lint\n```\n\n### Formatters\n\nTo run formatters:\n\n```bash\nyarn format\n```\n\n## Contributing\n\nPlease read this repository's [Code of Conduct](CODE_OF_CONDUCT.md) which outlines our collaboration standards and the [Changelog](CHANGELOG.md) for details on breaking changes that have been made.\n\nThis repository adheres to semantic versioning standards. For more information on semantic versioning visit [SemVer](https://semver.org).\n\nBump2version is used to version and tag changes. For example:\n\n```bash\nbump2version patch\n```\n\n### Contributors\n\n- [Joel Lefkowitz](https://github.com/joellefkowitz) - Initial work\n\n## Remarks\n\nLots of love to the open source community!\n\n\u003cdiv align='center'\u003e\n    \u003cimg width=200 height=200 src='https://media.giphy.com/media/osAcIGTSyeovPq6Xph/giphy.gif' alt='Be kind to your mind' /\u003e\n    \u003cimg width=200 height=200 src='https://media.giphy.com/media/KEAAbQ5clGWJwuJuZB/giphy.gif' alt='Love each other' /\u003e\n    \u003cimg width=200 height=200 src='https://media.giphy.com/media/WRWykrFkxJA6JJuTvc/giphy.gif' alt=\"It's ok to have a bad day\" /\u003e\n\u003c/div\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoellefkowitz%2Froman","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjoellefkowitz%2Froman","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoellefkowitz%2Froman/lists"}