{"id":15788299,"url":"https://github.com/joellefkowitz/boggle","last_synced_at":"2026-02-17T10:37:37.945Z","repository":{"id":119869014,"uuid":"398637619","full_name":"JoelLefkowitz/boggle","owner":"JoelLefkowitz","description":"Boggle solver.","archived":false,"fork":false,"pushed_at":"2024-06-27T18:56:03.000Z","size":602,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-09T16:44:05.687Z","etag":null,"topics":["boggle","permutations","solver"],"latest_commit_sha":null,"homepage":"","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-08-21T19:09:15.000Z","updated_at":"2024-06-27T18:56:07.000Z","dependencies_parsed_at":"2024-05-06T18:00:27.028Z","dependency_job_id":"7e9ab4a6-63f6-4e4b-8c4a-c496c827b8c5","html_url":"https://github.com/JoelLefkowitz/boggle","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/JoelLefkowitz/boggle","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JoelLefkowitz%2Fboggle","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JoelLefkowitz%2Fboggle/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JoelLefkowitz%2Fboggle/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JoelLefkowitz%2Fboggle/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JoelLefkowitz","download_url":"https://codeload.github.com/JoelLefkowitz/boggle/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JoelLefkowitz%2Fboggle/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29540208,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-17T08:11:05.436Z","status":"ssl_error","status_checked_at":"2026-02-17T08:09:38.860Z","response_time":100,"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":["boggle","permutations","solver"],"created_at":"2024-10-04T21:41:44.250Z","updated_at":"2026-02-17T10:37:37.932Z","avatar_url":"https://github.com/JoelLefkowitz.png","language":"PureScript","readme":"# Boggle\n\nBoggle solver.\n\n![Review](https://img.shields.io/github/actions/workflow/status/JoelLefkowitz/boggle/review.yaml)\n![Version](https://pursuit.purescript.org/packages/purescript-boggle/badge)\n![Quality](https://img.shields.io/codacy/grade/ec080f55abf241a5bc4921f349bf6264)\n\n## Installing\n\n```bash\nspago install boggle\n```\n\n## Usage\n\n```purs\nimport Data.Matrix (Matrix(..))\nimport Data.Word (boggle)\n\nboggle (Matrix [ [ \"a\", \"b\" ], [ \"c\", \"d\" ] ]) 4\n\n\u003e\u003e\u003e [\n  { path: [ { x: 0, y: 1 }, { x: 0, y: 0 }, { x: 1, y: 0 } ], word: \"cab\" },\n  { path: [ { x: 0, y: 1 }, { x: 0, y: 0 }, { x: 1, y: 1 } ], word: \"cad\" },\n  { path: [ { x: 1, y: 0 }, { x: 0, y: 0 }, { x: 1, y: 1 } ], word: \"bad\" },\n  { path: [ { x: 1, y: 1 }, { x: 0, y: 0 }, { x: 1, y: 0 } ], word: \"dab\" },\n]\n```\n\n## Documentation\n\nDocumentation and more detailed examples are hosted on [Pursuit](https://pursuit.purescript.org/packages/purescript-boggle).\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","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoellefkowitz%2Fboggle","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjoellefkowitz%2Fboggle","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoellefkowitz%2Fboggle/lists"}