{"id":50798723,"url":"https://github.com/lordbuffcloud/ascii-collection","last_synced_at":"2026-06-12T17:05:33.880Z","repository":{"id":351587678,"uuid":"1211558453","full_name":"lordbuffcloud/ascii-collection","owner":"lordbuffcloud","description":null,"archived":false,"fork":false,"pushed_at":"2026-04-15T16:22:56.000Z","size":80,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-15T17:34:07.888Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"cc0-1.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lordbuffcloud.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","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":"2026-04-15T14:08:33.000Z","updated_at":"2026-04-15T16:22:59.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/lordbuffcloud/ascii-collection","commit_stats":null,"previous_names":["lordbuffcloud/ascii-collection"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/lordbuffcloud/ascii-collection","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lordbuffcloud%2Fascii-collection","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lordbuffcloud%2Fascii-collection/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lordbuffcloud%2Fascii-collection/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lordbuffcloud%2Fascii-collection/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lordbuffcloud","download_url":"https://codeload.github.com/lordbuffcloud/ascii-collection/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lordbuffcloud%2Fascii-collection/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34253954,"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-12T02:00:06.859Z","response_time":109,"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":[],"created_at":"2026-06-12T17:05:32.988Z","updated_at":"2026-06-12T17:05:33.872Z","avatar_url":"https://github.com/lordbuffcloud.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"```\n                 _ _             _ _           _   _\n   __ _ ___  ___(_|_)   ___ ___ | | | ___  ___| |_(_) ___  _ __\n  / _` / __|/ __| | |  / __/ _ \\| | |/ _ \\/ __| __| |/ _ \\| '_ \\\n | (_| \\__ \\ (__| | | | (_| (_) | | |  __/ (__| |_| | (_) | | | |\n  \\__,_|___/\\___|_|_|  \\___\\___/|_|_|\\___|\\___|\\__|_|\\___/|_| |_|\n```\n\n# ASCII Collection\n\nA curated library of one-line ASCII art, kaomoji, figlet banners, and box/border glyphs. Built for quick lookup, copy-paste, and terminal art.\n\n**Scope note:** this collection deliberately focuses on what renders reliably across machines. That means single-line art (kaomoji, emoticons, weapon glyphs, table flips), figlet output generated from canonical fonts, and Unicode box drawing. It does **not** include freehand multi-line scenes (cats, ships, castles, etc.) because reproducing those accurately from memory is unreliable, and the alternative (scraping copyrighted artist work) is something this repo does not do. If you want a multi-line cat, generate it with `figlet`, `cowsay`, or `boxes`, or browse a curated archive that has explicit permissions in place.\n\n## Structure\n\n| Folder | Contents |\n|---|---|\n| [13-banners-figlet](13-banners-figlet/) | 20 figlet fonts × 20 sample words, generated with pyfiglet 1.0.4 |\n| [14-borders](14-borders/) | ASCII and Unicode boxes, frames, dividers |\n| [15-text-faces](15-text-faces/) | happy, sad, angry, love, kaomoji |\n| [16-misc](16-misc/) | hearts, arrows, flags, symbols (single-line only) |\n| [17-oneliners](17-oneliners/) | 1000+ single-line ASCII art and kaomoji across 60+ themed sections |\n\n## Usage\n\nEvery file is plain UTF-8 text. Grab a piece with:\n\n```bash\ncat 17-oneliners/oneliners.txt\n```\n\nPipe a chunk to your clipboard:\n\n```bash\nsed -n '15,30p' 13-banners-figlet/slant.txt | clip     # Windows\nsed -n '15,30p' 13-banners-figlet/slant.txt | pbcopy   # macOS\nsed -n '15,30p' 13-banners-figlet/slant.txt | xclip    # Linux\n```\n\nPair the one-liners with [espanso](https://espanso.org/) text expansion to wire them up to triggers like `:lenny` and `:flip`.\n\n## Generate your own banners\n\n```bash\npip install pyfiglet\npython -c \"import pyfiglet; print(pyfiglet.figlet_format('hello', font='slant'))\"\n```\n\npyfiglet ships with 500+ fonts. List them with `python -c \"import pyfiglet; print('\\n'.join(pyfiglet.FigletFont.getFonts()))\"`.\n\n## Fonts and rendering\n\nASCII art only renders correctly in a **monospace font** (Cascadia Mono, Consolas, Menlo, Fira Code, JetBrains Mono, DejaVu Sans Mono). Many one-liners use Japanese / Cyrillic / extended Latin glyphs and need a font with broad Unicode coverage.\n\nGitHub renders `.txt` files in a monospace viewer when you click through, so everything here looks right in-browser.\n\n## Licensing\n\nSee [LICENSE](LICENSE) and [ATTRIBUTION.md](ATTRIBUTION.md). Originals are CC0. Figlet output is generated from public-domain font definitions. Kaomoji and emoticons are folklore commons that have circulated on Usenet, BBSes, and IRC for decades.\n\n## Contributing\n\nSee [CONTRIBUTING.md](CONTRIBUTING.md).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flordbuffcloud%2Fascii-collection","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flordbuffcloud%2Fascii-collection","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flordbuffcloud%2Fascii-collection/lists"}