{"id":17321838,"url":"https://github.com/earthboundkid/decoder-ring","last_synced_at":"2025-04-14T16:07:38.445Z","repository":{"id":57528830,"uuid":"125077358","full_name":"earthboundkid/decoder-ring","owner":"earthboundkid","description":"CLI tool for decoding/encoding from common formats","archived":false,"fork":false,"pushed_at":"2021-05-17T14:24:44.000Z","size":15,"stargazers_count":16,"open_issues_count":1,"forks_count":1,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-02-06T17:22:02.366Z","etag":null,"topics":["command-line-tool","encoder-decoder","go","golang"],"latest_commit_sha":null,"homepage":"","language":"Go","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/earthboundkid.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"github":"carlmjohnson"}},"created_at":"2018-03-13T15:56:55.000Z","updated_at":"2024-09-16T19:32:18.000Z","dependencies_parsed_at":"2022-09-10T20:31:22.497Z","dependency_job_id":null,"html_url":"https://github.com/earthboundkid/decoder-ring","commit_stats":null,"previous_names":["earthboundkid/decoder-ring","carlmjohnson/decoder-ring"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/earthboundkid%2Fdecoder-ring","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/earthboundkid%2Fdecoder-ring/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/earthboundkid%2Fdecoder-ring/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/earthboundkid%2Fdecoder-ring/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/earthboundkid","download_url":"https://codeload.github.com/earthboundkid/decoder-ring/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240226377,"owners_count":19768068,"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":["command-line-tool","encoder-decoder","go","golang"],"created_at":"2024-10-15T13:39:55.461Z","updated_at":"2025-02-25T17:30:49.318Z","avatar_url":"https://github.com/earthboundkid.png","language":"Go","readme":"# decoder-ring [![GoDoc](https://godoc.org/github.com/carlmjohnson/decoder-ring?status.svg)](https://godoc.org/github.com/carlmjohnson/decoder-ring) [![Go Report Card](https://goreportcard.com/badge/github.com/carlmjohnson/decoder-ring)](https://goreportcard.com/report/github.com/carlmjohnson/decoder-ring)\n\nDecoder-ring is a CLI tool for decoding/encoding from common formats.\n\n## Installation\n\nFirst install [Go](http://golang.org).\n\nIf you just want to install the binary to your current directory and don't care about the source code, run\n\n```bash\nGOBIN=\"$(pwd)\" go install github.com/carlmjohnson/decoder-ring@latest\n```\n\n\n## Screenshots\n```bash\n$ decoder-ring -h\nUsage of decoder-ring v0.21.1:\n\n    decoder-ring [-encode] \u003cMODE\u003e\n\nMODE choices are base32, base32-crockford, base32-hex, base64, base64-url,\ncodepoint*, go, hex, hex-extended*, html, json, qp, rot13, url-path, url-query,\nor an IANA encoding name. Modes marked with * are encode only.\n\nAs a convenience feature, when this executable is symlinked as 'encoder-ring', -e defaults to true.\n\n  -e    shortcut for -encode\n  -emit\n        emit trailing newline (UTF-8) (default true)\n  -encode\n        encode rather than decode\n  -s    shortcut for -strip (default true)\n  -strip\n        strip trailing newlines from input (default true)\n  -t    shortcut for -emit (default true)\n\n\n$ echo 'Hello, World!' | decoder-ring -e base64\nSGVsbG8sIFdvcmxkIQ==\n\n$ echo SGVsbG8sIFdvcmxkIQ== | decoder-ring base64\nHello, World!\n\n$ echo 'Hello, World!' | decoder-ring rot13\nUryyb, Jbeyq!\n\n$ echo 'Hello, World!' | decoder-ring -e ebcdic-cp-us | decoder-ring -e hex-extended\n00000000  c8 85 93 93 96 6b 40 e6  96 99 93 84 5a           |.....k@.....Z|\n\n$ echo 'Hello, こんにちはワールド!' | decoder-ring -e codepoint\nU+0048  H       LATIN CAPITAL LETTER H\nU+0065  e       LATIN SMALL LETTER E\nU+006C  l       LATIN SMALL LETTER L\nU+006C  l       LATIN SMALL LETTER L\nU+006F  o       LATIN SMALL LETTER O\nU+002C  ,       COMMA\nU+0020          SPACE\nU+3053  こ      HIRAGANA LETTER KO\nU+3093  ん      HIRAGANA LETTER N\nU+306B  に      HIRAGANA LETTER NI\nU+3061  ち      HIRAGANA LETTER TI\nU+306F  は      HIRAGANA LETTER HA\nU+30EF  ワ      KATAKANA LETTER WA\nU+30FC  ー      KATAKANA-HIRAGANA PROLONGED SOUND MARK\nU+30EB  ル      KATAKANA LETTER RU\nU+30C9  ド      KATAKANA LETTER DO\nU+0021  !       EXCLAMATION MARK\n```\n\n## Endorsements\n\n\u003e Useful\n\n— [barryzxb](https://www.reddit.com/r/golang/comments/86ewvx/decoderring_a_cli_tool_for_decodingencoding_from/dw4vmdy/)\n","funding_links":["https://github.com/sponsors/carlmjohnson"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fearthboundkid%2Fdecoder-ring","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fearthboundkid%2Fdecoder-ring","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fearthboundkid%2Fdecoder-ring/lists"}