{"id":32111837,"url":"https://github.com/aryaghan-mutum/algorhythms","last_synced_at":"2026-02-21T10:31:33.683Z","repository":{"id":319849957,"uuid":"1074979579","full_name":"aryaghan-mutum/algorhythms","owner":"aryaghan-mutum","description":"A curated collection of algorithm implementations.","archived":false,"fork":false,"pushed_at":"2025-12-24T13:54:49.000Z","size":566,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-12-25T05:12:25.984Z","etag":null,"topics":["algorithms","computer-science","cryptography","data-structures","functional-programming","graph-algorithms","lisp","mathematics","number-theory","racket","searching-algorithms","software-engineering","sorting-algorithms","tree-algorithms"],"latest_commit_sha":null,"homepage":"https://pkgs.racket-lang.org/package/algorhythms","language":"Racket","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/aryaghan-mutum.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-10-12T20:47:33.000Z","updated_at":"2025-12-24T13:54:51.000Z","dependencies_parsed_at":null,"dependency_job_id":"35577db3-9292-4159-aba9-e5c391d9f361","html_url":"https://github.com/aryaghan-mutum/algorhythms","commit_stats":null,"previous_names":["aryaghan-mutum/algorhythms"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/aryaghan-mutum/algorhythms","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aryaghan-mutum%2Falgorhythms","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aryaghan-mutum%2Falgorhythms/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aryaghan-mutum%2Falgorhythms/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aryaghan-mutum%2Falgorhythms/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aryaghan-mutum","download_url":"https://codeload.github.com/aryaghan-mutum/algorhythms/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aryaghan-mutum%2Falgorhythms/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29679049,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-21T09:33:50.764Z","status":"ssl_error","status_checked_at":"2026-02-21T09:33:19.949Z","response_time":107,"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":["algorithms","computer-science","cryptography","data-structures","functional-programming","graph-algorithms","lisp","mathematics","number-theory","racket","searching-algorithms","software-engineering","sorting-algorithms","tree-algorithms"],"created_at":"2025-10-20T14:49:22.646Z","updated_at":"2026-02-21T10:31:33.678Z","avatar_url":"https://github.com/aryaghan-mutum.png","language":"Racket","readme":"# Algorhythms\n\n[![CI](https://github.com/aryaghan-mutum/algorhythms/actions/workflows/ci.yml/badge.svg)](https://github.com/aryaghan-mutum/algorhythms/actions/workflows/ci.yml)\n[![Release](https://github.com/aryaghan-mutum/algorhythms/actions/workflows/release.yml/badge.svg)](https://github.com/aryaghan-mutum/algorhythms/actions/workflows/release.yml)\n[![codecov](https://codecov.io/gh/aryaghan-mutum/algorhythms/graph/badge.svg)](https://codecov.io/gh/aryaghan-mutum/algorhythms)\n[![License: BSD-3](https://img.shields.io/badge/License-BSD--3--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause)\n[![Racket](https://img.shields.io/badge/Racket-%3E%3D8.14-blue)](https://racket-lang.org)\n[![Version](https://img.shields.io/badge/version-0.3.0-green)](https://github.com/aryaghan-mutum/algorhythms/releases)\n\nA Racket library of algorithms and data structures.\n\n📦 **Package**: [Racket Package Catalog](https://pkgs.racket-lang.org/package/algorhythms)\n\n📖 **Source**: [GitHub Repository](https://github.com/aryaghan-mutum/algorhythms)\n\n🔧 **CI/CD**: [GitHub Actions](https://github.com/aryaghan-mutum/algorhythms/actions)\n\n📊 **Coverage**: [Codecov Report](https://codecov.io/gh/aryaghan-mutum/algorhythms)\n\n---\n\n## Installation\n\n### From Package Catalog\n```bash\nraco pkg install algorhythms\n```\n\n### From Source (Development)\n```bash\ngit clone https://github.com/aryaghan-mutum/algorhythms.git\ncd algorhythms\nraco pkg install --link .\n```\n\n---\n\n## Quick Start\n\n```racket\n#lang racket\n(require algorhythms)\n\n;; Use factorial\n(factorial 10)  ; =\u003e 3628800\n\n;; Morse code\n(encode-to-morse \"SOS\")  ; =\u003e \"... --- ...\"\n```\n\n---\n\n## Development Commands\n\n### Setup \u0026 Build\n```bash\n# Verify Racket installation\nracket --version\nraco --version\n\n# Build/compile the package\nraco setup --pkgs algorhythms\n\n# Clean compiled files\nraco setup --clean algorhythms\n```\n\n### Testing\n```bash\n# Run all tests\nraco test .\n\n# Run tests in specific directory\nraco test tests/\n\n# Run a specific test file\nraco test tests/encoding/morse-code-test.rkt\n\n# Run tests with verbose output\nraco test -v .\n```\n\n### Code Formatting\n```bash\n# Install formatter (one-time)\nraco pkg install fmt\n\n# Check formatting\nraco fmt --check .\n\n# Auto-format all files\nraco fmt -i .\n```\n\n### Package Management\n```bash\n# Show package info\nraco pkg show algorhythms\n\n# Update package\nraco pkg update algorhythms\n\n# Remove package\nraco pkg remove algorhythms\n\n# Reinstall from local directory\nraco pkg install --link .\n```\n\n### Documentation\n```bash\n# Build documentation\nraco setup --doc-index algorhythms\n\n# Open docs in browser\nraco docs algorhythms\n```\n\n---\n\n## License\n\nBSD-3-Clause\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faryaghan-mutum%2Falgorhythms","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faryaghan-mutum%2Falgorhythms","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faryaghan-mutum%2Falgorhythms/lists"}