{"id":31532866,"url":"https://github.com/hungdev/hexdump-2-command-4-kindle","last_synced_at":"2025-10-04T03:59:48.890Z","repository":{"id":281203224,"uuid":"944539796","full_name":"hungdev/hexdump-2-command-4-kindle","owner":"hungdev","description":null,"archived":false,"fork":false,"pushed_at":"2025-03-07T15:11:05.000Z","size":57,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-07T15:31:54.139Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://hexdump-2-command-4-kindle.vercel.app","language":"JavaScript","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/hungdev.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":"2025-03-07T14:25:35.000Z","updated_at":"2025-03-07T15:11:09.000Z","dependencies_parsed_at":"2025-03-07T15:42:39.633Z","dependency_job_id":null,"html_url":"https://github.com/hungdev/hexdump-2-command-4-kindle","commit_stats":null,"previous_names":["hungdev/hexdump-2-command-4-kindle"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/hungdev/hexdump-2-command-4-kindle","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hungdev%2Fhexdump-2-command-4-kindle","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hungdev%2Fhexdump-2-command-4-kindle/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hungdev%2Fhexdump-2-command-4-kindle/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hungdev%2Fhexdump-2-command-4-kindle/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hungdev","download_url":"https://codeload.github.com/hungdev/hexdump-2-command-4-kindle/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hungdev%2Fhexdump-2-command-4-kindle/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278262436,"owners_count":25957938,"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","status":"online","status_checked_at":"2025-10-04T02:00:05.491Z","response_time":63,"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":"2025-10-04T03:59:43.733Z","updated_at":"2025-10-04T03:59:48.883Z","avatar_url":"https://github.com/hungdev.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Hexdump to Command Converter for Kindle\n\nThis is a simple tool to convert hexdump output to a command that can be used to send to Kindle via SSH.\nit should be copied straight like example below:\n\nexample hexdump input:\n```sh\n00000000  3a 2b bf 67 d6 7e 07 00  01 00 68 00 01 00 00 00  |:+.g.~....h.....|\n00000010  3a 2b bf 67 d9 7e 07 00  00 00 00 00 00 00 00 00  |:+.g.~..........|\n00000020  3a 2b bf 67 eb 66 09 00  01 00 68 00 00 00 00 00  |:+.g.f....h.....|\n00000030  3a 2b bf 67 ed 66 09 00  00 00 00 00 00 00 00 00  |:+.g.f..........|\n```\n\noutput like this:\n```sh\nprintf \"\\x3a\\x2b\\xbf\\x67\\xd6\\x7e\\x07\\x00\\x01\\x00\\x68\\x00\\x01\\x00\\x00\\x00\" \u003e /dev/input/event2\nprintf \"\\x3a\\x2b\\xbf\\x67\\xd9\\x7e\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\" \u003e /dev/input/event2\nprintf \"\\x3a\\x2b\\xbf\\x67\\xeb\\x66\\x09\\x00\\x01\\x00\\x68\\x00\\x00\\x00\\x00\\x00\" \u003e /dev/input/event2\nprintf \"\\x3a\\x2b\\xbf\\x67\\xed\\x66\\x09\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\" \u003e /dev/input/event2\n```\n\nor\n```sh\necho -ne \"\\x3a\\x2b\\xbf\\x67\\xd6\\x7e\\x07\\x00\\x01\\x00\\x68\\x00\\x01\\x00\\x00\\x00\" | dd of=/dev/input/event2 bs=16\necho -ne \"\\x3a\\x2b\\xbf\\x67\\xd9\\x7e\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\" | dd of=/dev/input/event2 bs=16\necho -ne \"\\x3a\\x2b\\xbf\\x67\\xeb\\x66\\x09\\x00\\x01\\x00\\x68\\x00\\x00\\x00\\x00\\x00\" | dd of=/dev/input/event2 bs=16\necho -ne \"\\x3a\\x2b\\xbf\\x67\\xed\\x66\\x09\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\" | dd of=/dev/input/event2 bs=16\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhungdev%2Fhexdump-2-command-4-kindle","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhungdev%2Fhexdump-2-command-4-kindle","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhungdev%2Fhexdump-2-command-4-kindle/lists"}