{"id":37214271,"url":"https://github.com/koki-develop/hebr","last_synced_at":"2026-01-15T00:47:43.930Z","repository":{"id":59045000,"uuid":"529724781","full_name":"koki-develop/hebr","owner":"koki-develop","description":"hebr is a command line tool or library for encoding/decoding data in Hebrew characters.","archived":true,"fork":false,"pushed_at":"2022-08-28T01:18:17.000Z","size":10,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-06-20T17:29:52.167Z","etag":null,"topics":[],"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/koki-develop.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}},"created_at":"2022-08-28T00:15:28.000Z","updated_at":"2023-05-01T11:50:20.000Z","dependencies_parsed_at":"2022-09-11T04:42:03.132Z","dependency_job_id":null,"html_url":"https://github.com/koki-develop/hebr","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/koki-develop/hebr","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/koki-develop%2Fhebr","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/koki-develop%2Fhebr/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/koki-develop%2Fhebr/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/koki-develop%2Fhebr/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/koki-develop","download_url":"https://codeload.github.com/koki-develop/hebr/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/koki-develop%2Fhebr/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28440396,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-15T00:34:46.850Z","status":"ssl_error","status_checked_at":"2026-01-15T00:34:46.551Z","response_time":107,"last_error":"SSL_read: 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":[],"created_at":"2026-01-15T00:47:43.419Z","updated_at":"2026-01-15T00:47:43.923Z","avatar_url":"https://github.com/koki-develop.png","language":"Go","readme":"[![go.mod](https://img.shields.io/github/go-mod/go-version/koki-develop/hebr)](./go.mod)\n[![release](https://img.shields.io/github/v/release/koki-develop/hebr)](https://github.com/koki-develop/hebr/releases/latest)\n[![GitHub Actions](https://github.com/koki-develop/hebr/actions/workflows/main.yml/badge.svg)](https://github.com/koki-develop/hebr/actions/workflows/main.yml)\n[![Maintainability](https://api.codeclimate.com/v1/badges/142e9cd2d5a120f2a6dc/maintainability)](https://codeclimate.com/github/koki-develop/hebr/maintainability)\n[![LICENSE](https://img.shields.io/github/license/koki-develop/hebr)](./LICENSE)\n[![Twitter Follow](https://img.shields.io/twitter/follow/koki_develop?style=social)](https://twitter.com/koki_develop)\n\n# hebr\n\n`hebr` is a command line tool or library for encoding/decoding data in Hebrew characters.\n\n## Contents\n\n- [CLI](#cli)\n    - [Installation](#installation)\n    - [Usage](#usage)\n        - [Encode](#encode)\n        - [Decode](#decode)\n- [Library](#library)\n    - [Installation](#installation-1)\n    - [Import](#import)\n    - [Usage](#usage-1)\n- [LICENSE](#license)\n\n## CLI\n\n### Installation\n\n```sh\n$ go install github.com/koki-develop/hebr/cmd/hebr@latest\n```\n\n### Usage\n\n#### Encode\n\nData to be encoded can be passed from stdin.\n\n```sh\n$ echo hello | hebr\nםבעצר,דןבט\n```\n\nIt is also possible to specify the target file to be encoded.\n\n```sh\n$ hebr ./hello.txt\nםבעצר,דןבט\n```\n\n#### Decode\n\nYou can decode data encoded in Hebrew characters by specifying the `-d` or `-decode` flag.  \nUsage is the same as Encode.\n\n```sh\n$ echo 'םבעצר,דןבט' | hebr -d\nhello\n```\n\n```sh\n$ hebr --decode ./hello.txt.hebr\nhello\n```\n\n## Library\n\n### Installation\n\n```\n$ go get github.com/koki-develop/hebr\n```\n\n### Import\n\n```go\nimport \"github.com/koki-develop/hebr\"\n```\n\n### Usage\n\n`hebr` package provides `Encode()` and `Decode()` functions.\n\n```go\npackage main\n\nimport (\n\t\"fmt\"\n\t\"log\"\n\n\t\"github.com/koki-develop/hebr\"\n)\n\nfunc main() {\n\tdata := []byte(\"data\")\n\n\t// encode data\n\tencoded, err := hebr.Encode(data)\n\tif err != nil {\n\t\tlog.Fatalln(err)\n\t}\n\tfmt.Println(string(encoded))\n\t// =\u003e לסנקטרט\n\n\t// decode data\n\tdecoded, err := hebr.Decode(encoded)\n\tif err != nil {\n\t\tlog.Fatalln(err)\n\t}\n\tfmt.Println(string(decoded))\n\t// =\u003e data\n}\n\n```\n\n## LICENSE\n\n[MIT](./LICENSE)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkoki-develop%2Fhebr","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkoki-develop%2Fhebr","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkoki-develop%2Fhebr/lists"}