{"id":13782577,"url":"https://github.com/id101010/bfckr","last_synced_at":"2025-05-11T15:32:39.055Z","repository":{"id":91179190,"uuid":"73135228","full_name":"id101010/bfckr","owner":"id101010","description":"A little brainfuck interpreter and debugger written in C.","archived":false,"fork":false,"pushed_at":"2021-09-27T11:29:51.000Z","size":980,"stargazers_count":3,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-11-17T17:43:28.691Z","etag":null,"topics":["bandtape","brainfuck","debugger","interpreter","memory-visualizer"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"wtfpl","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/id101010.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}},"created_at":"2016-11-08T01:00:14.000Z","updated_at":"2021-09-27T11:29:54.000Z","dependencies_parsed_at":"2023-05-19T11:15:42.842Z","dependency_job_id":null,"html_url":"https://github.com/id101010/bfckr","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/id101010%2Fbfckr","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/id101010%2Fbfckr/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/id101010%2Fbfckr/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/id101010%2Fbfckr/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/id101010","download_url":"https://codeload.github.com/id101010/bfckr/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253588785,"owners_count":21932324,"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":["bandtape","brainfuck","debugger","interpreter","memory-visualizer"],"created_at":"2024-08-03T18:01:39.465Z","updated_at":"2025-05-11T15:32:38.747Z","avatar_url":"https://github.com/id101010.png","language":"C","funding_links":[],"categories":["C"],"sub_categories":[],"readme":"# bfckr [![Build Status](https://travis-ci.org/id101010/bfckr.svg?branch=master)](https://travis-ci.org/id101010/bfckr)\nA simple to use brainfuck interpreter with built in debugger written in C.\n\n# How to run\n* Type \"make\"\n* Read [this](https://en.wikipedia.org/wiki/Brainf**k)\n* Create your own brainfuck software\n* let bfckr run your own .bf code\n\n# Usage\n~~~~\nUsage: ./bfckr [OPTION]\n-h        Show this help.\n-d        Enable debugger.\n-f        Execute brainfuck code given as file.\n-e        Execute brainfuck expression given as argument.\n~~~~\n\n## examples:\n\n**./bfckr -f examples/pi.bf**\n~~~~\n3.14070455282885\n~~~~\n\n**./bfckr -d -f examples/pi.bf**\n~~~~\n[ENTER]: single step [c]: continue\nSource viewer:                                            \n------------------------------------------------------------\n                              \u003e+++++++++++++++[\u003c+\u003e\u003e\u003e\u003e\u003e\u003e\u003e\u003e+++\n                              ^                             \n                              ip=0                         \n------------------------------------------------------------\n\nMemory viewer:                                            \n------------------------------------------------------------\n000 000 000 000 000 000 000 000 000 000 000 000 000 000 000 \n\n                              ^                             \n                              mp=1                         \n000 000 000 000 000 000 001 002 003 004 005 006 007 008 009 \n------------------------------------------------------------\n\nOutput viewer:                                              \n------------------------------------------------------------\n\n------------------------------------------------------------\n~~~~\n\n**./bfckr -e \"----[----\u003e+\u003c]\u003e++.\"**\n~~~~\nA\n~~~~\n\n**echo \"42=\" | ./bfckr -f examples/bintodec.bf**\n~~~\n42=101010\n~~~\n\n# Breakpoints\n\nA # in the brainfuck source will be interpreted as breakpoint. You can use them if you want to stop the program flow at a specific point and start the debugger from there. If you are in debugger mode pressing c will get you back to executing the program.\n\n**./bfckr -e \"----[#----\u003e+\u003c]\u003e++.\"**\n~~~~\n[ENTER]: single step [c]: continue\n\nSource viewer:                                            \n------------------------------------------------------------\n                         ----[#----\u003e+\u003c]\u003e++.\n                              ^                             \n                              ip=5                         \n------------------------------------------------------------\n\nMemory viewer:                                            \n------------------------------------------------------------\n000 000 000 000 000 000 000 -04 000 000 000 000 000 000 000 \n                              ^                             \n                              mp=0                         \n993 994 995 996 997 998 999 000 001 002 003 004 005 006 007 \n------------------------------------------------------------\n\nOutput viewer:                                              \n------------------------------------------------------------\n\n------------------------------------------------------------\n~~~~\n\n# Licence\n\n![WTFPL](http://www.wtfpl.net/wp-content/uploads/2012/12/logo-220x1601.png)\n\nCopyright © 2016 Aaron aaron@duckpond.ch\nThis work is free. You can redistribute it and/or modify it under the\nterms of the Do What The Fuck You Want To Public License, Version 2,\nas published by Sam Hocevar. See the COPYING file for more details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fid101010%2Fbfckr","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fid101010%2Fbfckr","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fid101010%2Fbfckr/lists"}