{"id":13782881,"url":"https://github.com/mig-hub/yabi","last_synced_at":"2026-03-12T01:50:39.299Z","repository":{"id":1861994,"uuid":"2787091","full_name":"mig-hub/yabi","owner":"mig-hub","description":"Yet Another Brainfuck Interpreter","archived":false,"fork":false,"pushed_at":"2013-12-09T12:02:49.000Z","size":104,"stargazers_count":3,"open_issues_count":0,"forks_count":2,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-11-17T18:32:31.934Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"tyrantgit/ExplosionField","license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mig-hub.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}},"created_at":"2011-11-16T10:33:40.000Z","updated_at":"2022-05-11T02:53:18.000Z","dependencies_parsed_at":"2022-08-20T09:50:06.851Z","dependency_job_id":null,"html_url":"https://github.com/mig-hub/yabi","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/mig-hub%2Fyabi","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mig-hub%2Fyabi/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mig-hub%2Fyabi/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mig-hub%2Fyabi/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mig-hub","download_url":"https://codeload.github.com/mig-hub/yabi/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253596003,"owners_count":21933492,"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-08-03T18:01:47.060Z","updated_at":"2025-05-11T16:33:20.499Z","avatar_url":"https://github.com/mig-hub.png","language":"C","funding_links":[],"categories":["C"],"sub_categories":[],"readme":"YABI\n====\n\nYet Another Brainfuck Interpreter (Wow that is fucking original man !!!)\n\nFirst of all, I need to warn you.\nThis interpreter is not yet finished.\nIt currently cannot run any code with nested square brackets.\n\nIntall it with GCC or another C compiler (yeah it exists):\n\n    gcc -o yabi yabi.c\n\nAnd then you can use the interpreter with STDIN:\n\n    ./yabi\n\nOr give it a file:\n\n    ./yabi test.bf\n\nYou can also use it with a shebang but make sure your shebang line does not contain any commands listed below because they will be interpreted.\nYou'll most likely have only dots `.` which are armless at this stage but be careful. There is an example called test_shebang.\n\nOne last thing, there is now a another version that takes advantage of the GCC feature \"label as value\", so if you compile with GCC\nuse this one instead which is approximately 4 times faster. Even if to be honest, we never code something in brainfuck that takes so\nmuch time that you could notice the difference `;-)`\n\n    gcc -o yabi yabi-gcc.c\n\nBRAINFUCK\n=========\n\nBrainfuck is a very simple language (maybe the simplest).\nImagine you have just a long array of boxes in which you can put numbers (eventually printed as chars).\nThen you start on the first box and here are the 8 commands that the interpreter understands:\n\n- + Increment the number in the current box\n- - Decrement the number in the current box\n- \u003e Move the pointer to the next box\n- \u003c Move the pointer to the previous box\n- , Read STDIN for one character and put it in the current box\n- . Print the character of the current box\n- [ All code until the matching square bracket is skiped if current box is 0\n- ] Loop back to the matching square bracket if current box is NOT 0\n\nAny other character is ignored.\n\nIf you wanna learn more about Brainfuck, [go here](http://en.wikipedia.org/wiki/Brainfuck)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmig-hub%2Fyabi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmig-hub%2Fyabi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmig-hub%2Fyabi/lists"}