{"id":24118402,"url":"https://github.com/fantasyui-com/rhy","last_synced_at":"2025-07-22T19:35:23.334Z","repository":{"id":45924399,"uuid":"264205805","full_name":"fantasyui-com/rhy","owner":"fantasyui-com","description":"Unix Command Line Utility For Finding Rhymes","archived":false,"fork":false,"pushed_at":"2025-06-19T19:16:15.000Z","size":90,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-19T19:35:47.785Z","etag":null,"topics":["poem","poems","poetry","rhyme","rhymes"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fantasyui-com.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}},"created_at":"2020-05-15T13:50:04.000Z","updated_at":"2025-06-19T19:16:18.000Z","dependencies_parsed_at":"2024-07-12T21:27:19.763Z","dependency_job_id":null,"html_url":"https://github.com/fantasyui-com/rhy","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/fantasyui-com/rhy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fantasyui-com%2Frhy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fantasyui-com%2Frhy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fantasyui-com%2Frhy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fantasyui-com%2Frhy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fantasyui-com","download_url":"https://codeload.github.com/fantasyui-com/rhy/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fantasyui-com%2Frhy/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266561493,"owners_count":23948632,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-22T02:00:09.085Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"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":["poem","poems","poetry","rhyme","rhymes"],"created_at":"2025-01-11T08:19:32.121Z","updated_at":"2025-07-22T19:35:23.311Z","avatar_url":"https://github.com/fantasyui-com.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# rhy\nUnix Command Line Utility For Finding Rhymes\n\n## Installation\n\n```sh\nnpm -g i rhy\n```\n\n## Usage\n\n```sh\nrhy pounce\n```\n\n- bounce\n- counce\n- crounse\n- flounce\n- mounce\n- ounce\n- trounce\n- younce\n\n\n\n## Show Only Popular Words\nadd **-p**/**--popular** flag\n\n```sh\nrhy -p cat\nrhy --poular cat\n```\n- that\n- at\n- chat\n- sat\n- fat\n- flat\n- hat\n- matt\n- vat\n- pat\n- lat\n- rat\n- mat\n- stat\n- bat\n- nat\n- dat\n\n## Show Only Top Ranked Words\n\nSearch for a rhyme among 1000 most popular words in English language.\n\nadd **-r 1000**/**--rank 1000** argument\n\n```sh\nrhy cat -r 1000\nrhy cat --rank 1000\n```\n\n\n- that\n- at\n- chat\n\nFinding rhymes for word **cat**\n\n```sh\nrhy cat\n```\n\n- that\n- at\n- chat\n- sat\n- fat\n- flat\n- hat\n- matt\n- vat\n- pat\n- lat\n- rat\n- mat\n- stat\n- bat\n- nat\n- dat\n- batt\n- batte\n- bhatt\n- blatt\n- brat\n- bratt\n- catt\n- flatt\n- gat\n- gatt\n- glatt\n- gnat\n- hatt\n- hnat\n- jagt\n- kat\n- katt\n- klatt\n- krat\n- kratt\n- matte\n- patt\n- platt\n- platte\n- pratt\n- pratte\n- ratte\n- scat\n- schadt\n- shatt\n- slaght\n- slat\n- spat\n- splat\n- spratt\n- tat\n\nFinding rhymes for word **kitten**\n\n```sh\nrhy kitten\n```\n- written\n- britain\n- bitten\n- bitton\n- briton\n- brittain\n- brittan\n- britten\n- britton\n- ditton\n- fitton\n- gettin'\n- gritton\n- litten\n- litton\n- lytton\n- mittan\n- mitten\n- mitton\n- ryton\n- sittin'\n- sitton\n- smitten\n- titone\n- whiton\n- whitten\n- whitton\n- witten\n- witton\n\n\n## Tips and Tricks\n\n### Only the top word: Use head -n 1\n\n```sh\nrhy kitten | head -n 1\n```\n\n```yaml\nwritten\n```\n\n### Only the top three words: Use head -n 3\n\n```sh\nrhy kitten | head -n 3\n```\n\n```yaml\nwritten\nbritain\nbitten\n```\n\n### Neat Formatting: Use the column command on unix\n\n```sh\nrhy kitten | column\n```\n\n```yaml\nwritten\t\tbitton\t\tbrittan\t\tditton\t\tgritton\t\tlytton\t\tmitton\t\tsitton\t\twhiton\t\twitten\nbritain\t\tbriton\t\tbritten\t\tfitton\t\tlitten\t\tmittan\t\tryton \t\tsmitten\t\twhitten\t\twitton\nbitten\t\tbrittain\tbritton\t\tgettin'\t\tlitton\t\tmitten\t\tsittin'\t\ttitone\t\twhitton\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffantasyui-com%2Frhy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffantasyui-com%2Frhy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffantasyui-com%2Frhy/lists"}