{"id":17861152,"url":"https://github.com/jonathanstowe/util-uuencode","last_synced_at":"2025-06-24T13:32:48.802Z","repository":{"id":66980523,"uuid":"260738654","full_name":"jonathanstowe/Util-Uuencode","owner":"jonathanstowe","description":"uuencode/uudecode for Raku","archived":false,"fork":false,"pushed_at":"2022-08-07T08:45:03.000Z","size":25,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-03T12:51:25.361Z","etag":null,"topics":["raku","uudecode","uuencode"],"latest_commit_sha":null,"homepage":"","language":"Raku","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"artistic-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jonathanstowe.png","metadata":{"files":{"readme":"README.md","changelog":"Changes","contributing":null,"funding":null,"license":null,"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-02T17:26:08.000Z","updated_at":"2022-08-07T08:45:06.000Z","dependencies_parsed_at":"2023-05-16T10:00:51.768Z","dependency_job_id":null,"html_url":"https://github.com/jonathanstowe/Util-Uuencode","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/jonathanstowe/Util-Uuencode","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jonathanstowe%2FUtil-Uuencode","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jonathanstowe%2FUtil-Uuencode/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jonathanstowe%2FUtil-Uuencode/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jonathanstowe%2FUtil-Uuencode/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jonathanstowe","download_url":"https://codeload.github.com/jonathanstowe/Util-Uuencode/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jonathanstowe%2FUtil-Uuencode/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261685660,"owners_count":23194144,"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","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":["raku","uudecode","uuencode"],"created_at":"2024-10-28T08:43:05.023Z","updated_at":"2025-06-24T13:32:48.759Z","avatar_url":"https://github.com/jonathanstowe.png","language":"Raku","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Util::Uuencode\n\nuuencode/uudecode for Raku\n\n![Build Status](https://github.com/jonathanstowe/Util-Uuencode/workflows/CI/badge.svg)\n\n## Synopsis\n\n   use Util::Uuencode;\n\n   my $image = \"some-image.jpg\".IO.slurp(:bin);\n\n   my $encoded = uuencode($image);\n\n   # now $encoded can be sent or stored as text safely\n\n   $image = uudecode($encoded);\n\n   # now have the image back as binary\n\n## Description\n\n[uuencode](https://en.wikipedia.org/wiki/Uuencoding) is a binary to text encoding mechanism designed for sending binary files across computer boundaries where the transport mechanism may not be 8 bit clean, such as e-mail, usenet or uucp. It has largely been obsoleted by MIME (and Base64 encoding,) and the advent of ubiquitous 8 bit clean networking.\n\nThis module provides routines for uuencoding (`uuencode`) and decoding (`uudecode`) which will round trip data between binary and text encoded representations. `uuencode` will quite happily encode plain text but as the effect is to make it a third larger there isn't much point doing that ( I guess at a push it could be used to preserve some unicode encoding across some boundary that doesn't deal with that well.)\n\nThe  POSIX commands [uuencode and uudecode](https://pubs.opengroup.org/onlinepubs/9699919799/utilities/uuencode.html) expect some additional header and trailer information which this module doesn't deal with, so if you expect your data to be processed by these tools you will need to add this to your encoded output and remove it from the input for correct processing.\n\n## Installation\n\nAssuming you have a working Rakudo installation then this can be installed by `zef` :\n\n    zef install Util::Uuencode\n\n    # Or from a local clone\n\n    zef install .\n\nThere are no depenencies.\n\n## Support\n\nThis is one of those things that either works or it doesn't but if you have a problem or suggestions please report them on [Github](https://github.com/jonathanstowe/Util-Uuencode/issues).\n\n## Licence\n\nThis is free software.\n\nPlease see the [LICENCE](LICENCE) file in the distribution.\n\n© Jonathan Stowe 2020\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjonathanstowe%2Futil-uuencode","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjonathanstowe%2Futil-uuencode","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjonathanstowe%2Futil-uuencode/lists"}