{"id":17246575,"url":"https://github.com/andreid/rplplay","last_synced_at":"2025-03-26T05:25:18.877Z","repository":{"id":142369244,"uuid":"177015148","full_name":"AndreiD/rplplay","owner":"AndreiD","description":"playign with rpl","archived":false,"fork":false,"pushed_at":"2019-03-21T20:05:41.000Z","size":32,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-01-31T07:14:44.784Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AndreiD.png","metadata":{"files":{"readme":"README.md","changelog":null,"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":"2019-03-21T19:59:09.000Z","updated_at":"2019-03-21T20:05:43.000Z","dependencies_parsed_at":"2024-04-07T18:15:17.915Z","dependency_job_id":null,"html_url":"https://github.com/AndreiD/rplplay","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndreiD%2Frplplay","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndreiD%2Frplplay/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndreiD%2Frplplay/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndreiD%2Frplplay/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AndreiD","download_url":"https://codeload.github.com/AndreiD/rplplay/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245593858,"owners_count":20641151,"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":[],"created_at":"2024-10-15T06:34:29.483Z","updated_at":"2025-03-26T05:25:18.864Z","avatar_url":"https://github.com/AndreiD.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# RLP (Recursive Length Prefix) Playground\n\nRLP is like a binary encoding of JSON, if JSON were restricted only to strings and arrays.\n\nThe RLP encoding function takes in an item. An item is defined as follows：\n\n    A string (ie. byte array) is an item\n    A list of items is an item\n\nThe string \"dog\" = [ 0x83, 'd', 'o', 'g' ]\n\nThe list [ \"cat\", \"dog\" ] = [ 0xc8, 0x83, 'c', 'a', 't', 0x83, 'd', 'o', 'g' ]\n\nThe empty string ('null') = [ 0x80 ]\n\nThe empty list = [ 0xc0 ]\n\nThe integer 0 = [ 0x80 ]\n\nThe encoded integer 0 ('\\x00') = [ 0x00 ]\n\nThe encoded integer 15 ('\\x0f') = [ 0x0f ]\n\nThe encoded integer 1024 ('\\x04\\x00') = [ 0x82, 0x04, 0x00 ]\n\nThe set theoretical representation of three, [ [], [[]], [ [], [[]] ] ] = [ 0xc7, 0xc0, 0xc1, 0xc0, 0xc3, 0xc0, 0xc1, 0xc0 ]\n\nnothing to see here...yet\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandreid%2Frplplay","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandreid%2Frplplay","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandreid%2Frplplay/lists"}