{"id":19563214,"url":"https://github.com/magayaga/binpl","last_synced_at":"2026-06-17T07:32:43.132Z","repository":{"id":244653822,"uuid":"763046709","full_name":"Magayaga/BINPL","owner":"Magayaga","description":"The BINPL low-level programming language","archived":false,"fork":false,"pushed_at":"2024-07-23T10:10:48.000Z","size":117,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-21T07:03:00.266Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Magayaga.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-02-25T12:22:04.000Z","updated_at":"2024-07-23T10:10:51.000Z","dependencies_parsed_at":"2024-06-16T12:59:59.251Z","dependency_job_id":"97926ef4-43cf-4abc-9b0d-6521632fe8db","html_url":"https://github.com/Magayaga/BINPL","commit_stats":null,"previous_names":["magayaga/binpl"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Magayaga/BINPL","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Magayaga%2FBINPL","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Magayaga%2FBINPL/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Magayaga%2FBINPL/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Magayaga%2FBINPL/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Magayaga","download_url":"https://codeload.github.com/Magayaga/BINPL/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Magayaga%2FBINPL/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34439296,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-17T02:00:05.408Z","response_time":127,"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":"2024-11-11T05:16:57.329Z","updated_at":"2026-06-17T07:32:43.108Z","avatar_url":"https://github.com/Magayaga.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://github.com/Magayaga/CyNeo\"\u003e\n    \u003cimg src=\"assets/logo.svg\" width=\"200\" height=\"200\"\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n\u003ch1 align=\"center\"\u003eBINPL\u003c/h1\u003e\n\nBINPL (also known as **Binary-like Programming Language**) is an interpreted low-level programming language that binary codes to execute machine code programs, decimal number systems, or hexadecimal number systems. It is the program that reads binary data from a file and interprets it based on the specified mode (decimal, hexadecimal, or ASCII character).\n\nIt was written in **C**, **C++**, **C#**, **Rust**, **Go**, **JavaScript**, **Julia**, **Lua**, **Ruby**, **TypeScript**, and **Python** programming languages. It was created and developed on February 25, 2024, by Cyril John Magayaga, who is best known for the [Hyzero](https://github.com/magayaga/hyzero) and [Xenly](https://github.com/magayaga/xenly) programming languages.\n\nBINPL is available on February 25, 2024 for the **Windows** operating system. Adding **Linux** and **macOS** operating systems.\n\n## Getting start\n\nIf you do want to try out BINPL locally, you'll need to install our build dependencies (Clang, rust, git) and check out the BINPL repository, for example on Windows:\n\n```bash\n# Download BINPL's code\n$ git clone https://github.com/magayaga/BINPL.git\n$ cd BINPL\n```\n\nThen you can build and run:\n\n### Compilers\n\n**C**, **C++**, and **Rust**\n```bash\n# Build and run (Choose the clang or rust)\n$ clang src/binpl.c -o binpl\n$ clang src/binpl.cpp -o binpl\n$ rustc src/binpl.rs\n\n# Open\n./binpl examples/main.binpl\n```\n\n**C#** with Dotnet\n```bash\n# Build and run\n$ cd src/csharp/binpl\n$ dotnet build\n```\n\n**Java**\n```bash\n# Build and run\n$ cd src\n$ javac -source 8 -target 8 binpl.java\n$ java binpl\n```\n\n**Go**\n```bash\n# Build and run\n$ go run src/binpl.go\n$ go build src/binpl.go\n```\n\n### Interpreters\n\n**JavaScript** and **TypeScript**\n```bash\n# Run node (JavaScript)\n$ node src/binpl.js\n\n# Run deno or bun (TypeScript)\n$ deno run src/deno/binpl.ts\n$ bun run src/bun/binpl.ts\n```\n\n**Python**\n```bash\n# Run (Python)\n$ python src/binpl.py\n```\n\n**Lua**\n```bash\n# Run (Lua)\n$ lua src/binpl.lua\n```\n\n**Julia**\n```bash\n# Run (Julia)\n$ julia src/binpl.jl\n```\n\n**Ruby**\n```bash\n# Run (Ruby)\n$ ruby src/binpl.rb\n```\n\n## Copyright\n\nCopyright (c) 2024 Cyril John Magayaga. All rights reserved.\n\nLicensed under the [Apache-2.0](LICENSE) license\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmagayaga%2Fbinpl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmagayaga%2Fbinpl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmagayaga%2Fbinpl/lists"}